/* ============================================================
   VERITAS FIELD — Shared Design System
   Tone: Sacred threshold. Spacious. Still.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

:root {
  --bg: #0b0d12;
  --bg2: #0f1219;
  --surface: #141821;
  --surface2: #1a1f2b;
  --border: #1e2636;
  --text: rgba(215,210,202,0.92);
  --text-bright: rgba(242,238,230,0.96);
  --text-dim: rgba(165,158,148,0.65);
  --gold: #c9a96e;
  --gold-dim: rgba(201,169,110,0.4);
  --gold-glow: rgba(201,169,110,0.12);
  --blue: #7ba4d4;
  --sage: rgba(140,200,170,0.85);
  --coral: rgba(210,150,130,0.8);
  --lavender: #8b9dc3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px; /* BUMPED from 16px */
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Layout ---- */
.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 80px 0;
}

section + section {
  border-top: 1px solid var(--border);
}

/* ---- Typography — All sizes bumped ---- */
.subhead {
  font-family: var(--sans);
  font-size: 13px; /* was 12 */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 400;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px); /* was 24/38 */
  color: var(--text-bright);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
}

h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 26px); /* was 18/24 */
  color: var(--text-bright);
  font-weight: 400;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  font-size: 18px; /* explicit */
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.dim { color: var(--text-dim); }
em { color: var(--gold); font-style: italic; }

.bridge {
  text-align: center;
  margin-top: 36px;
  padding-top: 20px;
}
.bridge a { font-size: 15px; color: var(--lavender); }

/* ---- Shared Navigation ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, var(--bg) 60%, transparent);
  transition: all 0.5s var(--ease);
}

.site-nav.scrolled {
  background: rgba(11, 13, 18, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 28px;
}

.nav-brand {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px; /* was ~12 */
  letter-spacing: 0.25em;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.nav-brand:hover { opacity: 1; text-decoration: none; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px; /* was ~11 */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  text-decoration: none;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-dim);
  fill: none;
  stroke-width: 1.5;
}

/* ---- Hero (Home page) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-bowl.jpg') center center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(11,13,18,0.15) 0%,
    rgba(11,13,18,0.35) 40%,
    rgba(11,13,18,0.85) 85%,
    var(--bg) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 28px 80px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 8vw, 76px); /* bumped from 36/72 */
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-title .w { color: var(--text-bright); }
.hero-title .g { color: var(--gold); }
.hero-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
  opacity: 0.7;
}
.hero-tag {
  font-family: var(--serif);
  font-size: clamp(18px, 2.8vw, 24px); /* bumped from 16/22 */
  color: rgba(220,215,208,0.85);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.4;
  animation: breathe 3s ease infinite;
}
.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1;
}
@keyframes breathe {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.6; transform: translateX(-50%) translateY(6px); }
}

