/* ============================================================
   Paani Boss — veo3prompt.guide
   Light, premium, zero third-party requests (no web fonts, no CDNs).
   ============================================================ */

:root {
  /* palette */
  --ink: #0d1f1a;
  --ink-soft: #3c4f48;
  --muted: #62736c;
  --green: #0a3b30;
  --green-mid: #0f6a54;
  --green-bright: #128a6a;
  --gold: #b98a2e;
  --paper: #fcfcf9;
  --paper-warm: #f6f4ec;
  --surface: #f2f6f2;
  --white: #fff;
  --line: #e2e7e0;
  --line-strong: #cfd8d0;

  /* elevation */
  --sh-sm: 0 1px 2px rgba(13, 31, 26, .05), 0 2px 8px rgba(13, 31, 26, .04);
  --sh-md: 0 2px 4px rgba(13, 31, 26, .04), 0 12px 28px -12px rgba(13, 31, 26, .16);
  --sh-lg: 0 4px 8px rgba(13, 31, 26, .04), 0 32px 64px -24px rgba(13, 31, 26, .24);

  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --wrap: 1160px;

  --font: "Inter var", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  color-scheme: light;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.68;
  font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
dt,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 760;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: #cdeadd;
  color: var(--green);
}

code {
  padding: .12em .42em;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-warm);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .84em;
  letter-spacing: -.01em;
}

.wrap {
  width: min(calc(100% - 44px), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 200;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 650;
}

.skip-link:focus-visible {
  top: 18px;
}

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* eyebrow ---------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--green-mid);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 7px;
  border: 1px solid #c4ded3;
  border-radius: 999px;
  background: #eaf6f0;
  font-size: .7rem;
  letter-spacing: .06em;
}

/* ============================ header ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 252, 249, .82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(13, 31, 26, .5);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  border-radius: 11px;
  box-shadow: var(--sh-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 750;
  font-size: 1.02rem;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.brand-text em {
  font-style: normal;
  font-weight: 550;
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  font-size: .93rem;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover {
  background: #eaf1ec;
  color: var(--green);
}

.nav-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: .88rem;
  font-weight: 680;
  letter-spacing: -.01em;
  box-shadow: var(--sh-sm);
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ============================ hero ============================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 0;
  background:
    radial-gradient(120% 90% at 85% -10%, #e4f4ea 0%, rgba(228, 244, 234, 0) 60%),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 62%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 31, 26, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 31, 26, .028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 12%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 12%, #000 0%, transparent 78%);
}

.hero-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-aura span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .42;
  animation: float 18s ease-in-out infinite alternate;
}

.hero-aura span:nth-child(1) {
  top: -140px;
  right: -40px;
  width: 420px;
  height: 420px;
  background: #9adcc0;
}

.hero-aura span:nth-child(2) {
  bottom: -180px;
  left: -90px;
  width: 400px;
  height: 400px;
  background: #d8e8a6;
  animation-delay: -6s;
}

.hero-aura span:nth-child(3) {
  top: 120px;
  left: 42%;
  width: 260px;
  height: 260px;
  background: #bfe4d4;
  opacity: .3;
  animation-delay: -12s;
}

@keyframes float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(0, 28px, 0) scale(1.09);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 76px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 15px 7px 12px;
  border: 1px solid #c2ded1;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--sh-sm);
  font-size: .81rem;
  font-weight: 660;
  color: var(--green);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(18, 138, 106, .5);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(18, 138, 106, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(18, 138, 106, 0);
  }
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  font-weight: 780;
  letter-spacing: -.045em;
}

.hero h1 em {
  display: block;
  font-style: normal;
  background: linear-gradient(100deg, var(--green-mid), var(--green-bright) 55%, #7fae3a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-lede {
  max-width: 35rem;
  margin-bottom: 30px;
  font-size: 1.11rem;
  color: var(--ink-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 680;
  letter-spacing: -.011em;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, var(--green-mid), var(--green));
  color: #fff;
  box-shadow: 0 14px 32px -14px rgba(10, 59, 48, .7);
}

.button-primary:hover {
  box-shadow: 0 18px 38px -14px rgba(10, 59, 48, .78);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .82);
  color: var(--green);
  box-shadow: var(--sh-sm);
}

.button-secondary:hover {
  border-color: #a9c9ba;
}

.button-light {
  background: #fff;
  color: var(--green);
  box-shadow: 0 12px 26px -14px rgba(0, 0, 0, .5);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.button-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.proof-list {
  display: grid;
  gap: 11px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  font-size: .95rem;
  color: var(--ink-soft);
}

.proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.proof-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 6px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--green-bright) 0 30%, transparent 31%),
    #dcefe5;
  box-shadow: inset 0 0 0 1px #bcdccc;
}

/* hero panel ------------------------------------------------- */
.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 34px 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #fbfdfb);
  box-shadow: var(--sh-lg);
  text-align: center;
}

