/* ============================================================
   SEATFLOW STUDIOS — v3-studio
   Palette: Deep Ink (#0F0F0D) + Warm Paper (#F5F0E8) + Coral Accent (#E85A38)
   Fonts: Fraunces (display/editorial) + DM Sans (body/UI)
============================================================ */

/* ---- RESET & BASE ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink:       #0F0F0D;
  --ink-soft:  #2E2D28;
  --mid:       #6B6860;
  --rule:      #D8D2C6;
  --paper:     #F5F0E8;
  --paper-alt: #EDE7DA;
  --white:     #FFFFFF;
  --coral:     #E85A38;
  --coral-dk:  #C94520;
  --amber:     #F0A830;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;

  --max-w: 1140px;
  --pad-x: clamp(1.25rem, 5vw, 4rem);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* ---- TYPOGRAPHY ------------------------------------------ */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 700;
}

em {
  font-style: italic;
  font-family: var(--font-display);
}

strong {
  font-weight: 600;
}

/* ---- LAYOUT HELPERS -------------------------------------- */

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding-top: clamp(4rem, 10vw, 9rem);
  padding-bottom: clamp(4rem, 10vw, 9rem);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.85em 1.6em;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(232, 90, 56, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--coral-dk);
  box-shadow: 0 4px 20px rgba(232, 90, 56, 0.38);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn-large {
  font-size: 1.125rem;
  padding: 1em 2em;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}

.btn:hover .btn-arrow,
.btn:focus-visible .btn-arrow {
  transform: translateX(3px);
}

:focus-visible {
  outline: 2.5px solid var(--coral);
  outline-offset: 3px;
}

/* ---- SITE HEADER / NAV ----------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  border: 1.5px solid var(--coral);
  padding: 0.45em 1em;
  border-radius: var(--radius);
  transition: background 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--coral);
  color: var(--white);
}

/* ---- HERO ------------------------------------------------- */

.hero {
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 10vw, 8rem);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: clamp(260px, 45vw, 560px);
  height: clamp(260px, 45vw, 560px);
  background: radial-gradient(circle, rgba(232, 90, 56, 0.10) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.hero-text {
  min-width: 0;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--coral);
  margin-bottom: 0.55rem;
}

.hero h1 {
  margin-bottom: 1.35rem;
  color: var(--ink);
}

.hero h1 em {
  color: var(--coral);
  font-style: italic;
}

.br-lg {
  display: none;
}

@media (min-width: 900px) {
  .br-lg { display: block; }
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 1rem;
}

.hero-plain {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--mid);
  max-width: 55ch;
  margin-bottom: 2.25rem;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* Hero aside cards */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hero-card {
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  text-align: center;
  min-width: 90px;
}

.hero-card.accent {
  background: var(--coral);
  border-color: var(--coral);
}

.hero-card.accent .card-stat,
.hero-card.accent .card-label {
  color: var(--white);
}

.card-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}

.card-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--mid);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

/* Hero scroll hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(2.5rem, 6vw, 5rem);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--rule);
  display: block;
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ---- WHO IT'S FOR ---------------------------------------- */

.who {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.who .section-label {
  color: var(--coral);
}

.who h2 {
  color: var(--paper);
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245, 240, 232, 0.72);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 50ch;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(245, 240, 232, 0.9);
}

.who-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.42em;
}

/* Big decorative pull text */
.who-pull {
  position: absolute;
  right: var(--pad-x);
  bottom: 2rem;
  pointer-events: none;
  user-select: none;
}

.pull-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: rgba(245, 240, 232, 0.05);
  letter-spacing: -0.03em;
  text-align: right;
}

.pull-text em {
  color: rgba(232, 90, 56, 0.14);
  font-style: italic;
}

/* ---- PROBLEM --------------------------------------------- */

.problem {
  background: var(--paper);
}

.problem h2 {
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.problem-body {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.7;
}

/* ---- WHAT SEATFLOW DOES ---------------------------------- */

.what {
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.what h2 {
  margin-bottom: 1rem;
}

.what-intro {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.what-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--ink-soft);
}

.what-item:last-child {
  border-bottom: none;
}

.what-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  opacity: 0.55;
}

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

/* ---- PROOF ----------------------------------------------- */

.proof {
  background: var(--paper);
}

.proof h2 {
  margin-bottom: 1.5rem;
}

.proof h2 em {
  color: var(--coral);
}

.proof-body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 1rem;
}

.proof-honest {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--mid);
  max-width: 55ch;
  margin-bottom: 2.5rem;
}

