/* ============================================================
   GRIDIENT — Marketing site styles
   Dark infrastructure aesthetic. No build step required.
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --bg-deep: #050505;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-gold: rgba(201, 168, 76, 0.4);
  --ink: #ffffff;
  --ink-dim: #a8a8a8;
  --ink-faint: #6b6b6b;
  --gold: #c9a84c;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

/* Scroll-triggered reveals */
/* Content images — dissolve edges into dark background */
.content-image {
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  border: none;
  box-shadow: none;
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--bg); }

/* ----- Type ----- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(56px, 8vw, 120px); line-height: 0.98; }
h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1.04; }
h3 { font-size: clamp(26px, 2.4vw, 36px); line-height: 1.15; }
h4 { font-size: 22px; line-height: 1.25; }

p { color: var(--ink-dim); line-height: 1.65; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}

.gold { color: var(--gold); }
.italic { font-style: italic; }

/* ----- Container ----- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .container { padding: 0 24px; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 10, 0.92);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.nav-brand .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  display: inline-block;
  border-radius: 0;
  transform: translateY(-2px);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink-dim);
  padding: 8px 14px;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  margin-left: 12px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .2s;
}
.nav-links .nav-cta:hover { background: #d8b85a; color: var(--bg); }

.nav-toggle {
  display: none;
  background: transparent; border: 0; color: var(--ink);
  cursor: pointer; padding: 8px;
}
.nav-toggle svg { display: block; }

@media (max-width: 1024px) {
  .nav-inner { padding: 16px 24px; }
  .nav-toggle { display: block; z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 16px;
    color: #ffffff;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  background: var(--gold);
  color: var(--bg);
  border: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn:hover { background: #d8b85a; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--gold); }

/* ============================================================
   PAGE SCAFFOLD
   ============================================================ */
main { padding-top: 73px; }

.page-hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-size: clamp(56px, 7vw, 104px);
  max-width: 16ch;
}
.page-hero .lede {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 300;
  max-width: 56ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 120px;
  padding: 56px 0 40px;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.footer-brand .nav-brand { font-size: 28px; }
.footer-brand p {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-faint);
  max-width: 28ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; }
.footer-col a {
  font-size: 13.5px;
  color: var(--ink-dim);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bar {
  max-width: 1320px;
  margin: 56px auto 0;
  padding: 24px 48px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .footer-inner, .footer-bar { padding-left: 24px; padding-right: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bar { flex-direction: column; gap: 8px; }
}

/* ============================================================
   FORM
   ============================================================ */
.email-form {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  max-width: 520px;
  transition: border-color .2s;
}
.email-form:focus-within { border-color: var(--gold); }
.email-form input {
  flex: 1;
  background: transparent;
  border: 0; outline: 0;
  padding: 16px 20px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
}
.email-form input::placeholder { color: var(--ink-faint); }
.email-form button {
  background: var(--gold);
  color: var(--bg);
  border: 0;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.email-form button:hover { background: #d8b85a; }

@media (max-width: 540px) {
  .email-form { flex-direction: column; }
  .email-form button { padding: 16px; }
}

.form-success {
  margin-top: 44px;
  padding: 20px 24px;
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.06);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  max-width: 520px;
}
.form-success b { color: var(--gold); display: block; margin-bottom: 6px; font-weight: 500; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: -73px;
  padding-top: 173px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.62);
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
}
.hero h1 {
  max-width: 14ch;
  font-weight: 300;
  margin-top: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
  margin-top: 36px;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
}
.hero-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.hero-meta div b {
  display: block;
  color: var(--ink);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-top: 6px;
  font-feature-settings: "tnum";
}

/* HOME — INTRO BAND */
.intro-band {
  padding: 140px 0 120px;
  border-bottom: 1px solid var(--line);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; gap: 48px; } }
.intro-grid h2 { font-weight: 300; max-width: 12ch; }
.intro-grid h2 em { font-style: italic; color: var(--gold); }
.intro-text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 300;
  max-width: 50ch;
}
.intro-text + .intro-text { margin-top: 28px; }

/* HOME — MARKETS */
.markets {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.markets-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 80px;
  gap: 48px;
}
.markets-head h2 { max-width: 14ch; font-weight: 300; }
.markets-head .lede { font-size: 16px; max-width: 36ch; color: var(--ink-dim); }
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 860px) { .market-grid { grid-template-columns: 1fr 1fr; } }
.market {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.market:last-child { border-right: 0; }
.market .num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.market .num small { font-size: 22px; color: var(--ink-faint); margin-left: 4px; }
.market .label {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.market .desc {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* HOME — IMAGE BAND */
.image-band {
  position: relative;
  height: 70vh;
  min-height: 540px;
  overflow: hidden;
}
.image-band img { width: 100%; height: 100%; object-fit: cover; }
.image-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.1) 50%, rgba(10,10,10,0.85) 100%);
}
.image-band-caption {
  position: absolute;
  bottom: 48px; left: 48px; right: 48px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
}
.image-band-caption blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  font-weight: 300;
  max-width: 22ch;
  color: var(--ink);
  border: 0;
}
.image-band-caption cite {
  font-style: normal;
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  text-align: right;
}
.image-band-caption cite b {
  display: block; color: var(--gold); margin-bottom: 4px; font-weight: 500;
}

