/* ============================================================
   plactl landing — design tokens
   Aesthetic: refined / utilitarian / infrastructure-native.
   Theme: light, matching the dashboard; white ground for the mascot.
   Accents: teal (logo wings, primary) + sparing orange (logo body).
============================================================ */

:root {
  /* surface — light, matching the dashboard's direction and the
     mascot art's white ground */
  --bg: #ffffff;
  --bg-2: #fafbfc;
  --surface: #f5f7f9;
  --surface-2: #eef1f5;
  --surface-3: #e6eaef;
  --border: #e4e8ee;
  --border-strong: #cfd6df;
  --hairline: rgba(24, 32, 49, 0.07);

  /* text */
  --fg: #182031;
  --fg-muted: #4d5a6e;
  --fg-dim: #77839a;
  --fg-faint: #9aa5b8;

  /* accent — derived from logo */
  --teal: #2cc4b3;
  --teal-700: #178f81;
  --teal-300: #5fdfd0;
  --orange: #f5a04e;
  --orange-700: #c97a2a;

  /* state */
  --primary-on: #04221e;

  /* type */
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display",
    "Segoe UI", Roboto, "Helvetica Neue", "Helvetica", "Arial",
    sans-serif;
  --mono:
    "JetBrains Mono", "Fira Code", "SF Mono", SFMono-Regular,
    ui-monospace, "Menlo", "Monaco", "Consolas", "Liberation Mono",
    monospace;

  /* layout */
  --container: 1120px;
  --container-narrow: 880px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 18px;

  /* motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-spring: cubic-bezier(0.25, 1.2, 0.5, 1);
}

/* ============================================================
   reset
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings:
    "ss01" on,
    "cv11" on;
  font-variant-numeric: tabular-nums;
  min-height: 100vh;
  overflow-x: hidden;
}

/* a single very subtle wash above the hero — not a gradient mesh,
   just enough to seat the brand color in the surface. */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 100%);
  height: 720px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 60% 100% at 50% 0%,
      rgba(44, 196, 179, 0.07),
      rgba(44, 196, 179, 0) 70%
    );
}

main {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--teal);
  color: var(--primary-on);
}

/* ============================================================
   utilities
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 2rem);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--teal);
  color: var(--primary-on);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  z-index: 100;
  font-weight: 500;
  font-size: 0.875rem;
  transition: top 0.15s var(--ease-out);
}
.skip-link:focus {
  top: 0.75rem;
}

/* ============================================================
   focus
============================================================ */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus-visible {
  outline-offset: 4px;
}

/* ============================================================
   header
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--fg);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  -webkit-tap-highlight-color: transparent;
}

.brand-glyph {
  width: 8px;
  height: 8px;
  background: var(--teal);
  transform: rotate(45deg);
  display: inline-block;
  border-radius: 1.5px;
  box-shadow: 0 0 0 1px var(--teal-700);
}

.brand-name {
  font-weight: 600;
  letter-spacing: -0.015em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0.875rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition:
    color 0.15s var(--ease-out),
    background 0.15s var(--ease-out);
}
.nav-link:hover {
  color: var(--fg);
  background: var(--surface);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--fg);
  margin-left: 0.25rem;
}
.nav-cta:hover {
  background: var(--surface-2);
  border-color: var(--teal-700);
  color: var(--fg);
}

@media (max-width: 540px) {
  .nav-link:not(.nav-cta) {
    display: none;
  }
}

/* ============================================================
   typography utilities
============================================================ */
.display {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1.5rem;
  padding: 0.4rem 0.75rem 0.4rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--fg-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  width: fit-content;
}

