/* ============================================================
   Growth Connectors marketing site
   Brand: Linen canvas · Burnt Peach action · Fern + Stormy Teal
   accents · Warm Dark text · Fraunces (display) + Inter (body)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --linen:       #F9EDE1;
  --linen-deep:  #F3E5D4;
  --warm:        #E8DAC4;
  --card:        #FDF8F0;
  --ink:         #1F1A15;
  --ink-soft:    rgba(31, 26, 21, 0.78);
  --ink-faint:   rgba(31, 26, 21, 0.58);
  --peach:       #C97A5C;
  --peach-700:   #B3624A;
  --fern:        #4F6B3D;
  --teal:        #2F6E78;
  --line:        rgba(31, 26, 21, 0.13);
  --line-strong: rgba(31, 26, 21, 0.28);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1140px;
  --radius: 14px;
  --header-h: 78px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

::selection { background: var(--peach); color: var(--linen); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

.visually-hidden {
  position: absolute; 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: 0.6rem; left: 50%;
  transform: translate(-50%, -160%);
  background: var(--ink); color: var(--linen);
  padding: 0.6rem 1.1rem; border-radius: 7px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  z-index: 200; transition: transform 0.2s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.4rem);
}

.section { padding-block: clamp(3.6rem, 8vw, 7rem); }
.section--deep { background: var(--linen-deep); }

.section-head { max-width: 680px; }
.section-head .lead { margin-top: 1rem; }

.lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  color: var(--ink-soft);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--peach);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.92em 1.55em;
  border-radius: 8px;
  border: 1.6px solid transparent;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease,
              transform 0.18s ease, color 0.18s ease;
}
.btn--primary {
  background: var(--peach);
  border-color: var(--peach);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--peach-700);
  border-color: var(--peach-700);
  color: var(--linen);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(31, 26, 21, 0.04);
  transform: translateY(-2px);
}
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--linen);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--teal);
  box-shadow: 0 8px 26px -20px rgba(31, 26, 21, 0.6);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding-block: 0.7rem;
}
.brand { margin-right: auto; display: inline-flex; }
.brand__logo { height: 44px; width: auto; }

.primary-nav { display: flex; gap: 1.9rem; }
.primary-nav a {
  font-size: 0.96rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding-block: 0.3rem;
  transition: color 0.16s ease;
}
.primary-nav a:hover { color: var(--peach-700); }

.site-header__cta { padding-block: 0.72em; }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1.5px solid var(--line-strong);
  border-radius: 9px;
}
.nav-toggle__box { position: relative; width: 22px; height: 16px; }
.nav-toggle__bar {
  position: absolute; left: 0; right: 0;
  height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.18s ease;
}
.nav-toggle__bar:nth-child(1) { top: 0; }
.nav-toggle__bar:nth-child(2) { top: 7px; }
.nav-toggle__bar:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: var(--linen);
  border-top: 1.5px solid var(--line);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 0.6rem clamp(1.2rem, 4vw, 2.4rem) 1.7rem;
}
.mobile-menu__nav a:not(.btn) {
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu__nav .btn { margin-top: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(2.4rem, 5vw, 4.2rem);
  padding-bottom: clamp(3.4rem, 8vw, 6.4rem);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.5rem, 1.5rem + 3.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
}
.hero__lead {
  margin-top: 1.25rem;
  max-width: 32rem;
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
  color: var(--ink-soft);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}
.hero__note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.7rem;
  font-size: 0.92rem;
  color: var(--ink-faint);
}
.hero__note .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--peach);
  flex: none;
}
.hero__art { display: flex; justify-content: center; }
.constellation { width: 100%; max-width: 470px; height: auto; }
.constellation__lines line {
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.24;
}
.constellation__nodes circle {
  fill: var(--ink);
  transform-box: fill-box;
  transform-origin: center;
}
.constellation__nodes circle.is-active {
  fill: var(--peach);
  animation: nodePulse 3.6s ease-in-out infinite;
}
.constellation__nodes circle:nth-child(8) { animation-delay: -1.8s; }
@keyframes nodePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.14); }
}

/* ---------- Cards (shared) ---------- */
.cards {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: clamp(2.4rem, 5vw, 3.4rem) 0 0;
  padding: 0;
}
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: rgba(201, 122, 92, 0.55);
  transform: translateY(-3px);
}
.card__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 11px;
  background: rgba(201, 122, 92, 0.13);
  color: var(--peach-700);
  margin-bottom: 1.15rem;
}
.card__icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card__title {
  font-size: 1.22rem;
  margin-bottom: 0.5rem;
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.card--pillar .card__icon {
  background: rgba(79, 107, 61, 0.14);
  color: var(--fern);
}

/* ---------- How it works (steps) ---------- */
.steps {
  --steps-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--steps-gap);
  list-style: none;
  margin: clamp(2.6rem, 5vw, 3.6rem) 0 0;
  padding: 0;
}
.step { position: relative; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px; left: 30px;
  width: calc(100% - 30px + var(--steps-gap));
  height: 2px;
  background: var(--line-strong);
}
.step__node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--linen);
  margin-bottom: 1.35rem;
}
.step__node span {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}
.step__node--accent { background: var(--peach); }
.step__title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.99rem;
  max-width: 34ch;
}

