.footer-gradient-text {
  background: linear-gradient(135deg, rgb(104, 145, 255) 0%, rgb(122, 255, 201) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-turnstile-shell .cf-turnstile,
.contact-turnstile-shell iframe {
  max-width: 100%;
}

[data-turnstile-widget] {
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: 70px;
  overflow: hidden;
}

.hero-gradient-text {
  background: linear-gradient(135deg, rgb(104, 145, 255) 0%, rgb(122, 255, 201) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-eyebrow-pill {
  max-width: 100%;
}

.hero-grid-lines {
  background-image:
    linear-gradient(rgba(104, 145, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 145, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
}

.hero-orbital {
  position: relative;
}

.orbital-ring {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(104, 145, 255, 0.08);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
}

.orbital-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(104, 145, 255);
  box-shadow: 0 0 12px rgba(104, 145, 255, 0.6);
}

.orbital-dot--1 {
  top: -3px;
  left: 50%;
  animation: orbitSpin 20s linear infinite;
  transform-origin: 0 calc(50% + 3px + 20px);
}

.orbital-dot--2 {
  bottom: -3px;
  left: 50%;
  background: rgb(122, 255, 201);
  box-shadow: 0 0 12px rgba(122, 255, 201, 0.6);
  animation: orbitSpin 20s linear infinite reverse;
  transform-origin: 0 calc(-50% - 3px - 20px);
}

.orbital-dot--3 {
  top: 50%;
  right: -3px;
  background: rgb(229, 192, 123);
  box-shadow: 0 0 12px rgba(229, 192, 123, 0.5);
  animation: orbitFloat 8s ease-in-out infinite;
}

.terminal-window {
  background: rgba(13, 16, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(104, 145, 255, 0.08),
    0 0 80px rgba(104, 145, 255, 0.06);
  backdrop-filter: blur(12px);
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  width: 100%;
  min-width: 0;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot--red { background: #ff5f57; }
.terminal-dot--yellow { background: #febc2e; }
.terminal-dot--green { background: #28c840; }

.terminal-tab {
  margin-left: 0.75rem;
  font-size: 0.7rem;
  color: rgba(149, 160, 181, 0.7);
  letter-spacing: 0.02em;
}

.terminal-body {
  padding: 1rem 0.5rem 1.25rem;
  min-height: 240px;
  position: relative;
}

.code-line {
  display: flex;
  gap: 1rem;
  padding: 0 0.75rem;
  white-space: pre;
  animation: lineReveal 0.3s var(--ease-premium) both;
}

.code-line--active {
  opacity: 1;
}

.line-number {
  color: rgba(149, 160, 181, 0.25);
  user-select: none;
  min-width: 1.5ch;
  text-align: right;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: rgb(104, 145, 255);
  margin-left: calc(1.5ch + 1rem + 0.75rem);
  animation: blink 1s step-end infinite;
  border-radius: 1px;
}

.terminal-window .kw { color: #c678dd; }
.terminal-window .fn { color: #61afef; }
.terminal-window .str { color: #98c379; }
.terminal-window .cm { color: rgba(149, 160, 181, 0.45); font-style: italic; }
.terminal-window .tp { color: #e5c07b; }
.terminal-window .op { color: rgba(245, 247, 251, 0.6); }
.terminal-window .pr { color: #56b6c2; }
.terminal-window .nb { color: #d19a66; }
.terminal-window .dc { color: #7affc9; }

.marquee-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(149, 160, 181, 0.5);
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: rgba(245, 247, 251, 0.85);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(104, 145, 255, 0.4);
  flex-shrink: 0;
}

.craft-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.craft-container,
.connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.float-symbol {
  position: absolute;
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
  font-weight: 600;
  opacity: 0.35;
  animation: symbolFloat 6s ease-in-out infinite;
}

.float-symbol--1 { top: 12%; left: 50%; font-size: 1rem; color: rgb(104, 145, 255); animation-delay: 0s; }
.float-symbol--2 { top: 32%; left: 12%; font-size: 0.9rem; color: rgb(122, 255, 201); animation-delay: -1s; }
.float-symbol--3 { top: 28%; right: 10%; font-size: 1.1rem; color: rgb(198, 120, 221); animation-delay: -2s; }
.float-symbol--4 { bottom: 30%; left: 15%; font-size: 0.7rem; color: rgb(229, 192, 123); animation-delay: -3s; }
.float-symbol--5 { bottom: 22%; right: 14%; font-size: 0.9rem; color: rgb(97, 175, 239); animation-delay: -4s; }
.float-symbol--6 { bottom: 12%; left: 50%; font-size: 0.6rem; color: rgb(86, 182, 194); animation-delay: -5s; }

.craft-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
}

.emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.emblem-ring--outer { inset: -40px; border-color: rgba(104, 145, 255, 0.08); animation: ringPulse 4s ease-in-out infinite; }
.emblem-ring--middle { inset: -20px; border-color: rgba(104, 145, 255, 0.12); animation: ringPulse 4s ease-in-out infinite 0.5s; }
.emblem-ring--inner { inset: 0; border-color: rgba(104, 145, 255, 0.18); animation: ringPulse 4s ease-in-out infinite 1s; }

.emblem-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 1.5rem;
  font-weight: 700;
}

.emblem-bracket { color: rgb(104, 145, 255); }
.emblem-slash { color: rgb(122, 255, 201); }

.flow-visual {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.flow-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.flow-path { animation: dashFlow 12s linear infinite; }
.return-path { animation: dashFlowReturn 20s linear infinite; }
.ring-pulse { animation: ringExpand 3.5s ease-in-out infinite; transform-origin: center; }
.ring-delay { animation-delay: -1.2s; }
.satellite { animation: satelliteFloat 5s ease-in-out infinite; }
.orb-float { animation: orbFloat 8s ease-in-out infinite; }
.orb-delay-1 { animation-delay: -2.6s; }
.orb-delay-2 { animation-delay: -5.3s; }
.particle { animation: particlePulse 2s ease-in-out infinite; }

.process-card {
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--step-color), transparent);
  opacity: 0.6;
}

.process-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--step-color) 0%, transparent 70%);
  opacity: 0.05;
  pointer-events: none;
}

.case-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005) 40%),
    rgb(var(--color-surface));
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.case-card:hover {
  border-color: rgba(var(--cs-rgb), 0.35);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(var(--cs-rgb), 0.15),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.service-card {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.service-card:hover {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(104, 145, 255, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.contact-input {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--color-border), 0.3);
  background: rgb(var(--color-surface-2));
  color: rgb(var(--color-text));
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input::placeholder {
  color: rgba(var(--color-text-muted), 0.4);
}

.contact-input:focus {
  border-color: rgba(var(--color-primary), 0.6);
  box-shadow: 0 0 0 1px rgba(var(--color-primary), 0.25);
}

.contact-input.is-invalid {
  border-color: rgba(var(--color-danger), 0.4);
}

.contact-input.is-valid {
  border-color: rgba(var(--color-success), 0.4);
}

.contact-input option {
  background: rgb(var(--color-surface-2));
  color: rgb(var(--color-text));
}

@media (max-width: 640px) {
  .hero-eyebrow-pill {
    display: inline-block;
    line-height: 1.35;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 0.45rem 0.85rem;
  }

  .terminal-window {
    font-size: 0.75rem;
    border-radius: 0.85rem;
  }

  .terminal-header {
    padding: 0.65rem 0.85rem;
  }

  .terminal-body {
    min-height: 0;
    padding: 0.85rem 0.25rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .code-line {
    gap: 0.75rem;
    padding: 0 0.6rem;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .cursor {
    margin-left: calc(1.5ch + 0.75rem + 0.6rem);
  }

  .contact-form-panel,
  .contact-conversation-panel {
    width: 100%;
    max-width: 100%;
    padding: 1.1rem;
  }

  .contact-section-card,
  .contact-turnstile-shell {
    padding: 1rem;
  }
}

@media (max-width: 420px) {
  .hero-eyebrow-pill {
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    padding: 0.4rem 0.75rem;
  }

  .terminal-window {
    font-size: 0.72rem;
  }

  .terminal-tab {
    margin-left: 0.55rem;
    font-size: 0.62rem;
  }

  .code-line {
    gap: 0.6rem;
    padding: 0 0.5rem;
  }

  .cursor {
    margin-left: calc(1.5ch + 0.6rem + 0.5rem);
  }

  .contact-form-panel,
  .contact-conversation-panel {
    padding: 0.95rem;
  }

  .contact-section-card,
  .contact-turnstile-shell {
    padding: 0.85rem;
  }

  .contact-input {
    padding: 0.68rem 0.85rem;
  }

  .contact-verification-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes lineReveal {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes symbolFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(2deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-12px); opacity: 1; }
}

@keyframes dashFlow {
  to { stroke-dashoffset: -120; }
}

@keyframes dashFlowReturn {
  to { stroke-dashoffset: -90; }
}

@keyframes ringExpand {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.35; }
}

@keyframes satelliteFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  25% { transform: translate(3px, -4px); opacity: 0.3; }
  50% { transform: translate(-2px, -6px); opacity: 0.6; }
  75% { transform: translate(-4px, 2px); opacity: 0.35; }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5px, -8px) scale(1.1); }
}

@keyframes particlePulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .orbital-ring,
  .orbital-dot,
  .marquee-track,
  .flow-path,
  .return-path,
  .ring-pulse,
  .satellite,
  .orb-float,
  .particle,
  .float-symbol,
  .emblem-ring {
    animation: none !important;
  }
}

.analytics-consent-banner {
  backdrop-filter: none;
  background-color: rgb(var(--color-surface));
  background-image:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015) 34%, rgba(255, 255, 255, 0.025) 100%),
    radial-gradient(circle at top right, rgba(var(--color-primary), 0.12), transparent 42%),
    radial-gradient(circle at bottom left, rgba(var(--color-accent), 0.08), transparent 40%),
    linear-gradient(180deg, rgb(18, 22, 30), rgb(11, 15, 21));
}

html[data-analytics-consent="pending"] body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 50;
  background:
    radial-gradient(circle at top, rgba(var(--color-primary), 0.1), transparent 40%),
    rgba(6, 9, 14, 0.74);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.analytics-consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  overflow: hidden;
  isolation: isolate;
  border-radius: 1.5rem;
  border: 1px solid rgba(var(--color-primary), 0.18);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
  visibility: hidden;
  padding: 1.1rem;
}

.analytics-consent-banner::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--color-primary), 0.1), rgba(var(--color-primary), 0.85), rgba(var(--color-accent), 0.45));
}

.analytics-consent-banner::after {
  content: '';
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  z-index: -1;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--color-primary), 0.2), transparent 68%);
  opacity: 0.9;
  pointer-events: none;
}