.eyebrow-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(44, 196, 179, 0.18);
  flex-shrink: 0;
}
.eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  opacity: 0;
  animation: eyebrowPulse 2.6s var(--ease-out) infinite;
}
@keyframes eyebrowPulse {
  0% {
    transform: scale(0.5);
    opacity: 0.65;
  }
  80%,
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

strong {
  font-weight: 600;
  color: var(--fg);
}

/* ============================================================
   hero
============================================================ */
.hero {
  position: relative;
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.hero .container {
  text-align: left;
}

.hero-stagger {
  opacity: 0;
  transform: translateY(10px);
  animation: heroIn 0.7s var(--ease-out) forwards;
  animation-delay: calc(0.08s + var(--stagger, 0) * 0.1s);
}
@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   hero stage — mascot flying in from the left, copy off-center
============================================================ */
.hero-stage {
  display: grid;
  grid-template-columns: minmax(260px, 5fr) 7fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  /* copy pins to the top (title sits just under the clouds); the art
     takes its own offset below so the row height never pushes the
     headline down */
  align-items: start;
  text-align: left;
}

.hero-wrap {
  position: relative;
}

/* destination clouds behind the headline, upper right */
.hero-clouds {
  position: absolute;
  top: -1.5rem;
  right: 0;
  width: min(58%, 640px);
  height: auto;
  z-index: 0;
  pointer-events: none;
}
.cloud {
  fill: var(--surface-2);
}
.cloud-small {
  fill: var(--surface);
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

.hero-art {
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
  /* drop the bird so the beak sits ~level with the title — the eye
     rides the beak's upward line straight onto the headline */
  margin-top: clamp(0rem, 4vw, 3.75rem);
}
.hero-art img {
  width: 100%;
  height: auto;
}

/* the pronunciation aside, at the flight's origin */
.hero-pron {
  margin: 0.5rem 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.hero-pron em {
  font-style: italic;
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.125rem, 3.2vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 26ch;
}

.lede {
  margin: 0 0 2rem;
  max-width: 54ch;
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.55;
  color: var(--fg-muted);
}
.lede strong {
  color: var(--fg);
  font-weight: 600;
}

.hero-copy .cta-row {
  justify-content: flex-start;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.cta-row--center {
  justify-content: center;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1.1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.18s var(--ease-out),
    border-color 0.18s var(--ease-out),
    color 0.18s var(--ease-out),
    transform 0.18s var(--ease-out),
    box-shadow 0.18s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--primary-on);
  border-color: var(--teal);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.25) inset,
    0 1px 2px rgba(24, 32, 49, 0.15),
    0 0 0 0 rgba(44, 196, 179, 0);
}
.btn-primary:hover {
  background: #106e63;
  border-color: #106e63;
  color: #ffffff;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.25) inset,
    0 4px 14px rgba(44, 196, 179, 0.28),
    0 0 0 4px rgba(44, 196, 179, 0.08);
}
.btn-primary:active {
  transform: translateY(0.5px);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--fg-faint);
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease-out);
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ============================================================
   sections (shared)
============================================================ */
.section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--border);
}

/* ============================================================
   how it works + trust
============================================================ */
.how-title,
.trust-title {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.75rem);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.03em;
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.how-step {
  display: grid;
  /* minmax(0,1fr): the scroll pre's intrinsic width must not blow out
     the track (grid min-width:auto default) */
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1.25rem;
}

.how-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--teal-700);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-top: 0.1rem;
}

.how-head {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.how-text {
  margin: 0;
  max-width: 62ch;
  color: var(--fg-muted);
  line-height: 1.6;
}
.how-text code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.05rem 0.35rem;
}
.how-text strong {
  color: var(--fg);
}

/* app screenshot in a minimal browser frame */
.app-shot {
  margin: 1.25rem 0 0;
  max-width: 860px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px -22px rgba(24, 32, 49, 0.35);
  background: #ffffff;
}
.app-shot-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 32px;
  padding: 0 0.75rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.app-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--surface-3);
}
.app-shot-url {
  margin-left: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--fg-dim);
}
/* the mini wizard — the wizard's real sections as a filmstrip;
   all visible at once, scroll-snap strip on mobile */
.mini-wizard--strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  font-size: 0.8125rem;
}
.mw-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-2);
  padding: 0.8rem 0.9rem 0.95rem;
  min-width: 0;
}
.mw-card-step {
  margin: 0 0 0.65rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--teal-700);
  font-weight: 600;
  text-transform: uppercase;
}
.mw-stack {
  display: grid;
  gap: 0.45rem;
}
.mw-label {
  color: var(--fg-dim);
  font-size: 0.75rem;
}
.mw-field {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 6px;
  padding: 0.28rem 0.55rem;
  color: var(--fg);
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mw-field-note {
  color: var(--fg-muted);
  font-size: 0.72rem;
}
.mw-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.mw-field-computed {
  background: var(--surface);
  color: var(--fg-dim);
  font-family: var(--mono);
  border-style: dashed;
}
.mw-chips {
  display: inline-flex;
  gap: 0.4rem;
}
.mw-chip {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.18rem 0.65rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.mw-chip-on {
  border-color: var(--teal-700);
  background: rgba(44, 196, 179, 0.1);
  color: var(--teal-700);
  font-weight: 600;
}
.mw-cta {
  background: var(--teal);
  color: var(--primary-on);
  border-radius: 7px;
  padding: 0.32rem 0.7rem;
  font-weight: 500;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.35rem;
}

@media (max-width: 720px) {
  .mini-wizard--strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .mw-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}

/* the two compose files — plain code panels; this is the part a
   skeptic actually reads */
.compose-files {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 7fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 1rem;
}

.compose-doc {
  margin: 0;
  background: #0f1520;
  border: 1px solid #232c3a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 36px -20px rgba(24, 32, 49, 0.45);
}

.compose-name {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #8a96a8;
  padding: 0.55rem 1rem;
  background: #151d2b;
  border-bottom: 1px solid #232c3a;
}
.repo-ico {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.repo-slug {
  color: #dbe3ee;
  font-weight: 600;
}
.compose-file {
  margin-left: auto;
}

.compose-code {
  margin: 0;
  padding: 0.8rem 1rem 1rem;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #dbe3ee;
}
.compose-code code {
  display: block;
  white-space: pre;
}
.y-k {
  color: var(--teal-300);
  font-weight: 500;
}
.y-v {
  color: var(--orange);
}
.y-c {
  /* gold on dark — the sparkle carries itself, no pill needed */
  color: #f2cd88;
}

.got-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2.5rem;
  max-width: 760px;
}
.got-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--fg-muted);
  line-height: 1.55;
  font-size: 0.9375rem;
}
.got-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-700);
  font-weight: 700;
}
.got-list strong {
  color: var(--fg);
}