.panel-sheen {
  position: absolute;
  inset: -60% -20% auto;
  height: 220px;
  background: linear-gradient(180deg, rgba(18, 138, 106, .12), transparent);
  transform: rotate(-8deg);
}

.panel-icon {
  position: relative;
  margin: 0 auto 18px;
  border-radius: 22px;
  box-shadow: var(--sh-md);
}

.panel-kicker {
  margin-bottom: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.hero-panel h2 {
  margin-bottom: 8px;
  font-size: 1.72rem;
}

.panel-note {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .95rem;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 18px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  text-align: center;
}

.panel-metrics div+div {
  border-left: 1px solid var(--line);
}

.panel-metrics dt {
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-metrics dd {
  margin: 4px 0 0;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.panel-foot {
  margin: 0;
  font-size: .78rem;
  color: var(--muted);
}

/* capability strip ------------------------------------------- */
.marquee-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 620;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line-strong);
}

/* ============================ sections ============================ */
.section {
  padding: 96px 0;
}

.section-tint {
  background:
    radial-gradient(90% 60% at 50% 0%, #eef5ef 0%, transparent 70%),
    var(--surface);
  border-block: 1px solid var(--line);
}

/* Centred section heading. This element also carries .wrap, so the max-width
   must be paired with auto margins and centred text, otherwise the heading box
   is narrower than the card grid below it and the two never line up. */
.section-heading {
  max-width: 50rem;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.split-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.section-heading>p {
  margin-inline: auto;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 52px;
}

.split-heading>p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* problem cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.problem-grid article {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}

.problem-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.num {
  display: block;
  margin-bottom: 14px;
  font-size: 1.6rem;
  font-weight: 780;
  letter-spacing: -.04em;
  color: #cddcd3;
}

.problem-grid h3 {
  margin-bottom: 9px;
  font-size: 1.12rem;
}

.problem-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

/* feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #c6ddd0;
  box-shadow: var(--sh-md);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid #cfe6da;
  border-radius: 15px;
  background: linear-gradient(180deg, #f0f9f4, #e2f2ea);
  color: var(--green-mid);
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

/* steps — centred connected timeline
   Note: this element also carries .wrap, which centres it with
   margin-inline: auto. Only reset margin-bottom here — a bare `margin: 0`
   would wipe out that auto centring and pin the grid to the left edge. */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}

.steps li:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

/* connector drawn across the gap, level with the number badge */
.steps li::before {
  content: "";
  position: absolute;
  top: 53px;
  left: 100%;
  width: 22px;
  height: 2px;
  background: var(--line-strong);
}

.steps li:last-child::before {
  display: none;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green-mid), var(--green));
  color: #fff;
  font-weight: 720;
  box-shadow: 0 8px 18px -10px rgba(10, 59, 48, .8);
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

/* ============================ showcase ============================ */
.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 68px;
  align-items: center;
}

.showcase-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.showcase-copy p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 680;
  color: var(--green-mid);
  border-bottom: 2px solid rgba(18, 138, 106, .28);
  transition: border-color .2s ease, color .2s ease;
}

.text-link::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.phone-frame {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 42px;
  background: linear-gradient(160deg, #fff, #eef2ee);
  box-shadow: var(--sh-lg), inset 0 1px 0 #fff;
}

.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 92px;
  height: 6px;
  border-radius: 999px;
  background: rgba(13, 31, 26, .16);
}

.slideshow {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
}

.slides-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, .1, .2, 1);
}

.slide {
  flex: 0 0 100%;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--sh-sm);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.slide-arrow:hover {
  background: #eaf6f0;
}

.slide-prev {
  left: 12px;
}