.analytics-consent-banner--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.analytics-consent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-self: start;
  border: 1px solid rgba(var(--color-primary), 0.26);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(var(--color-primary), 0.18), rgba(var(--color-accent), 0.08));
  color: rgba(var(--color-text), 0.98);
  box-shadow: 0 10px 24px rgba(var(--color-primary), 0.16);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.8rem;
  text-transform: uppercase;
}

.analytics-consent-title {
  margin: 1rem 0 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgb(var(--color-text));
}

.analytics-consent-copy {
  margin: 0.75rem 0 0;
  max-width: 58ch;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(var(--color-text-muted), 0.94);
}

.analytics-consent-points {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.analytics-consent-point {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border: 1px solid rgba(var(--color-border), 0.08);
  border-radius: 1rem;
  background: rgb(var(--color-surface-2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: rgba(var(--color-text), 0.92);
  font-size: 0.83rem;
  line-height: 1.45;
  padding: 0.75rem 0.85rem;
}

.analytics-consent-point::before {
  content: '';
  flex: 0 0 auto;
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0.27rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(var(--color-primary), 1), rgba(var(--color-accent), 0.9));
  box-shadow:
    0 0 0 0.28rem rgba(var(--color-primary), 0.12),
    0 0 18px rgba(var(--color-primary), 0.24);
}

.analytics-consent-actions {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.15rem;
}

.analytics-consent-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid rgba(var(--color-border), 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--color-surface-2)), rgb(20, 24, 32));
  color: rgb(var(--color-text));
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.analytics-consent-link:hover,
.analytics-consent-link:focus-visible {
  border-color: rgba(var(--color-primary), 0.5);
  background: linear-gradient(180deg, rgba(var(--color-primary), 0.16), rgba(var(--color-surface-2), 0.92));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.analytics-consent-buttons {
  display: grid;
  gap: 0.65rem;
}

.analytics-consent-button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--color-border), 0.12);
  background: linear-gradient(180deg, rgb(28, 33, 43), rgb(20, 24, 32));
  color: rgb(var(--color-text));
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.1;
  padding: 0.9rem 1.1rem;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.analytics-consent-button:hover,
