/* ============================================================
   Trove AI — Warm Light Edition
   Direction: Editorial Studio Warmth
   Palette: Warm canvas, ink text, amber-gold accent
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

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

:root {
  --bg:            #FAF7F2;
  --bg-alt:        #F3EDE3;
  --bg-card:       #FFFFFF;
  --ink:           #1A1410;
  --ink-mid:       #4A3F35;
  --ink-muted:     #8C7B6E;
  --amber:         #C8822A;
  --amber-warm:    #A86820;
  --amber-glow:    rgba(200, 130, 42, 0.14);
  --amber-ghost:   rgba(200, 130, 42, 0.07);
  --line:          rgba(26, 20, 16, 0.09);
  --line-soft:     rgba(26, 20, 16, 0.05);
  --shadow-sm:     0 1px 4px rgba(26, 20, 16, 0.06);
  --shadow-md:     0 12px 40px rgba(26, 20, 16, 0.10);
  --shadow-lg:     0 32px 80px rgba(26, 20, 16, 0.14);
  --shadow-amber:  0 8px 32px rgba(200, 130, 42, 0.20);
  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1080px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

.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;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; color: var(--ink); }

.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;
}
a { color: inherit; text-decoration: none; }
section { padding: 104px 0; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-in { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: none; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: #FFFFFF;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  padding: 16px 32px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: var(--shadow-amber);
  letter-spacing: 0.01em;
}
.btn:hover { background: var(--amber-warm); transform: translateY(-2px); box-shadow: 0 14px 44px rgba(200,130,42,0.32); }
.btn .arrow { display: inline-block; transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(5px); }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line); box-shadow: none;
  padding: 14px 26px; font-size: 14.5px;
}
.btn-ghost:hover { background: var(--amber-ghost); box-shadow: none; transform: none; }

.btn--primary {
  animation: btnPulse 3s ease-in-out 1.6s infinite;
}
.btn--primary:hover { animation-play-state: paused; }
@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-amber), 0 0 0 0 rgba(200,130,42,0.15); }
  50%       { box-shadow: var(--shadow-amber), 0 0 0 8px rgba(200,130,42,0); }
}

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: height 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav--scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(26, 20, 16, 0.14);
  box-shadow: var(--shadow-sm);
}
.nav--scrolled .nav-inner { height: 60px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; transition: height 0.3s ease; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a.link { font-size: 14.5px; font-weight: 400; color: var(--ink-muted); letter-spacing: 0.02em; transition: color 0.15s; }
.nav-links a.link:hover { color: var(--ink); }
.nav-cta { padding: 11px 22px; font-size: 14px; }

.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 120px 0 100px; position: relative; overflow: hidden;
  text-align: center;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,130,42,0.28) 0%, transparent 70%);
  top: -20%; left: 50%; transform: translateX(-50%);
  opacity: 0.7;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(180,140,100,0.08) 0%, transparent 70%);
  bottom: 10%; left: 10%;
  opacity: 0.4;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,130,42,0.10) 0%, transparent 70%);
  top: 30%; right: 8%;
  opacity: 0.4;
  animation: orbFloat 10s ease-in-out infinite 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%  { transform: translateY(-28px) translateX(12px); }
  66%  { transform: translateY(14px) translateX(-8px); }
}

.hero-center { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

.hero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber);
  background: var(--amber-ghost); border: 1px solid rgba(200,130,42,0.2);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 40px;
  position: relative; overflow: hidden;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
}
.hero-eyebrow::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shimmer 0.7s ease-in-out 1.2s forwards;
  pointer-events: none;
}
@keyframes shimmer {
  to { transform: translateX(100%); }
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(56px, 7.5vw, 96px);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
}
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-l1, .hero-l2 {
  display: inline;
  opacity: 0;
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-l1 { animation-delay: 0.2s; }
.hero-l2 { animation-delay: 0.38s; }

.hero-cursor {
  display: inline-block;
  font-style: normal;
  color: var(--amber);
  font-weight: 300;
  animation: cursorBlink 530ms step-end infinite;
  margin-left: 1px;
}
.hero-cursor.typing {
  animation: none;
  opacity: 1;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-mid);
  max-width: 580px; margin: 0 auto 44px; line-height: 1.7; font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}
.reassure {
  font-size: 13.5px; color: var(--ink-muted); font-style: italic;
  margin-top: 20px; text-align: center; white-space: nowrap;
  opacity: 0;
  animation: fadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

.hero-pain {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-top: 36px; opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}
.pain-logos {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.pain-ico {
  width: 30px; height: 30px; opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.pain-logos:hover .pain-ico { opacity: 1; transform: scale(1.1); }
.pain-yt { fill: #FF0000; }
.pain-tt { fill: #000000; }
.pain-ig { fill: #E4405F; }
.pain-copy {
  font-size: 17px; color: var(--ink-mid); font-weight: 400;
  letter-spacing: 0.01em; line-height: 1.5;
}
.pain-copy em { font-style: italic; color: var(--amber); font-weight: 500; }

.sec-head { max-width: 720px; margin: 0 auto 60px; }
.sec-head.center { text-align: center; }
.sec-head h2 { font-size: clamp(36px, 4.8vw, 58px); margin-bottom: 16px; font-weight: 500; }
.sec-head p { color: var(--ink-mid); font-size: 18px; font-weight: 300; line-height: 1.7; }
.sec-kicker {
  display: inline-block; font-family: var(--font-body); font-weight: 500;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
}

.vision { background: var(--bg-alt); position: relative; overflow: hidden; }
.vision::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 65%);
  pointer-events: none;
}
.vision .sec-head { margin-bottom: 64px; }
.vision .sec-head h2 em { font-style: italic; color: var(--amber); }

.vision-moments { max-width: 780px; margin: 0 auto; }
.vmoment {
  display: grid; grid-template-columns: 56px 1fr; gap: 28px; align-items: start;
  padding: 32px 0; border-bottom: 1px solid var(--line);
  transition: background 0.2s;
  position: relative;
}
.vmoment::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--amber); opacity: 0.3;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.vmoment.visible::before {
  transform: scaleX(1);
}
.vmoment:last-child { border-bottom: none; }
.vmoment-num-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding-top: 4px;
}
.vnum {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  letter-spacing: 0.1em; color: var(--amber); opacity: 0.7;
}
.vdot { width: 1px; flex: 1; background: var(--line); min-height: 20px; }
.vmoment p { font-size: 17.5px; color: var(--ink-mid); line-height: 1.65; font-weight: 300; }
.vmoment p strong { color: var(--ink); font-weight: 500; }

.vision-close {
  max-width: 700px; margin: 64px auto 0; text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2.8vw, 28px); line-height: 1.55;
  color: var(--ink); font-style: italic;
  padding: 48px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-alt);
  position: relative;
}
.vision-close::before {
  content: '\201C';
  position: absolute; top: 12px; left: 28px;
  font-family: var(--font-display); font-size: 80px; line-height: 1;
  color: var(--amber); opacity: 0.3;
}
.vision-close .hl { color: var(--amber); font-style: normal; }

.gallery { background: var(--bg); }
.shots { display: flex; flex-direction: column; gap: 24px; max-width: 1040px; margin: 0 auto; }
.shot {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 44px; overflow: hidden;
  position: relative; transition: border-color 0.3s, transform 0.3s;
}
.shot::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--amber-ghost) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.shot:hover { border-color: rgba(200,130,42,0.22); transform: translateY(-2px); }
.shot:hover::before { opacity: 1; }
.shot:hover .shot-img img {
  transform: scale(1.03);
}
.shot.reverse .shot-img { order: 2; }
.shot.reverse { grid-template-columns: 1fr 1.3fr; }
.shot-img {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative; z-index: 1;
}
.shot-img img {
  display: block; width: 100%; height: auto;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.shot-img.phone { max-width: 300px; margin: 0 auto; }
.shot-text { position: relative; z-index: 1; }
.shot-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 16px; display: block;
}
.shot-text h3 { font-size: clamp(22px, 2.8vw, 28px); margin-bottom: 14px; font-weight: 500; }
.shot-text p { color: var(--ink-mid); font-size: 16px; line-height: 1.7; font-weight: 300; }

.build { background: var(--bg-alt); }
.build .sec-head { text-align: center; }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 960px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); }
.cap {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px 28px; border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.cap:hover { background: var(--bg-alt); }
.cap:nth-child(2n) { border-right: none; }
.cap:nth-last-child(-n+2) { border-bottom: none; }
.cap .check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--amber-ghost); display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.cap .check svg { width: 11px; height: 11px; stroke: var(--amber); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.cap div { color: var(--ink-mid); font-size: 15.5px; line-height: 1.6; font-weight: 300; }
.cap div strong { color: var(--ink); font-weight: 500; }
.build-cta { text-align: center; margin-top: 52px; }

.integrations { background: var(--bg); }
.integrations .sec-head { text-align: center; }
.logos {
  max-width: 880px; margin: 0 auto;
}
.logos-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.logo-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 22px;
  transition: border-color 0.2s, background 0.2s;
}
.logo-item:hover { border-color: rgba(200,130,42,0.3); background: var(--bg-alt); }
.logo-item img, .logo-item .ico { width: 20px; height: 20px; opacity: 0.75; }
.logo-item .ico { fill: var(--ink); }
.logo-item span { font-family: var(--font-body); font-weight: 400; font-size: 14px; color: var(--ink-mid); }
.logo-item.kit img { width: auto; height: 22px; opacity: 0.8; }

.who { background: var(--bg-alt); }
.who .sec-head { text-align: center; }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 980px; margin: 0 auto; }
.persona {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.persona::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-warm));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.persona:hover { border-color: rgba(200,130,42,0.2); transform: translateY(-3px); }
.persona:hover::after { transform: scaleX(1); }
.persona .tag {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 16px; display: block;
}
.persona p { color: var(--ink-mid); font-size: 15.5px; line-height: 1.65; font-weight: 300; }
.not-for {
  max-width: 680px; margin: 44px auto 0; text-align: center;
  color: var(--ink-muted); font-size: 14.5px; line-height: 1.6; font-style: italic;
}
.not-for strong { color: var(--ink-mid); font-style: normal; }

.how { background: var(--bg); }
.how .sec-head { text-align: center; }
.steps { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.step {
  display: flex; gap: 32px; align-items: flex-start;
  background: var(--bg-card); padding: 36px 40px;
  border-bottom: 1px solid var(--line); position: relative;
  transition: background 0.2s;
}
.step:last-child { border-bottom: none; }
.step:hover { background: var(--bg-alt); }
.step-num {
  flex-shrink: 0; font-family: var(--font-display); font-weight: 600;
  font-size: 32px; color: var(--amber); line-height: 1; padding-top: 4px;
  min-width: 36px;
}
.step h3 { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 24px); margin-bottom: 10px; font-weight: 500; }
.step h3 .meta { font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--amber); margin-left: 12px; letter-spacing: 0.05em; }
.step p { color: var(--ink-mid); font-size: 16px; line-height: 1.7; font-weight: 300; }
.step.optional .badge {
  display: inline-block; font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber);
  background: var(--amber-ghost); border: 1px solid rgba(200,130,42,0.2);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 10px;
}

.about { background: var(--bg-alt); }
.about-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: center; }
.about-text .sec-kicker { margin-bottom: 20px; }
.about-text h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; font-weight: 500; }
.about-text h2 em { font-style: italic; color: var(--amber); }
.about-text p { color: var(--ink-mid); font-size: 17px; line-height: 1.75; margin-bottom: 18px; font-weight: 300; }
.about-stats { display: flex; gap: 40px; margin-top: 44px; flex-wrap: wrap; }
.astat .num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 40px; color: var(--amber); letter-spacing: -0.02em; line-height: 1;
}
.astat .lbl { font-size: 12.5px; color: var(--ink-muted); margin-top: 6px; max-width: 130px; line-height: 1.45; letter-spacing: 0.02em; }

.about-photo { display: flex; justify-content: flex-end; }
.about-photo-inner {
  position: relative; display: inline-block;
  will-change: transform;
}
.about-photo-inner::before {
  content: ''; position: absolute;
  inset: -2px; border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--amber), transparent 50%);
  z-index: 0;
}
.about-photo img {
  display: block; width: 100%; max-width: 360px; height: auto;
  border-radius: var(--radius-lg);
  position: relative; z-index: 1;
}

.faq { background: var(--bg); }
.faq .sec-head { text-align: center; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line); overflow: hidden;
  border-left: 2px solid transparent;
  transition: border-left-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] {
  border-left-color: var(--amber);
  box-shadow: inset 3px 0 12px rgba(200, 130, 42, 0.06);
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 24px 20px; text-align: left; color: var(--ink);
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q h3 { font-family: var(--font-body); font-size: 16.5px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 18px; transition: transform 0.3s, background 0.2s;
  font-weight: 300; line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--amber-ghost); border-color: rgba(200,130,42,0.3); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
  padding: 0 20px;
}
.faq-body p {
  color: var(--ink-mid); font-size: 16px; line-height: 1.75;
  padding-bottom: 24px; font-weight: 300;
}
.faq-body p a { color: var(--amber); }
.faq-item[open] .faq-body { max-height: 500px; }

.final { background: var(--bg); }
.final-card {
  max-width: 880px; margin: 0 auto;
  border: 1px solid rgba(200,130,42,0.2); border-radius: var(--radius-lg);
  padding: 80px 64px; position: relative; overflow: hidden; text-align: center;
  background: var(--bg-alt);
}
.final-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,130,42,0.08) 0%, rgba(243,237,227,0.04) 50%, rgba(200,130,42,0.06) 100%);
  background-size: 400% 400%;
  animation: finalGradientDrift 20s ease infinite;
  pointer-events: none; z-index: 0;
}
@keyframes finalGradientDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.final-card::after {
  content: 'TROVE'; position: absolute; bottom: -24px; right: 32px;
  font-family: var(--font-display); font-size: 140px; font-weight: 700;
  color: rgba(26, 20, 16, 0.04); letter-spacing: -0.04em; pointer-events: none; line-height: 1;
}
.final-card h2 { font-size: clamp(30px, 4.5vw, 50px); margin-bottom: 20px; position: relative; font-weight: 500; z-index: 1; }
.final-card h2 em { font-style: italic; color: var(--amber); }
.final-card p { color: var(--ink-mid); font-size: 18px; max-width: 560px; margin: 0 auto 40px; position: relative; font-weight: 300; line-height: 1.75; z-index: 1; }
.final-card .btn { position: relative; z-index: 1; }

.footer { padding: 52px 0 40px; border-top: 1px solid var(--line); background: var(--bg); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { height: 34px; width: auto; align-self: flex-start; opacity: 0.85; }
.footer-left .co { font-size: 13px; color: var(--ink-muted); }
.footer-left a { color: var(--amber); font-size: 14px; font-weight: 400; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13.5px; color: var(--ink-muted); letter-spacing: 0.02em; transition: color 0.15s; }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { justify-content: center; order: -1; }
  .shot, .shot.reverse { grid-template-columns: 1fr; gap: 28px; }
  .shot.reverse .shot-img { order: 0; }
}
@media (max-width: 760px) {
  section { padding: 72px 0; }
  .nav-links a.link { display: none; }
  .nav-logo img { height: 30px; }
  .cap-grid { grid-template-columns: 1fr; border-radius: var(--radius); }
  .cap:nth-child(2n) { border-right: 1px solid var(--line); }
  .cap:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cap:last-child { border-bottom: none; }
  .persona-grid { grid-template-columns: 1fr; }
  .step { padding: 28px 24px; gap: 20px; }
  .hero { min-height: 80vh; padding: 80px 0 64px; }
  .vmoment { grid-template-columns: 40px 1fr; gap: 16px; }
  .final-card { padding: 52px 28px; }
  .final-card::after { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { gap: 28px; }

  .logos {
    display: flex; overflow: hidden; position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }
  .logos-inner {
    flex-wrap: nowrap; justify-content: flex-start; flex-shrink: 0;
    animation: marqueeScroll 28s linear infinite;
  }
  .logos-inner:hover {
    animation-play-state: paused;
  }
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .reveal, .orb-1, .orb-2, .orb-3, .hero-eyebrow::before,
  .hero-l1, .hero-l2, .hero-eyebrow::after,
  .final-card::before, .logos-inner, .btn--primary, .hero-cursor { animation: none; }
  .reveal, .hero-l1, .hero-l2 { opacity: 1; transform: none; }
  .fade-in, .hero-sub, .hero-actions, .reassure, .hero-rule { opacity: 1; }
  .vmoment::before { transition: none; transform: scaleX(1); }
}