@media (max-width: 640px) {
  .got-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .compose-files {
    grid-template-columns: minmax(0, 1fr);
  }
  .how-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 0.9rem;
  }
  .how-num {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

/* trust block */
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  max-width: 980px;
}
.trust-list li {
  color: var(--fg-muted);
  line-height: 1.6;
  padding-left: 1.1rem;
  border-left: 2px solid var(--teal);
}
.trust-list strong {
  color: var(--fg);
  display: block;
  margin-bottom: 0.2rem;
}

@media (max-width: 720px) {
  .trust-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   proof — the one number that matters
============================================================ */
.section--proof {
  text-align: center;
}
.proof-inner {
  max-width: 760px;
  margin-inline: auto;
}
.proof-line {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fg-dim);
}
.proof-line strong {
  color: var(--fg);
}
.proof-sub {
  margin: 0;
  color: var(--fg-muted);
  font-size: 1.05rem;
}

/* ============================================================
   closing
============================================================ */
.founder-inner {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.75rem;
  align-items: start;
  max-width: 720px;
}
.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.founder-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  letter-spacing: -0.025em;
}
.founder-text {
  margin: 0 0 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.founder-links {
  margin: 0;
  display: flex;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--fg-dim);
}
.founder-links a {
  color: var(--teal-700);
  font-weight: 500;
}
.founder-links a:hover {
  text-decoration: underline;
}

@media (max-width: 540px) {
  .founder-inner {
    grid-template-columns: 64px 1fr;
    gap: 1rem;
  }
  .founder-photo {
    width: 64px;
    height: 64px;
  }
}

.section--closing {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  text-align: center;
}
.closing-line {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  letter-spacing: -0.03em;
}
.closing-soft {
  color: var(--fg-dim);
}
.closing-sub {
  margin: 0 0 1.75rem;
  color: var(--fg-muted);
  font-size: 1.0625rem;
}

.closing-inner {
  max-width: 760px;
  margin-inline: auto;
}


/* ============================================================
   footer
============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem 3rem;
  align-items: center;
}

.footer-pron {
  margin: 0;
  font-size: 0.875rem;
  color: var(--fg-muted);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-name {
  color: var(--fg);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.footer-links a {
  color: var(--fg-muted);
  transition: color 0.15s var(--ease-out);
}
.footer-links a:hover {
  color: var(--fg);
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-links {
    gap: 1.25rem;
    flex-wrap: wrap;
  }
}

/* ============================================================
   hero stacking
============================================================ */
@media (max-width: 860px) {
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* headline first on small screens — cold-email links open on phones
     and the value prop must be in the first viewport */
  .hero-copy {
    order: 1;
  }
  .hero-art {
    order: 2;
    max-width: 300px;
    margin-top: 0;
  }
  .hero-copy .cta-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* ============================================================
   responsive nudges
============================================================ */
@media (max-width: 540px) {
  .eyebrow {
    font-size: 0.78125rem;
    padding-block: 0.35rem;
  }
  .nav-cta {
    padding: 0 0.75rem;
    font-size: 0.8125rem;
  }
}

/* ============================================================
   reduced motion
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-stagger {
    opacity: 1;
    transform: none;
  }
  .eyebrow-dot::after {
    display: none;
  }
}

/* ============================================================
   high contrast / forced colors
============================================================ */
@media (forced-colors: active) {
  .btn-primary {
    border: 1px solid CanvasText;
  }
  .btn-ghost {
    border: 1px solid CanvasText;
  }
}
