/* ============================================
   GALET — Shared Styles
   Preview build. App-aligned visual language.
   Italic Noto Serif display, Manrope body,
   warm cream surface, deep pine primary.
   ============================================ */

:root {
  /* Deep pine — the app's primary, darker than the last pass */
  --primary: #1a4d3f;
  --primary-dark: #123a2f;
  --primary-soft: #2f6957;

  /* Sage / mint — the pill badge colour in the app header */
  --sage: #89a896;
  --mint: #c9dccd;
  --mint-soft: #e0ebdf;

  /* Warm caramel — the eyebrow tag colour throughout the app */
  --warm: #a07a3d;
  --warm-soft: #c49a5c;

  /* Surfaces */
  --surface: #faf7f1;
  --surface-deep: #f1ebdc;
  --surface-card: #ffffff;

  /* Accent — used for CTA buttons on dark sections */
  --accent-soft: var(--mint);

  /* Ink */
  --ink: #1f2420;
  --ink-soft: #4f5854;
  --ink-muted: #6b6560;

  /* Lines */
  --border: #e6dfcd;
  --border-soft: #eee7d6;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;

  --shadow-card: 0 1px 2px rgba(31, 36, 32, 0.04), 0 8px 24px rgba(31, 36, 32, 0.05);
  --shadow-card-hover: 0 4px 12px rgba(31, 36, 32, 0.06), 0 16px 40px rgba(31, 36, 32, 0.08);

  --font-display: "Noto Serif", Georgia, serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-3);
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  color: #fff;
  border: none;
  outline: 2px solid var(--primary-dark);
  outline-offset: 2px;
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
a:focus-visible, .btn:focus-visible, .nav-cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-color: transparent;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headings — italic serif is the signature. The app uses italic Noto Serif
   for every screen title. Non-italic for secondary H2/H3 so the page has
   rhythm instead of everything shouting. */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: var(--space-3);
  font-style: italic;
  font-weight: 500;
}
h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-3);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-2);
  font-weight: 500;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: var(--space-1);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
}

h1 em, h2 em, h3 em { font-style: italic; color: var(--primary); }

p { margin-bottom: var(--space-2); }
p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

a { color: var(--primary); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.15s; }
a:hover { color: var(--primary-dark); border-bottom-color: currentColor; }

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-3); }
.content-narrow { max-width: 720px; margin: 0 auto; }

/* Eyebrow — matches the app's uppercase section headers in warm caramel */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--warm);
  display: inline-block;
  margin-bottom: var(--space-2);
}

/* ===== NAVIGATION ===== */
nav.primary {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.9rem 0;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 var(--space-3);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-3);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 500;
  color: var(--ink);
  display: flex; align-items: center; gap: 0.55rem;
  border: none;
  font-style: italic;
}
.brand:hover { color: var(--ink); border: none; }
.brand-mark {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}
.nav-links { list-style: none; display: flex; gap: 1.6rem; align-items: center; }
.nav-links a {
  color: var(--ink-soft); font-size: 0.94rem; font-weight: 500;
  border: none;
}
.nav-links a:hover { color: var(--primary); border: none; }
.nav-links a.active { color: var(--primary); }
.nav-cta {
  background: var(--primary); color: var(--surface) !important;
  padding: 0.65rem 1.3rem; border-radius: 100px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--primary-dark); color: var(--surface) !important; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(250, 247, 241, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    padding: var(--space-3);
    gap: 0;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 24px rgba(31, 36, 32, 0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.5rem 0; }
  .nav-links li:last-child { margin-top: var(--space-1); }
  nav.primary { position: sticky; }
  .nav-inner { position: relative; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 1.7rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s, transform 0.15s;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; border: none; }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-ghost:hover {
  background: var(--mint-soft);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-arrow::after { content: " →"; margin-left: 0.15rem; }

/* ===== PILLS / BADGES (match the "Strong", "Moderate" pills in the app) ===== */
.pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--mint);
  color: var(--primary-dark);
}
.pill-warm { background: rgba(196, 154, 92, 0.2); color: var(--warm); }