/* ---------- Who it's for ---------- */
.tag {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.34em 0.7em;
  border-radius: 100px;
  background: rgba(31, 26, 21, 0.07);
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.tag--peach {
  background: rgba(201, 122, 92, 0.16);
  border-color: rgba(201, 122, 92, 0.55);
}
.tag--fern {
  background: rgba(79, 107, 61, 0.15);
  border-color: rgba(79, 107, 61, 0.5);
}
.who__not {
  margin: 2rem 0 0;
  padding: 1.1rem 1.4rem;
  border: 1.5px dashed var(--line-strong);
  border-radius: 11px;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.who__not strong { color: var(--ink); }

/* ---------- Story ---------- */
.story__panel {
  max-width: 760px;
  margin-inline: auto;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.9rem, 5vw, 3.4rem);
}
.story__panel h2 {
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.7rem);
  letter-spacing: -0.01em;
}
.story__body { margin-top: 1.3rem; }
.story__body p { margin-top: 0.95rem; color: var(--ink-soft); }
.story__body p:first-child { margin-top: 0; }
.story__quote {
  margin: 1.9rem 0 0.7rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--peach);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1rem + 1.4vw, 1.7rem);
  line-height: 1.4;
}
.story__sign {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-faint);
}

/* ---------- Demo / CTA ---------- */
.demo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.demo__headline {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.demo__intro .lead { margin-top: 1.1rem; }
.demo__checks {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.demo__checks li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.99rem;
  color: var(--ink-soft);
}
.demo__checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.1em;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--fern);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7.2 6 10.2 11 4.2' fill='none' stroke='%23F9EDE1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.demo__email {
  margin-top: 1.6rem;
  font-size: 0.97rem;
  color: var(--ink-faint);
}
.demo__email + .demo__email { margin-top: 0.5rem; }
.demo__email a {
  color: var(--fern);
  font-weight: 600;
  text-underline-offset: 3px;
}

.demo__formwrap {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

/* ---------- Form ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.optional {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--linen);
  border: 1.5px solid var(--line-strong);
  border-radius: 9px;
  padding: 0.72rem 0.9rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field textarea { resize: vertical; min-height: 84px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.6 6 6.4 11 1.6' fill='none' stroke='%231F1A15' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 12px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 110, 120, 0.16);
}
.field input:user-invalid,
.field select:user-invalid {
  border-color: var(--peach-700);
}
.form-fineprint {
  margin: 0.95rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.form-success { text-align: center; padding: 1.4rem 0.5rem; }
.form-success__mark {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--fern);
}
.form-success__mark svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: var(--linen);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.form-success p { color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--linen);
  border-top: 1.5px solid var(--teal);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-top: clamp(3rem, 6vw, 4.6rem);
  padding-bottom: 2.6rem;
}
.site-footer__logo { height: 52px; width: auto; margin-bottom: 1rem; }
.site-footer__tag {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 22ch;
}
.site-footer__heading {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-faint);
  margin: 0 0 1rem;
}
.site-footer__nav,
.site-footer__contact { display: flex; flex-direction: column; }
.site-footer__nav a,
.site-footer__contact a {
  font-size: 0.96rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: 0.35rem;
  transition: color 0.16s ease;
  width: max-content;
}
.site-footer__nav a:hover,
.site-footer__contact a:hover { color: var(--peach-700); }
.site-footer__social {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.7rem;
}
.site-footer__social a {
  font-weight: 600;
  color: var(--fern);
}
.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-block: 1.5rem;
  border-top: 1.5px solid var(--line);
}
.site-footer__legal {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* Connector flourish (brand motif) */
.flourish { display: inline-flex; align-items: center; }
.flourish__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ink);
}
.flourish__dot--peach { background: var(--peach); }
.flourish__line {
  width: 24px; height: 2px;
  background: var(--ink);
  opacity: 0.45;
}