/* ---- Settling Overlay ---- */
.settling {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}
.settling.active { display: flex; }
.s-text {
  font-family: var(--serif);
  font-size: clamp(20px, 3.5vw, 30px); /* bumped */
  color: var(--text-bright);
  text-align: center;
  max-width: 520px;
  line-height: 1.9;
  opacity: 0;
  transition: opacity 2.5s var(--ease);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.s-text.visible { opacity: 1; }
.s-enter {
  opacity: 0;
  transition: opacity 1.5s var(--ease);
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-enter.visible { opacity: 1; }
.s-enter:hover { background: var(--gold-glow); border-color: var(--gold); }
.s-enter svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* ---- Gateway ---- */
.gw-paths {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.gw-path {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  background: var(--surface);
}
.gw-path:hover {
  border-color: var(--gold-dim);
  background: var(--surface2);
  transform: translateY(-2px);
}
.gw-path h3 { margin-bottom: 8px; font-size: 19px; } /* bumped */
.gw-path p { font-size: 16px; color: var(--text-dim); margin: 0; } /* bumped */

/* ---- About Cards ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}
.about-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}
.about-card h3 { font-size: 19px; color: var(--blue); margin-bottom: 8px; } /* bumped */
.about-card p { font-size: 17px; margin: 0; line-height: 1.7; } /* bumped */

/* ---- WWTA Tool ---- */
.wwta-words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0;
}
.ww {
  padding: 11px 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 18px; /* bumped from 16 */
  color: var(--text);
  background: transparent;
  transition: all 0.3s var(--ease);
}
.ww:hover { border-color: var(--gold-dim); color: var(--text-bright); }
.ww.sel { border-color: var(--gold); background: var(--gold-glow); color: var(--gold); }
.wwta-reveal { text-align: center; padding: 36px 16px; min-height: 100px; }
.wwta-say {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px); /* bumped */
  color: var(--text-bright);
  line-height: 1.7;
  opacity: 0;
  transition: opacity 1.8s var(--ease);
  font-weight: 300;
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}
.wwta-say.vis { opacity: 1; }
.wwta-rst {
  margin-top: 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px; /* bumped */
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.wwta-rst.vis { opacity: 1; }
.wwta-rst:hover { border-color: var(--gold-dim); color: var(--text); }

/* ---- Conscious Prompting ---- */
.cp-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg2);
}
.cp-wrap canvas { width: 100%; height: 100%; }
.cp-row { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.cp-in {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-bright);
  font-family: var(--sans);
  font-size: 17px; /* bumped */
  outline: none;
}
.cp-in:focus { border-color: var(--blue); }
.cp-mic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.cp-mic:hover { border-color: var(--blue); }
.cp-mic.on { border-color: var(--gold); background: var(--gold-glow); }
.cp-mic svg { width: 18px; height: 18px; stroke: var(--text-dim); fill: none; stroke-width: 1.5; }
.cp-mic.on svg { stroke: var(--gold); }
.cp-go {
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px; /* bumped */
  transition: all 0.3s;
  flex-shrink: 0;
}
.cp-go:hover { border-color: var(--blue); color: var(--text-bright); }
.cp-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.cp-pre {
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 13px; /* bumped */
  font-family: var(--sans);
  transition: all 0.3s;
}
.cp-pre:hover { border-color: var(--lavender); color: var(--text); }
.cp-tx {
  text-align: center;
  font-size: 14px; /* bumped */
  color: var(--gold);
  margin-top: 8px;
  min-height: 18px;
  opacity: 0;
  transition: opacity 0.5s;
}

/* ---- Language Guide ---- */
.lg-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.lg-cb {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px; /* bumped from 12 */
  transition: all 0.3s;
}
.lg-cb:hover { border-color: var(--lavender); color: var(--text); }
.lg-cb.on { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.lg-pair { padding: 18px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.lg-pair:last-child { border-bottom: none; }
.lg-r { font-family: var(--serif); font-size: 18px; color: var(--coral); font-style: italic; } /* bumped */
.lg-a { color: var(--gold-dim); font-size: 14px; margin: 6px 0; opacity: 0; transition: opacity 0.5s var(--ease); }
.lg-a.vis { opacity: 1; }
.lg-o {
  font-family: var(--serif);
  font-size: 18px; /* bumped */
  color: var(--sage);
  line-height: 1.65;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.8s var(--ease), max-height 0.6s var(--ease);
}
.lg-o.vis { opacity: 1; max-height: 200px; }
.lg-s {
  font-size: 12px; /* bumped */
  color: var(--text-dim);
  margin-top: 5px;
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.3s;
  letter-spacing: 0.06em;
}
.lg-s.vis { opacity: 1; }
.lg-src { font-size: 11px; color: var(--lavender); opacity: 0.5; margin-left: 6px; }

/* ---- Video Grid ---- */
.vid-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
.vid-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--surface); }
.vid-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0c0e13 0%, #151c2a 50%, #0c0e13 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid-thumb span { font-size: 12px; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; }
.vid-body { padding: 14px 16px; }
.vid-body h3 { font-size: 16px; margin-bottom: 5px; font-weight: 400; } /* bumped */
.vid-body p { font-size: 14px; color: var(--text-dim); margin: 0; font-style: italic; } /* bumped */
.vid-tag { display: inline-block; font-size: 12px; color: var(--lavender); margin-top: 6px; }