/* ===== HERO ===== */
.hero { padding: var(--space-6) 0 var(--space-5); }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: var(--space-5); align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-ctas { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-3); }
.hero-trust {
  margin-top: var(--space-3);
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--ink-soft); font-size: 0.88rem;
}

/* ===== PHONE MOCKUP ===== */
.phone {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9 / 19.5;
  background: #1a1a1a;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.08),
    0 24px 64px rgba(31, 36, 32, 0.18),
    0 48px 120px rgba(31, 36, 32, 0.12);
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #1a1a1a;
  border-radius: 20px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: var(--surface);
  overflow: hidden;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* (phone-mock CSS removed — real screenshots in use) */

/* ===== SECTIONS ===== */
section { padding: var(--space-6) 0; }
section.tight { padding: var(--space-5) 0; }
section.contrast { background: var(--surface-deep); }
section.deep { background: var(--primary); color: #fff; }
section.deep h1, section.deep h2, section.deep h3, section.deep h4 { color: #fff; }
section.deep p { color: rgba(255, 255, 255, 0.85); }
section.deep em { color: var(--mint); }
section.deep .eyebrow { color: var(--warm-soft); }
section.deep a { color: var(--mint); }
section.deep strong { color: #fff; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--space-5); }
.section-header p { font-size: 1.1rem; margin-top: var(--space-2); }

/* ===== CARDS ===== */
.card-grid {
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.card a.card-link { display: block; color: inherit; border: none; }
.card a.card-link:hover { border: none; }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--mint-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
  font-size: 1.3rem;
}
.card .read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-top: var(--space-2); display: inline-block; }

/* ===== PILLARS (3-up feature tiles) ===== */
.pillars {
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: var(--space-4) 0;
}
.pillar {
  padding: var(--space-4) var(--space-3);
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.pillar-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--mint-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 { margin-bottom: 0.4rem; font-family: var(--font-display); }

/* ===== LOOP / GENTLE OBSERVATION ===== */
.gentle-loop {
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: var(--space-4) 0;
}
.gentle-node {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
}
.gentle-node-num {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm); margin-bottom: 0.4rem;
}

/* ===== TWO-COL LIST (what Galet is / isn't) ===== */
.contrast-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-4); align-items: start;
}
@media (max-width: 760px) { .contrast-two-col { grid-template-columns: 1fr; } }
.list-clean { list-style: none; padding: 0; }
.list-clean li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-soft);
  color: var(--ink-soft);
}
.list-clean li:first-child { border-top: none; }

/* ===== TEAM ===== */
.team-grid {
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.team-card {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: var(--space-3);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.team-photo {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem; font-style: italic;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-2);
  font-weight: 500;
}
.team-name { font-weight: 600; color: var(--ink); font-size: 1rem; }
.team-name-anon { color: var(--ink-muted); font-style: italic; }
.team-creds { font-size: 0.72rem; color: var(--warm); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin: 0.3rem 0; }
.team-role { font-size: 0.9rem; color: var(--ink-muted); }

/* ===== FOOTER ===== */
footer {
  padding: var(--space-5) 0 var(--space-4);
  background: var(--surface-deep);
  margin-top: var(--space-6);
}
.footer-grid {
  display: grid; gap: var(--space-4);
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: var(--space-1); font-style: italic; color: var(--ink); }
.footer-tagline { font-size: 0.9rem; color: var(--ink-muted); max-width: 320px; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm); margin-bottom: var(--space-2);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--ink-soft); font-size: 0.92rem; border: none; }
.footer-col a:hover { color: var(--primary); border: none; }
.footer-bottom {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: var(--space-2);
  font-size: 0.82rem; color: var(--ink-muted);
  flex-wrap: wrap;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 0.82rem; color: var(--ink-muted);
  margin-bottom: var(--space-3);
}
.breadcrumb a { color: var(--ink-muted); border: none; }
.breadcrumb a:hover { color: var(--primary); border: none; }
.breadcrumb .sep { margin: 0 0.4rem; color: var(--border); }