/* ---------- Reveal on scroll ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.cards .reveal:nth-child(2),
.steps .reveal:nth-child(2) { transition-delay: 0.09s; }
.cards .reveal:nth-child(3),
.steps .reveal:nth-child(3) { transition-delay: 0.18s; }
.cards .reveal:nth-child(4) { transition-delay: 0.27s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .primary-nav,
  .site-header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (min-width: 961px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .constellation { max-width: 360px; }
  .hero__lead { max-width: 100%; }
  .cards--3 { grid-template-columns: 1fr; }
  .demo__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
    --steps-gap: 1.8rem;
  }
  .step:not(:last-child)::after { display: none; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 560px) {
  .cards--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer__bar { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { flex: 1 1 auto; }
}

/* ============================================================
   Section headings + multi-page components
   ============================================================ */

/* Section heading size (applies to every .section-head h2) */
.section-head h2 {
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
}

/* Active nav state */
.primary-nav a[aria-current="page"] { color: var(--peach-700); }
.primary-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 3px;
  background: var(--peach);
  border-radius: 2px;
}
.mobile-menu__nav a[aria-current="page"]:not(.btn) { color: var(--peach-700); }

/* Page header (subpage hero) */
.page-header {
  padding-top: clamp(2.6rem, 5vw, 4.6rem);
  padding-bottom: clamp(1.6rem, 3vw, 2.6rem);
}
.page-header + .section { padding-top: clamp(1.4rem, 3vw, 2.6rem); }
.page-header__title {
  max-width: 20ch;
  font-size: clamp(2.3rem, 1.5rem + 2.8vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
}
.page-header__lead {
  margin-top: 1.15rem;
  max-width: 48ch;
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.25rem);
  color: var(--ink-soft);
}

/* Prose paragraph */
.prose {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Home: section previews */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
}
.preview-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.preview-card:hover {
  border-color: rgba(201, 122, 92, 0.55);
  transform: translateY(-3px);
}
.preview-card__kicker {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--peach-700);
}
.preview-card__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.6rem);
}
.preview-card__title + p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}
.preview-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.preview-card__more .arrow { transition: transform 0.18s ease; }
.preview-card:hover .preview-card__more { color: var(--peach-700); }
.preview-card:hover .preview-card__more .arrow { transform: translateX(4px); }

/* CTA band */
.cta-band__panel {
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1.4rem, 4vw, 3rem);
  text-align: center;
  background: var(--linen-deep);
  border: 1.5px solid var(--line);
  border-radius: 20px;
}
.cta-band__panel .flourish { margin-bottom: 1.4rem; }
.cta-band__title {
  font-size: clamp(1.9rem, 1.4rem + 2.1vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.014em;
}
.cta-band__text {
  max-width: 46ch;
  margin: 0.9rem auto 1.9rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* 2-up cards + exclusion cards */
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card--exclude {
  background: transparent;
  border-style: dashed;
  border-color: var(--line-strong);
}
.card--exclude:hover {
  border-color: var(--line-strong);
  transform: none;
}

/* Feature chips */
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: clamp(2rem, 4vw, 2.8rem) 0 0;
  padding: 0;
  list-style: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1.15rem;
  background: var(--card);
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  font-size: 0.97rem;
  font-weight: 500;
}
.chip__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--peach);
  flex: none;
}

/* Demo page headings */
.demo__intro h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.95rem);
}
.demo__formtitle {
  margin-bottom: 1.3rem;
  font-size: 1.3rem;
}

/* Multi-page responsive */
@media (max-width: 880px) {
  .preview-grid { grid-template-columns: 1fr; }
  .cards--2 { grid-template-columns: 1fr; }
}

/* ============================================================
   App phone mockup, a faithful rebuild of the platform Feed
   ============================================================ */
/* Cropped to the top of the phone: the feed shows, the bottom nav does
   not. The device fades out before its lower edge. */
.device {
  position: relative;
  width: 280px;
  height: 430px;
  overflow: hidden;
  flex: none;
  background: var(--ink);
  border-radius: 42px;
  padding: 10px;
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
}
.device::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 19px;
  background: var(--ink);
  border-radius: 11px;
  z-index: 3;
}
.device__screen {
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: var(--linen);
  display: flex;
  flex-direction: column;
}
.app {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: var(--font-body);
}
.app svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* status bar */
.app__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
}
.app__status-dots { display: flex; gap: 3px; }
.app__status-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