/* ---- Try Veritas Cards ---- */
.try-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.try-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.try-card:hover { border-color: var(--gold-dim); background: var(--surface2); }
.try-card h3 { font-size: 22px; margin-bottom: 6px; } /* bumped */
.try-card .try-desc { font-size: 16px; color: var(--text-dim); margin-bottom: 16px; } /* bumped */
.try-card .try-price { font-family: var(--serif); font-size: 24px; color: var(--gold); margin-bottom: 4px; }
.try-card .try-note { font-size: 14px; color: var(--text-dim); margin-bottom: 16px; } /* bumped */
.try-card .try-free { font-family: var(--serif); font-size: 24px; color: var(--sage); margin-bottom: 4px; }
.try-btn {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px; /* bumped */
  transition: all 0.3s;
  text-decoration: none;
}
.try-btn:hover { background: var(--gold-glow); border-color: var(--gold); text-decoration: none; }

.try-rec {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg2);
  text-align: center;
}
.try-rec p { font-size: 14px; color: var(--text-dim); margin: 0; }

/* ---- Support ---- */
.support-box {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.support-msg {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 24px); /* bumped */
  color: var(--text-bright);
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 16px;
}

/* ---- How To Use — Practices ---- */
.practices { margin-bottom: 64px; }
.practice {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.practice-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 28px;
  text-align: right;
  padding-top: 2px;
}
.practice-content strong {
  color: var(--text-bright);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}
.practice-content p {
  font-size: 17px;
  line-height: 1.75;
}

/* Prompt grid */
.prompt-section { margin-bottom: 48px; }
.prompt-section p.intro { font-size: 16px; color: var(--text); margin-bottom: 18px; opacity: 0.85; }
.prompt-grid { display: grid; gap: 10px; }
.prompt-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 17px; /* bumped */
  color: var(--text-bright);
  font-style: italic;
  font-family: var(--serif);
  transition: border-color 0.3s, background 0.3s;
}
.prompt-item:hover { border-color: rgba(123,159,212,0.2); background: rgba(123,159,212,0.04); }

/* Redirect examples */
.redirect-section { margin-bottom: 48px; }
.redirect-example {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 15px; /* bumped */
  color: var(--gold);
  margin: 0 6px 8px 0;
  font-style: italic;
}

/* Categories grid */
.categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 64px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
}
.category-card .icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.category-card .label { font-family: var(--serif); font-size: 18px; color: var(--text-bright); } /* bumped */

/* Not section */
.not-section {
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 56px;
}
.not-section h3 { color: var(--gold); font-family: var(--sans); font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; }
.not-section p { font-size: 17px; line-height: 1.75; }

/* Download bar */
.download-bar {
  text-align: center;
  margin: 40px 0 56px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.download-bar p { font-size: 16px; margin-bottom: 12px; }
.download-bar a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* Anchor quote */
.anchor-quote {
  background: linear-gradient(135deg, var(--surface), rgba(123,159,212,0.05));
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin: 0 0 60px;
  font-family: var(--serif);
  font-size: 20px; /* bumped */
  font-style: italic;
  color: var(--text-bright);
  line-height: 1.75;
}

/* Closing CTA */
.closing {
  text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid var(--border);
}
.closing p {
  font-family: var(--serif);
  font-size: 20px; /* bumped */
  color: var(--text-bright);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}
.closing .cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.closing .cta:hover { background: var(--gold-glow); border-color: var(--gold); text-decoration: none; }

/* ---- Page Header (non-home pages) ---- */
.page-hero {
  text-align: center;
  padding: 140px 28px 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--text-bright);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.page-hero .subtitle {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Footer ---- */
.site-footer {
  text-align: center;
  padding: 48px 0 36px;
  border-top: 1px solid var(--border);
}
.ft-brand {
  font-family: var(--serif);
  font-size: 14px; /* bumped */
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.ft-copy { font-size: 12px; color: var(--text-dim); }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11,13,18,0.98);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 18px; letter-spacing: 0.2em; }
  .nav-toggle { display: block; z-index: 1001; }
  .categories { grid-template-columns: 1fr; }
  .cp-row { flex-wrap: wrap; }
}

@media (min-width: 641px) {
  .gw-paths { flex-direction: row; }
  .gw-path { flex: 1; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .cp-wrap { height: 420px; }
  .cp-row { flex-wrap: nowrap; }
  .vid-grid { grid-template-columns: 1fr 1fr; }
  .try-cards { flex-direction: row; }
  .try-card { flex: 1; }
}

@media (min-width: 900px) {
  .wrap { padding: 0 32px; }
  section { padding: 96px 0; }
  .vid-grid { grid-template-columns: repeat(3, 1fr); }
}