/* HOME — CTA BAND */
.cta-band {
  padding: 140px 0;
  border-top: 1px solid var(--line);
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 860px) { .cta-band-inner { grid-template-columns: 1fr; gap: 40px; } }
.cta-band h2 { font-weight: 300; max-width: 14ch; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { font-size: 16px; margin-bottom: 32px; max-width: 44ch; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.panels {
  padding: 100px 0 120px;
  border-bottom: 1px solid var(--line);
}
.panels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 920px) { .panels-grid { grid-template-columns: 1fr; } }
.panel { display: flex; flex-direction: column; }
.panel-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #050505;
}
.panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.panel:hover .panel-img img { transform: scale(1.04); }
.panel-body { padding-top: 32px; }
.panel .panel-num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel .panel-num .idx { color: var(--ink-faint); font-feature-settings: "tnum"; }
.panel h3 { margin-top: 16px; font-weight: 400; font-size: 32px; line-height: 1.15; }
.panel h3 em { color: var(--gold); font-style: italic; }
.panel p { margin-top: 16px; font-size: 15px; line-height: 1.65; color: var(--ink-dim); max-width: 38ch; }
.panel-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.panel-tags span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
}

/* Stats */
.stats { padding: 100px 0; border-bottom: 1px solid var(--line); }
.stats-head { margin-bottom: 64px; max-width: 64ch; }
.stats-head h2 { font-weight: 300; }
.stats-head h2 em { color: var(--gold); font-style: italic; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr; } }
.stat { padding: 40px 32px 40px 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.stat-num small {
  font-size: 22px;
  color: var(--ink-faint);
  margin-left: 6px;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  font-weight: 400;
}
.stat-label {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  max-width: 32ch;
}
.stat-label b { color: var(--gold); font-weight: 500; }

.product-cta { padding: 120px 0; }
.product-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 720px) { .product-cta-inner { grid-template-columns: 1fr; gap: 32px; } }
.product-cta h2 { font-weight: 300; max-width: 14ch; }
.product-cta h2 em { font-style: italic; color: var(--gold); }
.product-cta p { font-size: 16px; margin-bottom: 32px; max-width: 44ch; }

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.timeline { padding: 60px 0 120px; border-bottom: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 80px 1fr 1.1fr;
  gap: 64px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 920px) {
  .step { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
}
.step-rail {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  position: sticky;
  top: 100px;
}
@media (max-width: 920px) { .step-rail { position: static; } }
.step-rail::after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background: var(--line-strong);
  margin-top: 24px;
}
.step-body .kicker { color: var(--gold); }
.step-body h3 {
  margin-top: 16px;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  max-width: 14ch;
}
.step-body h3 em { color: var(--gold); font-style: italic; }
.step-body p {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 300;
  max-width: 44ch;
}
.step-body .detail {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-dim);
  max-width: 44ch;
  line-height: 1.65;
}
.step-img { aspect-ratio: 4 / 3; overflow: hidden; background: #050505; }
.step-img img { width: 100%; height: 100%; object-fit: cover; }

.closing { padding: 140px 0; text-align: center; }
.closing h2 { font-weight: 300; max-width: 18ch; margin: 0 auto; }
.closing h2 em { font-style: italic; color: var(--gold); }
.closing p { margin: 32px auto 40px; max-width: 48ch; font-size: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { padding: 100px 0; border-bottom: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-grid .col-left .eyebrow { margin-bottom: 32px; }
.about-grid h2 { font-weight: 300; max-width: 14ch; }
.about-grid h2 em { color: var(--gold); font-style: italic; }
.about-body {
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
  max-width: 56ch;
}
.about-body b { color: var(--gold); font-weight: 500; }
.about-body + .about-body { margin-top: 28px; }

.about-image {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-caption {
  position: absolute;
  left: 48px; bottom: 40px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-left: 2px solid var(--gold);
}
.about-image-caption b { display: block; color: var(--gold); margin-bottom: 4px; font-weight: 500; }

.principles { padding: 120px 0; }
.principles-head { margin-bottom: 64px; max-width: 64ch; }
.principles-head h2 { font-weight: 300; }
.principles-head h2 em { color: var(--gold); font-style: italic; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 920px) { .principles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .principles-grid { grid-template-columns: 1fr; } }
.principle {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principle:last-child { border-right: 0; }
.principle .num {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.principle h4 { margin-top: 16px; font-size: 24px; line-height: 1.2; font-weight: 400; }
.principle p { margin-top: 14px; font-size: 14px; color: var(--ink-dim); line-height: 1.6; }

/* ============================================================
   TRY IT PAGE
   ============================================================ */
.try-hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 920px) {
  .try-hero { grid-template-columns: 1fr; min-height: 0; }
}
.try-content {
  padding: 100px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
@media (max-width: 920px) {
  .try-content { padding: 80px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
}
.try-content .eyebrow { margin-bottom: 24px; }
.try-content h1 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  font-weight: 300;
  max-width: 12ch;
}
.try-content h1 em { color: var(--gold); font-style: italic; }
.try-content .lede {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 300;
  max-width: 44ch;
  color: var(--ink);
}
.try-content .email-form { margin-top: 44px; }
.access-link {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: color .2s, border-color .2s;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.access-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.access-link .arrow { transition: transform .2s; }
.access-link:hover .arrow { transform: translateX(4px); }

.try-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.try-image img { width: 100%; height: 100%; object-fit: cover; }
.try-image::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.35);
}
.try-image-caption {
  position: absolute;
  left: 48px; bottom: 48px; right: 48px;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.3;
  font-weight: 300;
  color: var(--ink);
  max-width: 22ch;
}
.try-image-caption + .try-image-caption {
  bottom: 16px;
  font-family: var(--sans);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}

.try-meta { border-top: 1px solid var(--line); padding: 48px 0; }
.try-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 720px) { .try-meta-grid { grid-template-columns: 1fr; gap: 24px; } }
.meta-item .kicker { color: var(--gold); margin-bottom: 8px; display: block; }
.meta-item p { font-size: 14px; color: var(--ink-dim); max-width: 32ch; }
