/* GoLivePage — marketing lobby
   Concept D "One link" + Concept A warmth (storefront dusk hero)
   Tokens per DESIGN.md. Do not introduce a second visual system. */

:root {
  --bg: #f3efe6; /* warm paper */
  --bg-deep: #e7e0d2; /* section shift */
  --ink: #1c1914; /* near-black brown */
  --muted: #5c564c; /* secondary text */
  --line: rgba(28, 25, 20, 0.12);
  --go: #0f6b4c; /* go-live green — primary CTA */
  --go-deep: #0a4a35;
  --signal: #c45c26; /* sparse accent only */
  --white: #fffcf7;
  --shadow: 0 20px 50px rgba(28, 25, 20, 0.12);

  /* Outfit replaced Syne 2026-07-25 (Syne's g/G read wrong on "GoLivePage").
     No Syne fallback by design. */
  --font-brand: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --wrap: min(1100px, calc(100% - 2.5rem));
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* ---------------------------------------------------------------
   HERO — full-bleed photo, dark veil, poster type
   --------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--ink);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  z-index: -2;
}

/* Veil: darkens toward bottom-left so white type always clears AA,
   while the lit storefront keeps its glow top-right. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to top,
      rgba(18, 16, 13, 0.9) 0%,
      rgba(18, 16, 13, 0.72) 28%,
      rgba(18, 16, 13, 0.34) 62%,
      rgba(18, 16, 13, 0.22) 100%
    ),
    linear-gradient(
      to right,
      rgba(18, 16, 13, 0.6) 0%,
      rgba(18, 16, 13, 0.28) 55%,
      rgba(18, 16, 13, 0.1) 100%
    );
}

.hero-inner {
  position: relative;
  width: var(--wrap);
  margin-inline: auto;
  padding-block: 3.5rem 3.25rem;
  max-width: min(1100px, calc(100% - 2.5rem));
}

.brand {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: 800;
  /* "GoLivePage" is one unbreakable word: it cannot wrap, so the size is
     tuned to the wordmark's MEASURED width against the --wrap gutter.
     Outfit renders ~5.27x font-size at this tracking (Syne was ~9.30x), so the
     font-size is nearly double to hold the same poster-width composition.
     Re-measure this coefficient if the display face ever changes again.
     Verified to fit 320px through 1440px. */
  font-size: clamp(3.15rem, 18vw - 7.2px, 12.3rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero-headline {
  margin: 0.55rem 0 0;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.45rem, 5.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 22ch;
  text-wrap: balance;
}

.lede {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255, 252, 247, 0.92);
  max-width: 46ch;
}

/* ---------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------- */

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 1.03rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.btn-primary {
  background: var(--go);
  color: var(--white);
  border: 1.5px solid var(--go);
  box-shadow: 0 10px 26px rgba(15, 107, 76, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--go-deep);
  border-color: var(--go-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10, 74, 53, 0.38);
}

.btn-ghost {
  background: rgba(255, 252, 247, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 252, 247, 0.6);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 252, 247, 0.16);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------
   BELOW FOLD — minimal
   --------------------------------------------------------------- */

.section {
  padding-block: clamp(3.25rem, 9vw, 5.25rem);
}

.included {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.example {
  background: var(--bg-deep);
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

.section h2 {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 20ch;
  text-wrap: balance;
}

.section-line {
  margin: 0.85rem 0 0;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  color: var(--muted);
  max-width: 52ch;
}

.example .btn {
  margin-top: 1.6rem;
}

/* ---------------------------------------------------------------
   FOOTER — ink close bar, carries the last CTA
   --------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 252, 247, 0.86);
  padding-block: 2.1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.5rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 252, 247, 0.86);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  border-bottom-color: var(--signal);
}

/* ---------------------------------------------------------------
   MOTION — opacity fade on load only (Concept D)
   --------------------------------------------------------------- */

/* Pure CSS. Deliberately NOT driven by JS: a requestAnimationFrame-gated
   reveal never fires in a background tab, which is precisely how this link
   gets opened (tapped from Facebook, then the phone is switched away). A CSS
   animation cannot strand the copy at opacity 0 — if it never runs, the
   element simply keeps its natural opacity of 1. */
@keyframes gl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade {
  animation: gl-fade-in 620ms ease-out both;
}

.fade[data-fade="1"] {
  animation-delay: 60ms;
}
.fade[data-fade="2"] {
  animation-delay: 200ms;
}
.fade[data-fade="3"] {
  animation-delay: 330ms;
}
.fade[data-fade="4"] {
  animation-delay: 450ms;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    animation: none;
    opacity: 1;
  }

  .btn,
  .footer-links a {
    transition: none;
  }

  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }
}

/* ---------------------------------------------------------------
   LARGER SCREENS
   --------------------------------------------------------------- */

@media (min-width: 46rem) {
  .hero-inner {
    padding-block: 4.5rem 4.25rem;
  }

  .lede {
    font-size: 1.2rem;
  }
}