/* app header */
.app__header {
  text-align: center;
  padding: 12px 12px 13px;
  border-bottom: 1px solid var(--warm);
}
.app__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.app__subtitle {
  font-size: 8.5px;
  color: var(--ink-faint);
  margin-top: 1px;
}

/* feed */
.app__feed {
  flex: 1;
  overflow: hidden;
  padding: 12px 12px 0;
}

/* a recap card */
.app-post {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}
.app-post__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px 7px;
}
.app-post__avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--warm);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  flex: none;
}
.app-post__who { line-height: 1.25; }
.app-post__author { font-size: 11.5px; font-weight: 600; color: var(--ink); }
.app-post__school { font-size: 9px; color: var(--ink-faint); }
.app-post__date { margin-left: auto; font-size: 9px; color: var(--ink-faint); }

.app-post__media {
  position: relative;
  height: 156px;
}
.app-post__media--a { background: linear-gradient(150deg, #E5A084, #C97A5C 58%, #AC6147); }
.app-post__media--b { background: linear-gradient(150deg, #EFE3CF, #E8DAC4 52%, #D6C2A2); }
.app-post__dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.app-post__dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.app-post__dots span.is-on { background: #fff; width: 8px; }

.app-post__body { padding: 9px 11px 8px; }
.app-post__event {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.app-post__caption {
  font-size: 9.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-top: 3px;
}
.app-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 11px;
  margin-top: 7px;
}
.app-post__metaitem {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 8.5px;
  color: var(--ink-faint);
}
.app-post__metaitem svg {
  width: 11px; height: 11px;
  stroke: var(--peach);
  stroke-width: 2;
}
.app-post__props {
  border-top: 1px solid var(--line);
  padding: 6px 9px;
}
.app-post__propbtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--peach);
}
.app-post__propbtn svg { width: 15px; height: 15px; }
.app-post__propcount { color: var(--ink-faint); }

/* bottom nav */
.app__nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 8px 14px;
  border-top: 1px solid var(--warm);
}
.app__navitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ink-faint);
}
.app__navitem svg { width: 22px; height: 22px; }
.app__navitem span { font-size: 7.5px; font-weight: 500; }
.app__navitem--active { color: var(--peach); }
.app__navplus {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--peach);
  display: grid;
  place-items: center;
  margin-top: -16px;
  box-shadow: 0 7px 15px -4px rgba(201, 122, 92, 0.7);
}
.app__navplus svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2.4; }

/* ============================================================
   App showcase section (platform page) + feature list
   ============================================================ */
.app-showcase__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.app-showcase__art { display: flex; justify-content: center; }
.app-showcase__caption {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-faint);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.2rem;
  list-style: none;
  margin: clamp(2.2rem, 4vw, 3rem) 0 0;
  padding: 0;
}
.feature {
  display: flex;
  gap: 0.75rem;
}
.feature__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--peach);
  margin-top: 0.45rem;
  flex: none;
}
.feature__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.feature__desc {
  margin-top: 0.15rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .app-showcase__inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .feature-list { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: clamp(2rem, 4vw, 2.8rem) 0 0;
  border-top: 1px solid var(--line);
}
.faq { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 0.25rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.16s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--peach-700); }
.faq__q::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-right: 2px solid var(--peach);
  border-bottom: 2px solid var(--peach);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.22s ease;
}
.faq[open] .faq__q::after { transform: translateY(2px) rotate(-135deg); }
.faq__a {
  display: none;
  padding: 0 0.25rem 1.35rem;
  font-size: 0.99rem;
  color: var(--ink-soft);
}
.faq[open] .faq__a { display: block; }

/* ============================================================
   Privacy policy page
   ============================================================ */
.policy__updated {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
}
.policy { max-width: 720px; }
.policy h2 {
  font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
  margin: 2.3rem 0 0.7rem;
}
.policy h2:first-child { margin-top: 0; }
.policy__lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.policy__list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}
.policy__list li {
  margin-top: 0.45rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.policy a {
  color: var(--fern);
  font-weight: 600;
  text-underline-offset: 3px;
}

/* ============================================================
   404 page
   ============================================================ */
.notfound { text-align: center; }
.notfound__inner {
  max-width: 520px;
  margin-inline: auto;
}
.notfound .flourish { margin-bottom: 1.6rem; }
.notfound__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.notfound__text {
  margin: 1rem 0 1.9rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* Stacked copy lines, each statement on its own line, no periods.
   .cl = one copy line. */
.cl {
  display: block;
  line-height: 1.4;
}
.cl + .cl { margin-top: 0.55em; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