/* Proof callout (paraphrased insight, not an attributed quote) */
.proof-callout {
  background: var(--ink);
  color: var(--paper);
  border-left: 5px solid var(--coral);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.75rem 2rem;
  margin: 0 0 2.25rem 0;
  max-width: 60ch;
}

.proof-callout p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--paper);
}

/* Proof link */
.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.16s ease, gap 0.16s ease;
}

.proof-link:hover,
.proof-link:focus-visible {
  text-decoration-color: var(--coral);
}

.proof-link:hover .link-arrow,
.proof-link:focus-visible .link-arrow {
  transform: translateX(4px);
}

.link-arrow {
  display: inline-block;
  transition: transform 0.16s ease;
}

/* ---- SPRINT ---------------------------------------------- */

.sprint {
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
}

.sprint h2 {
  margin-bottom: 0.6rem;
}

.sprint-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.sprint-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 48ch;
  margin-bottom: 2rem;
}

.sprint-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--ink-soft);
  padding-left: 1.25rem;
  position: relative;
}

.sprint-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

.sprint-list li:last-child {
  border-bottom: none;
}

.sprint-note {
  font-size: 0.88rem;
  color: var(--mid);
  font-style: italic;
}

/* ---- FINAL CTA ------------------------------------------- */

.cta-section {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  border-top: 4px solid var(--coral);
}

.cta-section .section-label {
  justify-content: center;
  display: flex;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section h2 {
  color: var(--paper);
  margin-bottom: 1.1rem;
  max-width: 16ch;
  text-align: center;
}

.cta-body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245, 240, 232, 0.75);
  max-width: 50ch;
  margin-bottom: 2.25rem;
  text-align: center;
}

.cta-aside {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.42);
  font-style: italic;
}

/* ---- FOOTER ---------------------------------------------- */

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding: 2.25rem var(--pad-x);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.45);
  flex: 1 1 200px;
}

.footer-email a {
  font-size: 0.82rem;
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
}

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

/* ---- SCROLL REVEAL ANIMATION ----------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ---- RESPONSIVE ------------------------------------------ */

/* Tablet: hide hero aside cards */
@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .hero-card {
    flex: 1 1 80px;
    min-width: 80px;
  }

  .who-pull {
    display: none;
  }
}

/* Mobile */
@media (max-width: 520px) {
  :root {
    --pad-x: 1.1rem;
  }

  .hero-aside {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-scroll-hint {
    display: none;
  }

  .pull-quote {
    padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* Very small (320px) safety net */
@media (max-width: 360px) {
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

/* ---- VISUAL PROOF FIGURES (audit overlay + before/after) ---- */

.visual-figure {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
}

.visual-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: 0 30px 60px -24px rgba(15, 15, 13, 0.40), 0 12px 24px -16px rgba(15, 15, 13, 0.22);
}

.visual-cap {
  margin-top: 1.1rem;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.55;
  color: var(--mid);
  max-width: 66ch;
}

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

/* Value strip under the before/after proof */
.value-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.75rem;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}

.value-strip li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.value-strip strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--ink);
  line-height: 1.2;
}

.value-strip span {
  font-size: 0.85rem;
  color: var(--mid);
}

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

/* ---- NATIVE AUDIT MOCK + TRAVELLING NODES + RADAR PING ---- */