@media (min-width: 64rem) {
  .hero-photo {
    object-position: 55% 50%;
  }

  .hero-inner {
    padding-block: 5rem 5rem;
  }
}

/* ==========================================================================
   Site nav — added 2026-07-27 (N05c)
   Two contexts, one component: overlaid on the home poster (white on the
   veil), plain paper bar on inner pages. No second visual system.
   ========================================================================== */

.site-nav {
  position: relative;
  z-index: 3;
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.15rem;
}

.site-nav .nav-brand {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0;
  text-decoration: none;
  color: inherit;
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.9rem, 3vw, 1.6rem);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
}

.site-nav .nav-links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  /* 44px minimum touch target. Measured 29px on the first build, which is
     under the threshold on the device most of these owners will use. */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  /* "How it works" must stay one line — mid-phrase wrap looks broken on phones. */
  white-space: nowrap;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a:focus-visible {
  border-bottom-color: currentColor;
}

.site-nav .nav-links a[aria-current="page"] {
  border-bottom-color: currentColor;
}

/* Overlaid on the hero poster. Absolute so it never pushes the poster down. */
.site-nav.on-hero {
  position: absolute;
  inset: 0 0 auto 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
}

/* Paper bar for inner pages. */
.site-nav.on-paper {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  width: 100%;
  padding-inline: max(1.25rem, calc((100% - 1100px) / 2));
}

/* ==========================================================================
   Pricing page — N05c
   Webspirely's JOB (clear card, big number, honest includes, FAQ),
   our type scale. No billboard H1, no emoji, no glass stack.
   ========================================================================== */

.page-head {
  padding-block: clamp(2.75rem, 7vw, 4.25rem) clamp(1.5rem, 4vw, 2.25rem);
}

.page-head h1 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.6vw, 2.6rem); /* deliberately not their 56px+ */
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.6rem;
}

.page-head .lede-line {
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  color: var(--muted);
  margin: 0;
  max-width: 46ch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  max-width: 620px;
}

.price-card .tier {
  font-family: var(--font-body);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--go);
  margin: 0 0 0.5rem;
}

.price-card .promise {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1.25;
  margin: 0 0 1.1rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.price-amount .figure {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-amount .unit {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.price-split {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

.includes {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.includes li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.5;
}

/* Hairline check, not an emoji. */
.includes li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.52em;
  width: 0.5rem;
  height: 0.28rem;
  border-left: 2px solid var(--go);
  border-bottom: 2px solid var(--go);
  transform: rotate(-45deg);
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.deposit-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0.9rem 0 0;
}

.wall {
  margin-top: clamp(1.75rem, 5vw, 2.5rem);
  max-width: 620px;
  font-size: 0.98rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.wall strong {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 0.4rem;
  max-width: 720px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--go);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2212"; /* minus sign when open */
}

.faq-list details p {
  margin: 0.7rem 0 0.2rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 62ch;
}

@media (prefers-reduced-motion: reduce) {
  .faq-list details p {
    transition: none;
  }
}

/* Ghost button for LIGHT surfaces.
   `.btn-ghost` is white-on-dark, built for the hero poster. Reusing it on the
   paper pricing card rendered white text on a white card and the Stripe
   deposit link was invisible on the deployed page. Caught by looking at it,
   not by reading the markup. */
.btn-outline {
  background: transparent;
  color: var(--go);
  border: 1.5px solid var(--go);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--go);
  color: var(--white);
  border-color: var(--go);
  transform: translateY(-2px);
}

/* ==========================================================================
   Platform site v2 — Phase L1 (2026-07-27)
   DESIGN.md §11: this is Manrae's company site, not a poster. Dense but
   useful. One job per section. No stats strip, no pill clouds, no glow.
   ========================================================================== */

/* Wordmark link needs a real touch target too. Measured 29px in N05c. */
.site-nav .nav-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* --- Home: why a real site (below the fold) --- */
.value-grid {
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.value-grid .item h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.16rem;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.value-grid .item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 40ch;
}

/* --- Teaser cards to the other pages --- */
.teaser-grid {
  display: grid;
  gap: clamp(0.9rem, 2.5vw, 1.25rem);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: clamp(1.4rem, 4vw, 2rem);
}

.teaser {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.teaser:hover,
.teaser:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.teaser h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}

.teaser p {
  margin: 0 0 0.6rem;
  color: var(--muted);
  line-height: 1.55;
}

.teaser .go {
  color: var(--go);
  font-weight: 650;
  font-size: 0.98rem;
}

/* --- How it works: numbered spine --- */
.steps {
  list-style: none;
  counter-reset: step;
  margin: clamp(1.4rem, 4vw, 2rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.6rem);
  max-width: 760px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3.4rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--go);
  color: var(--white);
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
}

.steps li h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.16rem;
  margin: 0.15rem 0 0.35rem;
}