.slide-next {
  right: 12px;
}

.slide-dots {
  position: absolute;
  inset: auto 0 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.slide-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(13, 31, 26, .26);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.slide-dot.active {
  width: 22px;
  background: var(--green-mid);
}

/* ============================ stage ============================ */
.stage-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
}

.stage-grid h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}

.stage-copy>p {
  color: var(--ink-soft);
}

.honesty-note {
  margin: 22px 0 0;
  padding: 22px 24px;
  border: 1px solid #e8ddbf;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fdfaf0, #fbf7ea);
  color: #4d452f;
  font-size: .96rem;
}

.honesty-note strong {
  color: #3d3venue;
  color: #3d3722;
}

/* ============================ founder ============================ */
.founder-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--sh-lg);
}

.founder-photo {
  position: relative;
  width: 220px;
  height: 220px;
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #cfe9dc, #eef3d8, #cfe9dc);
}

.founder-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: var(--sh-md);
}

.founder-card h2 {
  margin-bottom: 5px;
  font-size: 2.1rem;
}

.founder-role {
  margin-bottom: 16px;
  font-weight: 680;
  color: var(--green-mid);
}

.founder-card p {
  color: var(--ink-soft);
}

/* ============================ contact ============================ */
.contact-section {
  padding-bottom: 104px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 66px 46px;
  border-radius: 34px;
  background:
    radial-gradient(90% 120% at 12% 0%, #14785d 0%, transparent 55%),
    linear-gradient(140deg, var(--green) 0%, #0c5343 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--sh-lg);
}

.contact-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(178, 226, 150, .28);
  filter: blur(60px);
}

.contact-card .eyebrow {
  justify-content: center;
  color: #b9e6cf;
}

.contact-card h2 {
  position: relative;
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}

.contact-card>p {
  position: relative;
  max-width: 41rem;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .9);
}

.contact-card .button-row {
  position: relative;
  justify-content: center;
}

/* ============================ footer ============================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 44px 0;
}

.footer-inner {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  border-radius: 10px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: left;
}

.footer-brand span {
  font-size: .8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: .92rem;
  font-weight: 620;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--green-mid);
}

.footer-legal {
  margin: 0;
  font-size: .84rem;
  color: var(--muted);
}

/* ============================ legal pages ============================ */
.legal {
  padding: 72px 0 96px;
}

.legal-inner {
  width: min(calc(100% - 44px), 760px);
  margin-inline: auto;
}

.legal h1 {
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 4.2vw, 2.8rem);
}

.legal .updated {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: .92rem;
}

.legal h2 {
  margin: 40px 0 12px;
  font-size: 1.24rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal ul {
  padding-left: 22px;
}

.legal li {
  margin-bottom: 9px;
}

.legal .text-link {
  font-size: inherit;
}

/* ============================ reveal ============================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================ responsive ============================ */
@media (max-width: 1000px) {

  .hero-grid,
  .showcase-layout,
  .stage-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-grid {
    gap: 44px;
    padding-bottom: 60px;
  }

  .hero-panel {
    max-width: 420px;
    margin-inline: auto;
  }

  .problem-grid,
  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* two per row: only the connector inside each row stays */
  .steps li:nth-child(2n)::before {
    display: none;
  }

  .phone-frame {
    max-width: 360px;
    margin-inline: auto;
  }

  .founder-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 36px 26px;
  }

  .founder-card .eyebrow {
    justify-content: center;
  }

  .founder-photo {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading,
  .split-heading {
    margin-bottom: 36px;
  }

  .problem-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  /* single column: the connector runs vertically under the centred badge */
  .steps {
    gap: 26px;
  }

  .steps li::before,
  .steps li:nth-child(2n)::before {
    display: block;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 26px;
  }

  .steps li:last-child::before {
    display: none;
  }

  .contact-card {
    padding: 44px 24px;
    border-radius: 26px;
  }

  .button {
    width: 100%;
  }

  .nav-cta,
  .text-link {
    width: auto;
  }

  .marquee-strip {
    font-size: .74rem;
    gap: 10px 12px;
  }

  .panel-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .panel-metrics div+div {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }

  .phone-frame {
    padding: 9px;
    border-radius: 34px;
  }

  .slideshow {
    border-radius: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .slides-track {
    transition: none;
  }
}

/* ============================ build status ============================ */
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.status-card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}

.status-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--line-strong);
}