.audit-vis {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 820px) {
  .audit-vis { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Browser frame */
.browser-mock {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: 0 30px 60px -24px rgba(15, 15, 13, 0.40), 0 12px 24px -16px rgba(15, 15, 13, 0.22);
}

.browser-mock.floaty { animation: mockFloat 8s ease-in-out infinite; }
@keyframes mockFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.bm-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px; background: #f0ece4;
  border-radius: 11px 11px 0 0; border-bottom: 1px solid var(--rule);
}
.bm-bar i { width: 9px; height: 9px; border-radius: 50%; background: #cfc8bb; }
.bm-bar i:nth-child(1) { background: #e6766a; }
.bm-bar i:nth-child(2) { background: #e7c15f; }
.bm-bar i:nth-child(3) { background: #9ec98a; }
.bm-url { flex: 1; height: 14px; margin-left: 8px; border-radius: 7px; background: #fff; border: 1px solid var(--rule); }

.audit-screen {
  padding: clamp(0.9rem, 2vw, 1.4rem);
  color: #3a382f;
  font-size: clamp(0.62rem, 1.15vw, 0.78rem);
  line-height: 1.5;
  border-radius: 0 0 11px 11px;
}

.as-nav { display: flex; align-items: center; gap: 0.75rem; padding-bottom: 0.85rem; border-bottom: 1px solid #efeae1; }
.as-logo { width: 34px; height: 18px; border-radius: 4px; background: #ddd6c9; }
.as-links { display: flex; gap: 0.7rem; flex: 1; color: #8a8475; font-size: 0.92em; }
.as-contact { background: #23211c; color: #fff; padding: 0.35em 0.7em; border-radius: 5px; font-size: 0.9em; }

.as-hero { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1rem; padding: 1rem 0; align-items: center; }
.as-title { font-family: var(--font-display); font-size: clamp(1rem, 2.4vw, 1.5rem); line-height: 1.1; color: #26241f; margin-bottom: 0.4rem; }
.as-sub { color: #8a8475; margin-bottom: 0.85rem; max-width: 32ch; }
.as-meta { display: flex; gap: 1.1rem; }
.as-meta-i { display: inline-flex; flex-direction: column; line-height: 1.15; color: #8a8475; }
.as-meta-i b { color: #3a382f; font-size: 1.05em; }
.as-meta-i small { font-size: 0.85em; }
.as-hero-img { aspect-ratio: 16 / 10; background: #e9e3d8; border-radius: 6px; }

.as-fee { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 0.9rem 0; border-top: 1px solid #efeae1; border-bottom: 1px solid #efeae1; }
.as-fee-price { display: flex; flex-direction: column; }
.as-fee-l { color: #8a8475; font-size: 0.85em; }
.as-fee-amt b { font-family: var(--font-display); font-size: 1.5em; color: #26241f; }
.as-gst { color: #8a8475; font-size: 0.8em; }
.as-incl { list-style: none; display: flex; flex-direction: column; gap: 0.22rem; color: #6f6a5d; }
.as-incl li::before { content: '✓'; color: #bdb7a8; margin-right: 5px; }
.as-cart { background: #23211c; color: #fff; padding: 0.65em 1.15em; border-radius: 6px; font-weight: 600; white-space: nowrap; align-self: center; }

.as-trust { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 0.9rem 0; }
.as-avatar { width: 36px; height: 36px; border-radius: 50%; background: #ddd6c9; }
.as-rev { display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-start; }
.as-line { width: 120px; height: 7px; border-radius: 4px; background: #e4ded3; }
.as-line.short { width: 80px; }
.as-stars { color: #cfc8bb; letter-spacing: 2px; }
.as-stats { display: flex; gap: 0.9rem; color: #8a8475; }
.as-stats span { display: flex; flex-direction: column; line-height: 1.15; }
.as-stats b { color: #3a382f; }

.as-seats { display: flex; align-items: center; gap: 1rem; padding-top: 0.9rem; border-top: 1px solid #efeae1; }
.as-seats-l { white-space: nowrap; color: #6f6a5d; }
.as-seats-l b { color: #26241f; }
.as-progress { position: relative; flex: 1; height: 9px; border-radius: 6px; background: #e4ded3; }
.as-fill { position: absolute; inset: 0 60% 0 0; background: #bcb4a3; border-radius: 6px; }

/* Nodes: travel into place, then ping */
.has-node { position: relative; }
.node {
  position: absolute; top: -11px; right: -11px;
  width: clamp(19px, 2.2vw, 24px); height: clamp(19px, 2.2vw, 24px);
  border-radius: 50%;
  background: var(--coral); color: #fff;
  display: grid; place-items: center;
  font: 700 0.7rem/1 var(--font-body);
  box-shadow: 0 4px 12px rgba(232, 90, 56, 0.5);
  z-index: 5;
  opacity: 0; transform: translate(16px, -14px) scale(0.4);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Node 4 sits on the dark CTA button — anchor inward so its ping isn't clipped */
.as-cart .node { top: -10px; right: auto; left: -10px; }

.in-view .node { opacity: 1; transform: translate(0, 0) scale(1); }
.node.n1 { transition-delay: 0.15s; }
.node.n2 { transition-delay: 0.40s; }
.node.n3 { transition-delay: 0.65s; }
.node.n4 { transition-delay: 0.90s; }
.node.n5 { transition-delay: 1.15s; }
.node.n6 { transition-delay: 1.40s; }

.node::after {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid var(--coral); opacity: 0; transform: scale(0.7);
  pointer-events: none;
}
.in-view .node.n1::after { animation: radar 1.5s ease-out 0.65s 2; }
.in-view .node.n2::after { animation: radar 1.5s ease-out 0.90s 2; }
.in-view .node.n3::after { animation: radar 1.5s ease-out 1.15s 2; }
.in-view .node.n4::after { animation: radar 1.5s ease-out 1.40s 2; }
.in-view .node.n5::after { animation: radar 1.5s ease-out 1.65s 2; }
.in-view .node.n6::after { animation: radar 1.5s ease-out 1.90s 2; }
@keyframes radar {
  0% { opacity: 0.85; transform: scale(0.7); }
  70% { opacity: 0; }
  100% { opacity: 0; transform: scale(2.3); }
}

/* Legend */
.audit-legend { list-style: none; display: flex; flex-direction: column; gap: 1.05rem; }
.audit-legend li { display: flex; gap: 0.8rem; align-items: flex-start; }
.lg-num {
  flex-shrink: 0; width: 1.7rem; height: 1.7rem; border-radius: 50%;
  background: rgba(232, 90, 56, 0.12); color: var(--coral);
  display: grid; place-items: center; font-weight: 700; font-size: 0.85rem;
}
.audit-legend li > div b { display: block; color: var(--ink); font-size: 0.98rem; }
.audit-legend li > div span { display: block; color: var(--mid); font-size: 0.86rem; margin-top: 1px; }

/* Mock declutter on small screens */
@media (max-width: 520px) {
  .as-hero { grid-template-columns: 1fr; }
  .as-hero-img { display: none; }
  .as-fee { grid-template-columns: 1fr; gap: 0.6rem; }
  .as-cart { justify-self: start; }
  .as-trust { grid-template-columns: auto 1fr; }
  .as-stats, .as-links { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .browser-mock.floaty { animation: none; }
  .node { opacity: 1 !important; transform: none !important; transition: none !important; }
  .node::after { display: none !important; }
}

/* ---- BEFORE / AFTER NATIVE MOCKS ---- */

.ba { margin-top: clamp(2rem, 4vw, 3rem); }

.ba-pair { display: flex; flex-direction: column; gap: clamp(1rem, 2.5vw, 1.75rem); }
.ba-item { margin: 0; }
.ba .browser-mock { animation-duration: 9s; }

.ba-tag {
  display: inline-block;
  font: 600 0.72rem/1 var(--font-body);
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.45em 0.95em; border-radius: 6px; margin-bottom: 0.8rem;
}
.ba-tag-before { background: #e8e2d6; color: #6f6a5d; }
.ba-tag-after { background: var(--coral); color: #fff; }
.ba-arrow { align-self: center; color: var(--coral); font-size: 1.7rem; line-height: 1; }

.bm-screen { border-radius: 0 0 11px 11px; }

/* BEFORE */
.bf-screen { padding: clamp(1rem, 2vw, 1.5rem); color: #46433b; font-size: clamp(0.66rem, 1.05vw, 0.8rem); line-height: 1.5; }
.bf-crumb { color: #9a9486; font-size: 0.85em; margin-bottom: 0.7rem; }
.bf-head { display: grid; grid-template-columns: 1fr 0.44fr; gap: 1.25rem; }
.bf-title { font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.6rem); color: #2a2823; margin-bottom: 0.3rem; }
.bf-stars { color: #d9b94e; font-size: 0.9em; margin-bottom: 0.5rem; }
.bf-stars span { color: #9a9486; margin-left: 4px; }
.bf-price { font-weight: 700; color: #2a2823; font-size: 1.15em; margin-bottom: 0.5rem; }
.bf-desc { color: #7a7567; margin-bottom: 0.8rem; max-width: 42ch; }
.bf-buy { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.55rem; }
.bf-qty { border: 1px solid #d8d2c6; border-radius: 4px; padding: 0.35em 0.7em; color: #7a7567; }
.bf-add { background: #23211c; color: #fff; padding: 0.5em 1em; border-radius: 5px; font-weight: 600; }
.bf-sku { color: #9a9486; font-size: 0.82em; }
.bf-cart { background: #f4f0e8; border: 1px solid #e6e0d4; border-radius: 8px; padding: 0.8rem; align-self: start; }
.bf-cart-h { font-weight: 700; color: #2a2823; margin-bottom: 0.5rem; }
.bf-cart-row { display: flex; justify-content: space-between; gap: 0.5rem; color: #7a7567; font-size: 0.9em; margin-bottom: 0.35rem; }
.bf-cart-sub { color: #2a2823; font-weight: 600; border-top: 1px solid #e6e0d4; padding-top: 0.35rem; }
.bf-cart-btn { display: block; text-align: center; border-radius: 5px; padding: 0.45em; font-weight: 600; font-size: 0.9em; margin-top: 0.4rem; }
.bf-cart-btn.ghost { border: 1px solid #cfc8bb; color: #46433b; }
.bf-cart-btn.dark { background: #23211c; color: #fff; }
.bf-tabs { display: flex; gap: 1rem; border-bottom: 1px solid #ece6db; margin-top: 1rem; color: #9a9486; font-size: 0.9em; }
.bf-tabs span { padding-bottom: 0.45rem; }
.bf-tabs .on { color: #2a2823; font-weight: 700; border-bottom: 2px solid #23211c; }
.bf-list { margin-top: 0.7rem; padding-left: 1.1rem; color: #7a7567; }
.bf-list li { margin-bottom: 0.2rem; }

/* AFTER */
.af-screen { position: relative; padding: clamp(1rem, 2vw, 1.5rem); color: #3a382f; font-size: clamp(0.66rem, 1.05vw, 0.8rem); line-height: 1.5; }
.af-nav { display: flex; align-items: center; gap: 0.8rem; padding-bottom: 0.9rem; border-bottom: 1px solid #efeae1; }
.af-logo { width: 30px; height: 16px; border-radius: 4px; background: var(--coral); }
.af-links { display: flex; gap: 0.7rem; flex: 1; color: #6f6a5d; font-size: 0.92em; }
.af-enquire { background: #23211c; color: #fff; padding: 0.4em 0.9em; border-radius: 5px; font-size: 0.9em; }
.af-body { display: grid; grid-template-columns: 1fr 0.62fr; gap: clamp(1rem, 2.2vw, 1.75rem); padding: 1.1rem 0; }
.af-kicker { color: var(--coral); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82em; margin-bottom: 0.4rem; }
.af-title { font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.9rem); line-height: 1.08; color: #26241f; margin-bottom: 0.5rem; }
.af-desc { color: #7a7567; margin-bottom: 0.9rem; max-width: 40ch; }
.af-meta { display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem; margin-bottom: 1rem; }
.af-meta span { display: flex; flex-direction: column; line-height: 1.2; color: #8a8475; }
.af-meta b { color: #3a382f; }
.af-incl-h { font-weight: 700; color: #26241f; margin-bottom: 0.45rem; }
.af-incl { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; color: #6f6a5d; }
.af-incl li::before { content: '✓'; color: var(--coral); margin-right: 6px; }
.af-card { background: #faf7f1; border: 1px solid #e9e2d5; border-radius: 10px; padding: 1rem 1.1rem; align-self: start; }
.af-card-h { font-weight: 700; color: #26241f; margin-bottom: 0.7rem; }
.af-card-course { display: flex; flex-direction: column; line-height: 1.25; margin-bottom: 0.8rem; padding-bottom: 0.7rem; border-bottom: 1px solid #ece6db; }
.af-card-course b { color: #3a382f; }
.af-card-course small { color: #9a9486; }
.af-row { display: flex; justify-content: space-between; gap: 0.5rem; align-items: center; padding: 0.32rem 0; color: #6f6a5d; }
.af-seatsrow .af-seatsel { border: 1px solid #d8d2c6; border-radius: 5px; padding: 0.15em 0.6em; color: #3a382f; }
.af-disc span:nth-of-type(2) { color: var(--coral); }
.af-total { border-top: 1px solid #ece6db; margin-top: 0.3rem; padding-top: 0.55rem; font-weight: 700; color: #26241f; font-size: 1.05em; }
.af-add { display: block; text-align: center; background: var(--coral); color: #fff; border-radius: 6px; padding: 0.6em; font-weight: 600; margin-top: 0.8rem; }
.af-secure { text-align: center; color: #9a9486; font-size: 0.82em; margin-top: 0.5rem; }
.af-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; border-top: 1px solid #efeae1; padding-top: 0.9rem; }
.af-trust span { display: flex; flex-direction: column; line-height: 1.2; color: #8a8475; }
.af-trust b { color: #3a382f; }
.af-float {
  position: absolute; top: 34%; right: -12px;
  background: var(--coral); color: #fff;
  font-size: 0.72em; font-weight: 600; padding: 0.5em 0.7em;
  border-radius: 6px; box-shadow: 0 6px 16px rgba(232, 90, 56, 0.4);
}

/* Before/after callout legend */
.ba-legend {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1.5rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}
.ba-legend li { display: flex; align-items: center; gap: 0.6rem; }
.ba-legend b { color: var(--ink); font-size: 0.92rem; font-weight: 600; }

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

@media (max-width: 640px) {
  .bf-head { grid-template-columns: 1fr; }
  .af-body { grid-template-columns: 1fr; }
  .af-float { right: 6px; }
}