/* ===== FAQ ===== */
.faq-item {
  border-top: 1px solid var(--border-soft);
  padding: var(--space-3) 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-item h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

/* ===== CALLOUT / DISCLAIMER ===== */
.callout {
  background: var(--surface-card);
  padding: var(--space-3);
  border-radius: var(--radius);
  margin: var(--space-3) 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  box-shadow: var(--shadow-card);
}
.disclaimer {
  background: rgba(160, 122, 61, 0.08);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: var(--space-3) 0;
  border-left: 3px solid var(--warm-soft);
}

.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;
}
section.deep a.btn-on-dark,
.btn-on-dark {
  background: var(--mint);
  color: var(--primary-dark);
  border: none;
}
section.deep a.btn-on-dark:hover,
.btn-on-dark:hover {
  background: var(--mint-soft);
  color: var(--primary-dark);
  border: none;
}
section.deep .lead-on-dark { color: rgba(251, 249, 245, 0.9); }
.text-muted { color: var(--ink-muted); font-size: 0.9rem; }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.center { text-align: center; }
hr.soft { border: none; border-top: 1px solid var(--border-soft); margin: var(--space-4) 0; }

/* ============================================
   MODERNIZATION — 2026 Visual Impact
   Atmospheric depth, bold composition, motion
   ============================================ */

/* ===== GRAIN OVERLAY (atmospheric texture) ===== */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.24s; }
.fade-up.delay-3 { transition-delay: 0.36s; }
.fade-up.delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  body::after { display: none; }
}

/* ===== HERO — FULL-IMPACT ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-7) 0 var(--space-6);
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 220, 205, 0.45) 0%, rgba(137, 168, 150, 0.1) 40%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 92, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-pulse 10s ease-in-out infinite 2s;
}
.hero > .container { position: relative; z-index: 1; }

/* ===== PHONE FRAMES ===== */
.phone-float { animation: float 7s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .phone-float { animation: none; } }

.phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}

/* ===== SCREENSHOT SECTIONS ===== */
.screenshot-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.screenshot-section.reverse { direction: rtl; }
.screenshot-section.reverse > * { direction: ltr; }

@media (max-width: 820px) {
  .screenshot-section { grid-template-columns: 1fr; gap: var(--space-4); }
  .screenshot-section.reverse { direction: ltr; }
}

.screenshot-phone {
  position: relative;
  width: 100%; max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 9 / 19.5;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 9px;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.06),
    0 24px 60px rgba(26, 77, 63, 0.15),
    0 60px 120px rgba(31, 36, 32, 0.1);
}
.screenshot-phone::before {
  content: "";
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 85px; height: 22px;
  background: #1a1a1a;
  border-radius: 16px;
  z-index: 2;
}
/* Glow ring behind phone */
.screenshot-phone::after {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 60px;
  background: radial-gradient(ellipse, rgba(201, 220, 205, 0.2) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.screenshot-phone-screen {
  width: 100%; height: 100%;
  border-radius: 35px;
  overflow: hidden;
  background: var(--surface);
}
.screenshot-phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}

/* Dual phones (side-by-side) */
.screenshot-duo {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: flex-start;
}
.screenshot-duo .screenshot-phone { max-width: 240px; }
.screenshot-duo .screenshot-phone:nth-child(2) { margin-top: var(--space-6); }
@media (max-width: 600px) {
  .screenshot-duo .screenshot-phone { max-width: 160px; }
  .screenshot-duo .screenshot-phone:nth-child(2) { margin-top: var(--space-4); }
}

/* ===== SECTION ATMOSPHERE ===== */
section.contrast {
  position: relative;
  overflow: hidden;
}
section.contrast::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 220, 205, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

section.deep {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-soft) 100%);
}
section.deep::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 220, 205, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
section.deep > .container { position: relative; z-index: 1; }