.status-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.status-card.is-live::before {
  background: linear-gradient(90deg, var(--green-bright), #7fae3a);
}

.status-card.is-progress::before {
  background: linear-gradient(90deg, var(--gold), #e0b95c);
}

.status-card.is-planned::before {
  background: linear-gradient(90deg, #b4bfb8, #d6ded8);
}

.status-card header {
  margin-bottom: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 5px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper-warm);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.is-live .status-pill {
  border-color: #b6ddc9;
  background: #eaf7f0;
  color: var(--green-mid);
}

.is-progress .status-pill {
  border-color: #e6d6a8;
  background: #fdf7e7;
  color: #96701f;
}

.status-card h3 {
  font-size: 1.14rem;
}

.status-card>p {
  color: var(--muted);
  font-size: .95rem;
}

.status-card ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: .92rem;
  color: var(--ink-soft);
}

.status-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.status-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--line-strong);
}

.is-live li::before {
  background: var(--green-bright);
}

.is-progress li::before {
  background: var(--gold);
}

/* ============================ timeline ============================ */
/* Card-based steps. Each step is a self-contained padded card so copy never
   sits flush against the container edge, and the connecting rail is drawn in
   the gap between cards rather than under the text.
   Note: this element also carries .wrap, which centres it with
   margin-inline: auto. Only reset margin-bottom here — a bare `margin: 0`
   would wipe out that auto centring and pin the grid to the left edge. */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.timeline li:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

/* connecting rail, drawn across the gap to the next card,
   vertically aligned with the inline stage marker */
.timeline li::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 100%;
  width: 18px;
  height: 2px;
  background: var(--line-strong);
}

.timeline li:last-child::before {
  display: none;
}

.timeline li.is-current {
  border-color: #e6d6a8;
  background: linear-gradient(180deg, #fffdf6, var(--white));
}

.timeline li.is-final {
  border-color: #b6ddc9;
  background: linear-gradient(180deg, #f5fbf7, var(--white));
}

/* Stage label with its marker inline, so the dot can never overlap the text. */
.timeline .when {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.timeline .when::before {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(207, 216, 208, .3);
}

.timeline li.is-done .when::before {
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(18, 138, 106, .16);
}

.timeline li.is-current .when::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 138, 46, .22);
}

.timeline li.is-final .when::before {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(10, 59, 48, .14);
}

.timeline li.is-current .when {
  color: #96701f;
}

.timeline li.is-final .when {
  color: var(--green);
}

.timeline h3 {
  margin-bottom: 9px;
  font-size: 1.02rem;
  overflow-wrap: break-word;
}

.timeline p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

/* hero proof list emphasis */
.proof-list strong {
  color: var(--ink);
  font-weight: 680;
}

/* ============================ responsive: new blocks ============================ */
@media (max-width: 1180px) {

  /* Five columns get too narrow before the tablet breakpoint. */
  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Only the rails that stay inside a row should remain visible. */
  .timeline li:nth-child(3n)::before {
    display: none;
  }
}

@media (max-width: 1000px) {
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline li:nth-child(3n)::before {
    display: block;
  }

  .timeline li:nth-child(2n)::before {
    display: none;
  }
}

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

  /* Single column: the rail becomes vertical between stacked cards. */
  .timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline li {
    padding: 22px 22px 24px;
  }

  .timeline li::before,
  .timeline li:nth-child(2n)::before,
  .timeline li:nth-child(3n)::before {
    display: block;
    top: 100%;
    left: 27px;
    width: 2px;
    height: 22px;
  }

  .timeline li:last-child::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .status-card:hover,
  .timeline li:hover,
  .steps li:hover {
    transform: none;
  }
}

/* ============================ anchor offset ============================ */
/* The header is sticky, so anchor targets need clearance or the section
   heading lands underneath it when a nav link is clicked. */
#problem,
#product,
#workflow,
#app,
#status,
#roadmap,
#founder,
#contact,
#main {
  scroll-margin-top: 96px;
}

@media (max-width: 720px) {

  #problem,
  #product,
  #workflow,
  #app,
  #status,
  #roadmap,
  #founder,
  #contact,
  #main {
    scroll-margin-top: 84px;
  }
}