.analytics-consent-button:focus-visible {
  transform: translateY(-1px);
}

.analytics-consent-button--secondary {
  border-color: rgba(var(--color-border), 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgb(27, 31, 40), rgb(18, 22, 29));
  color: rgba(var(--color-text), 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.analytics-consent-button--primary {
  border-color: rgba(var(--color-primary), 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, rgb(var(--color-primary)), rgb(84, 122, 241));
  color: rgb(var(--color-text));
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  box-shadow:
    0 16px 34px rgba(var(--color-primary), 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.analytics-consent-button--secondary:hover,
.analytics-consent-button--secondary:focus-visible {
  border-color: rgba(var(--color-primary), 0.26);
  background:
    linear-gradient(180deg, rgba(var(--color-primary), 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgb(31, 36, 47), rgb(21, 25, 33));
  color: rgb(var(--color-text));
}

.analytics-consent-button--secondary:hover,
.analytics-consent-button--secondary:focus-visible,
.analytics-consent-button--primary:hover,
.analytics-consent-button--primary:focus-visible {
  border-color: rgba(var(--color-primary), 0.85);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.analytics-consent-button--primary:hover,
.analytics-consent-button--primary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, rgb(118, 157, 255), rgb(90, 130, 248));
  box-shadow:
    0 18px 36px rgba(var(--color-primary), 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.analytics-consent-button:active {
  transform: translateY(0);
}

.analytics-consent-link:focus-visible,
.analytics-consent-button:focus-visible {
  outline: 2px solid rgba(var(--color-primary), 0.55);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .analytics-consent-banner {
    max-width: 34rem;
    left: auto;
    padding: 1.25rem 1.25rem 1.15rem;
  }

  .analytics-consent-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .analytics-consent-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .analytics-consent-banner {
    max-width: 42rem;
  }

  .analytics-consent-actions {
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .analytics-consent-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .analytics-consent-link {
    justify-content: flex-start;
    padding-inline: 1.1rem;
  }
}