.steps li p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
}

.steps .when {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--go);
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
}

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

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.98rem;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  /* 16px minimum stops iOS zooming the page on focus. */
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  width: 100%;
  min-height: 44px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--go);
  outline-offset: 1px;
  border-color: var(--go);
}

.contact-form .check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 400;
}

.contact-form .check input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  accent-color: var(--go);
}

.form-status {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  color: var(--go);
  min-height: 1.4em;
}

.contact-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.25rem, 3.5vw, 1.75rem);
}

.contact-aside h2 {
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  margin: 0 0 0.7rem;
}

.contact-aside p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 0.9rem;
}

/* The email must be readable as text, not hidden behind a button. */
.email-plain {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  color: var(--go);
  text-decoration: none;
  word-break: break-word;
  display: inline-block;
  min-height: 44px;
  line-height: 1.6;
}

.email-plain:hover,
.email-plain:focus-visible {
  text-decoration: underline;
}

/* --- Footer, every page --- */
.footer-inner {
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-org {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  opacity: 0.82;
}

.footer-org a {
  color: inherit;
}

@media (max-width: 620px) {
  /* Brand row + link row: links stay a single horizontal line (scroll if needed)
     so "How it works" never stacks as How it / works. */
  .site-nav {
    flex-wrap: wrap;
    row-gap: 0.15rem;
    column-gap: 0.75rem;
  }

  .site-nav .nav-brand {
    flex: 1 1 auto;
  }

  .site-nav .nav-links {
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
  }

  .site-nav .nav-links::-webkit-scrollbar {
    display: none;
  }

  .site-nav .nav-links a {
    flex: 0 0 auto;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   /examples — sell pass (N24, 2026-07-27)
   The page sells: six finished sites an owner can open and click. Labels stay
   accurate (Live vs Showcase) without turning the gallery into a disclaimer.
   ========================================================================== */

.example-grid {
  display: grid;
  gap: clamp(1.25rem, 3.5vw, 2rem);
  /* Six cards, fixed 3 columns, so the grid lands 3x2 with no orphan card
     centred on its own row. auto-fit did that at wide widths. */
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

@media (max-width: 980px) {
  .example-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.example-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.example-card .shot {
  aspect-ratio: 16 / 10;
  width: 100%;
  /* height:auto is load-bearing. The <img> carries width/height attributes for
     layout stability, and a used height from the attribute makes the browser
     ignore aspect-ratio entirely — the cards rendered 343x1000 instead of a
     16:10 crop. Caught on the deployed page, not in the markup. */
  height: auto;
  object-fit: cover;
  display: block;
  background: var(--bg-deep);
}

.example-card .body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.example-card h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.18rem;
  margin: 0;
  line-height: 1.25;
}

.example-card .meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.example-card .actions {
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Label. Live and Showcase stay visually distinct, quietly. */
.tag {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  line-height: 1.4;
}

.tag-live {
  background: var(--go);
  color: var(--white);
}

.tag-showcase {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

/* Make it yours — the explainer that turns the gallery into a sale. */
.yours-list {
  list-style: none;
  margin: clamp(1.25rem, 3.5vw, 1.75rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 78ch;
}

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

.yours-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.55;
  color: var(--ink);
}

.yours-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--go);
}

.yours-list strong {
  font-weight: 650;
}

/* ==========================================================================
   Ask us helper — Phase L3 (2026-07-27)
   Grounded lookup, no model call. Same component we sell in Starter.
   ========================================================================== */

.ask-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.25rem, 3.5vw, 1.75rem);
  margin-top: clamp(1.25rem, 3.5vw, 1.75rem);
}

.ask-head h2 {
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  margin: 0 0 0.5rem;
}

.ask-head p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.ask-log {
  display: grid;
  gap: 0.6rem;
  max-height: 320px;
  overflow-y: auto;
  padding: 0.15rem;
  margin-bottom: 0.9rem;
}

.ask-msg {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  line-height: 1.55;
  font-size: 0.99rem;
  max-width: 92%;
}

.ask-msg-bot {
  background: var(--bg);
  border: 1px solid var(--line);
  justify-self: start;
}

.ask-msg-you {
  background: var(--go);
  color: var(--white);
  justify-self: end;
}

.ask-out {
  justify-self: start;
  font-weight: 650;
  color: var(--go);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.ask-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.ask-chip {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--go);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  min-height: 44px;
  cursor: pointer;
}

.ask-chip:hover,
.ask-chip:focus-visible {
  border-color: var(--go);
  background: rgba(15, 107, 76, 0.06);
}

.ask-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.ask-form input {
  flex: 1 1 12rem;
  font-family: var(--font-body);
  /* 16px so iOS does not zoom the page when the keyboard opens. */
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  min-height: 44px;
}

.ask-form input:focus-visible {
  outline: 2px solid var(--go);
  outline-offset: 1px;
  border-color: var(--go);
}

.ask-tease {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

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