:root{
  --navy:#061827;
  --navy2:#082238;
  --gold:#c9942d;
  --gold2:#d7ad62;
  --ivory:#fbf8f1;
  --paper:#fffdf8;
  --line:#dfd0b8;
  --ink:#101820;
  --muted:#66727d;
  --serif:"Cormorant Garamond",Georgia,serif;
  --sans:"Inter",Arial,sans-serif;
  --shadow:0 24px 58px rgba(6,24,39,.16);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.55;
}
body.mobile-nav-open{overflow:hidden}
.container{width:min(1180px,calc(100% - 72px));margin:0 auto}
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,253,248,.97);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.site-nav{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  width:min(1180px,calc(100% - 72px));
  margin:0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--navy);
  flex:0 0 auto;
}
.brand img{width:46px;height:46px;object-fit:contain;display:block}
.brand b{
  display:block;
  font-family:var(--serif);
  font-size:31px;
  letter-spacing:.105em;
  line-height:.85;
}
.brand small{
  display:block;
  font-size:10px;
  color:#617080;
  letter-spacing:.055em;
  margin-top:6px;
}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{
  position:relative;
  color:var(--navy);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
}
.nav-links a.active:after,
.nav-links a:hover:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-12px;
  height:2px;
  background:var(--gold);
}
.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--paper);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  padding:0;
}
.nav-toggle span{display:block;width:21px;height:2px;background:var(--navy);transition:transform .22s ease,opacity .22s ease}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-panel{
  display:none;
  position:fixed;
  left:0;
  right:0;
  top:78px;
  background:rgba(255,253,248,.99);
  border-bottom:1px solid var(--line);
  box-shadow:0 22px 44px rgba(6,24,39,.12);
  padding:18px 24px 24px;
  z-index:99;
}
.mobile-panel a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:48px;
  color:var(--navy);
  text-decoration:none;
  font-weight:850;
  border-bottom:1px solid rgba(223,208,184,.65);
}
.mobile-panel a.active{color:#9a6119}
.mobile-panel .btn{margin-top:16px;border-bottom:0;justify-content:center;min-height:48px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  white-space:nowrap;
  border:0;
  cursor:pointer;
  font-family:var(--sans);
}
.btn-navy{background:var(--navy);color:white;box-shadow:0 14px 32px rgba(6,24,39,.18)}
.btn-gold{background:var(--gold);color:white;box-shadow:0 14px 28px rgba(201,148,45,.22)}
.btn-outline{border:1px solid var(--gold);color:#8a5914;background:rgba(255,253,248,.72)}
.text-link{
  color:#8a5914;
  font-weight:900;
  text-decoration:none;
  border-bottom:1px solid rgba(201,148,45,.45);
  padding-bottom:3px;
}
.eyebrow{
  display:inline-flex;
  gap:14px;
  align-items:center;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#a8641c;
  font-weight:900;
  font-size:11px;
}
h1,h2,h3{
  font-family:var(--serif);
  color:var(--navy);
  font-weight:700;
  letter-spacing:-.018em;
  margin:0;
}
h1{font-size:clamp(50px,5.1vw,72px);line-height:1.02}
h2{font-size:clamp(34px,3.2vw,48px);line-height:1.08}
h3{font-size:18px;line-height:1.2}
.gold-line{
  width:44px;
  height:2px;
  background:var(--gold);
  margin:24px 0 24px;
}
.roadmap-hero{
  padding:70px 0 68px;
  background:
    linear-gradient(90deg,rgba(251,248,241,.98) 0%,rgba(251,248,241,.92) 42%,rgba(6,24,39,.08) 100%),
    radial-gradient(circle at 83% 26%,rgba(201,148,45,.12),transparent 34%);
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
  gap:64px;
}
.hero-copy .lead{
  color:#1e2a34;
  font-size:18px;
  line-height:1.55;
  max-width:520px;
  margin:0 0 18px;
}
.hero-copy p:not(.lead){
  color:#273642;
  max-width:520px;
  margin:0 0 26px;
}
.hero-actions{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.hero-preview-card{
  position:relative;
  display:block;
  text-decoration:none;
  color:var(--navy);
  border-radius:16px;
  border:1px solid rgba(201,148,45,.38);
  background:var(--paper);
  box-shadow:var(--shadow);
  overflow:hidden;
  transform:translateZ(0);
}
.hero-preview-card:after{
  content:"";
  position:absolute;
  inset:0;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.62);
  pointer-events:none;
}
.hero-preview-card img{
  display:block;
  width:100%;
  height:520px;
  object-fit:cover;
  object-position:top left;
  transition:transform .25s ease;
}
.hero-preview-card:hover img{transform:scale(1.018)}
.preview-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:3;
  background:rgba(6,24,39,.9);
  color:#f4ddb0;
  border:1px solid rgba(201,148,45,.45);
  border-radius:999px;
  padding:9px 14px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.preview-cta{
  position:absolute;
  right:18px;
  bottom:18px;
  z-index:3;
  background:var(--gold);
  color:white;
  border-radius:6px;
  padding:12px 16px;
  font-size:13px;
  font-weight:900;
}
.dark-roadmap-strip{
  background:linear-gradient(90deg,#061827,#092741);
  color:white;
  padding:46px 0;
}
.strip-grid{
  display:grid;
  grid-template-columns:1.05fr repeat(4,1fr);
  align-items:center;
}
.strip-title{
  padding-right:34px;
  border-right:1px solid rgba(255,255,255,.22);
}
.strip-title h2{color:white;font-size:30px;line-height:1.23}
.dark-roadmap-strip article{
  min-height:136px;
  padding:0 34px;
  border-right:1px solid rgba(255,255,255,.22);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.dark-roadmap-strip article:last-child{border-right:0}
.line-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  color:var(--gold);
}
.line-icon svg{
  width:39px;
  height:39px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.55;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.dark-roadmap-strip p{
  color:white;
  margin:14px 0 0;
  line-height:1.38;
  font-weight:750;
}
.included-section{
  padding:72px 0;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.included-grid{
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:72px;
  align-items:start;
}
.included-heading{padding-top:22px}
.included-items{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
}
.included-items article{
  min-height:190px;
  padding:0 28px 34px;
  text-align:center;
  border-right:1px solid var(--line);
}
.included-items article:nth-child(3n){border-right:0}
.included-items article:nth-child(n+4){padding-top:34px}
.round-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:62px;
  height:62px;
  margin:0 auto 18px;
  border-radius:999px;
  background:#f7f0e5;
  border:1px solid var(--line);
  color:var(--gold);
}
.round-icon svg{
  width:31px;
  height:31px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.55;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.included-items p{
  color:#293540;
  font-size:13.5px;
  line-height:1.48;
  margin:8px auto 0;
  max-width:210px;
}
.real-example-section{
  padding:64px 0 58px;
  background:linear-gradient(180deg,#fbf8f1,#fffdf8);
  border-bottom:1px solid var(--line);
}
.example-grid{
  display:grid;
  grid-template-columns:.76fr 1.24fr;
  gap:62px;
  align-items:center;
}
.example-copy p{
  max-width:440px;
  color:#293540;
  margin:0 0 28px;
}
.wide-preview{
  display:block;
  border:1px solid rgba(201,148,45,.35);
  border-radius:12px;
  background:white;
  box-shadow:0 18px 46px rgba(6,24,39,.1);
  overflow:hidden;
  text-decoration:none;
}
.wide-preview img{
  width:100%;
  height:330px;
  object-fit:cover;
  object-position:top left;
  display:block;
  transition:transform .25s ease;
}
.wide-preview:hover img{transform:scale(1.015)}
.final-cta{
  background:linear-gradient(90deg,#061827,#092741);
  color:white;
  padding:42px 0;
}
.final-grid{
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:40px;
  align-items:center;
}
.cta-mark img{
  width:96px;
  height:96px;
  object-fit:contain;
  filter:drop-shadow(0 0 20px rgba(201,148,45,.2));
}
.final-cta h2{color:white;font-size:38px}
.final-cta p{color:rgba(255,255,255,.76);margin:7px 0 0}
.site-footer{
  background:var(--paper);
  border-top:1px solid var(--line);
}
.footer-grid{
  min-height:76px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  text-align:center;
}
.footer-grid span{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  border-right:1px solid var(--line);
  color:var(--navy);
  font-size:13px;
  font-weight:800;
}
.footer-grid span:last-child{border-right:0}
.footer-icon{
  width:30px;
  height:30px;
  display:inline-flex;
  color:var(--navy);
}
.footer-icon svg{
  width:28px;
  height:28px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
@media(max-width:1020px){
  .nav-links,.nav-cta{display:none}
  .nav-toggle{display:flex}
  body.mobile-nav-open .mobile-panel{display:block}
  .site-nav{height:74px}
  .mobile-panel{top:74px}
  .hero-grid,.included-grid,.example-grid,.final-grid{grid-template-columns:1fr}
  .hero-preview-card img{height:460px}
  .strip-grid{grid-template-columns:1fr 1fr}
  .strip-title{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.22);
    grid-column:1/-1;
    padding:0 0 24px;
    text-align:center;
  }
  .dark-roadmap-strip article{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.16);
  }
  .included-items{grid-template-columns:repeat(2,1fr)}
  .included-items article{border-right:0;border-bottom:1px solid var(--line);padding:28px 22px}
  .footer-grid{grid-template-columns:repeat(2,1fr);gap:18px;padding:18px 0}
  .footer-grid span{border-right:0}
}
@media(max-width:680px){
  .container,.site-nav{width:min(100% - 34px,1180px)}
  .brand img{width:40px;height:40px}
  .brand b{font-size:24px}
  .brand small{font-size:9px}
  .nav-toggle{width:42px;height:42px}
  h1{font-size:42px}
  h2{font-size:31px}
  .roadmap-hero{padding:46px 0 44px}
  .hero-grid{gap:32px}
  .hero-copy .lead{font-size:16px}
  .btn{width:100%;min-height:46px}
  .hero-actions{gap:14px}
  .text-link{display:inline-flex;justify-content:center;width:100%}
  .hero-preview-card img{height:360px}
  .preview-badge{top:12px;left:12px;font-size:10px;padding:8px 11px}
  .preview-cta{left:12px;right:12px;text-align:center;font-size:12.5px}
  .dark-roadmap-strip{padding:36px 0}
  .strip-grid{grid-template-columns:1fr}
  .dark-roadmap-strip article{
    min-height:106px;
    padding:22px 12px;
  }
  .line-icon{width:42px;height:42px}
  .line-icon svg{width:34px;height:34px}
  .included-section,.real-example-section{padding:52px 0}
  .included-grid{gap:26px}
  .included-items{grid-template-columns:1fr}
  .included-items article{
    min-height:auto;
    text-align:left;
    display:grid;
    grid-template-columns:60px 1fr;
    column-gap:16px;
    align-items:center;
    padding:20px 0;
  }
  .round-icon{margin:0}
  .included-items article h3{margin:0}
  .included-items article p{grid-column:2;margin:4px 0 0;max-width:none}
  .wide-preview img{height:280px}
  .final-cta{text-align:center}
  .final-grid{gap:20px}
  .cta-mark img{width:72px;height:72px}
  .final-cta h2{font-size:30px}
  .footer-grid{grid-template-columns:1fr}
  .footer-grid span{justify-content:center;padding:8px 0}
}