/* ===== PILLAR CARDS — VISUAL WEIGHT ===== */
.pillar {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 220, 205, 0.15) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 77, 63, 0.1), 0 4px 12px rgba(31, 36, 32, 0.06);
  border-color: var(--mint);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover::after { transform: translate(-20px, -20px); }

/* ===== PILLAR WITH SCREENSHOT ===== */
.pillar-screenshot {
  margin-top: var(--space-3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(31, 36, 32, 0.08);
}
.pillar-screenshot img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* ===== GENTLE LOOP — CONNECTED FLOW ===== */
.gentle-loop {
  position: relative;
}
.gentle-node {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  position: relative;
  border: 1px solid var(--border-soft);
}
.gentle-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(31, 36, 32, 0.08);
  border-color: var(--mint);
}
.gentle-node-num {
  position: relative;
  padding-left: 1.4rem;
}
.gentle-node-num::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm), var(--warm-soft));
  box-shadow: 0 0 0 3px rgba(160, 122, 61, 0.15);
}

/* ===== EXPORT PREVIEW ===== */
.export-preview {
  max-width: 640px;
  margin: var(--space-4) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(31, 36, 32, 0.1), 0 2px 8px rgba(31, 36, 32, 0.04);
  border: 1px solid var(--border-soft);
}
.export-preview img { width: 100%; display: block; }

/* ===== READ MORE ===== */
.read-more {
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0;
  min-height: 44px;
  border: none;
  transition: gap 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
}
.read-more:hover { gap: 0.6rem; border: none; color: var(--primary-dark); }

/* ===== FEATURE SHOWCASE (text + phone side-by-side visual) ===== */
.feature-visual {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-5);
  align-items: start;
  margin: var(--space-4) 0;
}
.feature-visual.reverse {
  grid-template-columns: auto 1fr;
}
.feature-visual .screenshot-phone { max-width: 200px; }
@media (max-width: 700px) {
  .feature-visual, .feature-visual.reverse {
    grid-template-columns: 1fr;
  }
  .feature-visual .screenshot-phone {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* ===== LARGE HERO PHONE (bigger on homepage) ===== */
.hero .phone, .hero .screenshot-phone {
  max-width: 320px;
}

/* ===== BENTO GRID (for "What Galet is" section) ===== */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.bento-wide {
  grid-column: 1 / -1;
}
@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr; }
}

/* ===== STAT CALLOUT ===== */
.stat-row {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--space-4) 0;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  font-style: italic;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 0.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== TRUST ROW ===== */
.trust-row {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--ink-muted); font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; }

/* ===== ICON GRID (pilot page "ask" and "who" sections) ===== */
.icon-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: var(--space-4) 0;
}
.icon-grid-item {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  text-align: left;
}
.icon-grid-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(31, 36, 32, 0.08);
  border-color: var(--mint);
}
.icon-grid-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--mint-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.icon-grid-icon svg { width: 20px; height: 20px; }
.icon-grid-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.icon-grid-item p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===== WAITLIST STEPS ===== */
.waitlist-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}
@media (max-width: 600px) {
  .waitlist-steps { grid-template-columns: 1fr; }
}
.waitlist-step {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.waitlist-step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.4rem;
}
.waitlist-step h4 { margin-bottom: 0.3rem; }
.waitlist-step p { font-size: 0.9rem; margin-bottom: 0; }

/* ===== EVIDENCE CARDS ===== */
.evidence-card {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin: var(--space-3) 0;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--primary);
}
.evidence-card h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: var(--space-1);
  line-height: 1.2;
}
.evidence-card p:last-child,
.evidence-card ul:last-child { margin-bottom: 0; }
.evidence-cite {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.5;
  margin-top: var(--space-1);
  padding-top: var(--space-1);
  border-top: 1px solid var(--border-soft);
}
