:root{
  --ink: #F5F7FD;
  --panel: #EBF0FB;
  --panel-border: rgba(12,20,52,0.09);
  --paper: #0C1433;
  --slate: #46567A;
  --accent: #2355D8;
  --accent-soft: rgba(35,85,216,0.09);
  --orange: #F05C0E;
  --orange-soft: rgba(240,92,14,0.09);
  --status: #2355D8;
  --status-soft: rgba(35,85,216,0.12);
  --divider: rgba(12,20,52,0.08);
  --radius: 10px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background: #F5F7FD;
  color:var(--paper);
  font-family:'Inter',sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;}
img{max-width:100%;}

.wrap{
  max-width:1080px;
  margin:0 auto;
  padding:0 28px;
}

h1,h2,h3{
  font-family:'DM Serif Display',serif;
  margin:0;
  letter-spacing:0.02em;
}

.mono{
  font-family:'IBM Plex Mono',monospace;
}

.eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.eyebrow::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
}

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

/* ===== Nav ===== */
nav{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(245,247,253,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--divider);
}
nav .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:16px;
  padding-bottom:16px;
}
.logo{
  font-family:'DM Serif Display',serif;
  font-weight:600;
  font-size:24px;
  letter-spacing:0.02em;
}
.logo span{color:var(--accent);}
.nav-cta{
  font-family:'IBM Plex Mono',monospace;
  font-size:13px;
  font-weight:500;
  text-decoration:none;
  color:var(--accent);
  border:1.5px solid var(--accent);
  padding:9px 17px;
  border-radius:7px;
  transition:background .15s ease, color .15s ease;
}
.nav-cta:hover{
  background:var(--accent);
  color:#FFFFFF;
}

/* ===== Hero ===== */
header.hero{
  padding:96px 0 104px;
  border-bottom:1px solid var(--divider);
  background:
    radial-gradient(ellipse 800px 600px at 10% 70%, rgba(35,85,216,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 90% 10%, rgba(240,92,14,0.08) 0%, transparent 70%),
    #F5F7FD;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:64px;
  align-items:center;
}
.hero-single{
  grid-template-columns:1fr;
  text-align:center;
  max-width:900px;
  margin:0 auto;
}
.hero-single .lede{
  margin-left:auto;
  margin-right:auto;
}
.hero-single .hero-ctas{
  justify-content:center;
}
.hero .eyebrow{
  font-size:20px;
  letter-spacing:0.04em;
  font-weight:700;
  text-transform:none;
}
.hero .eyebrow::before{
  display:none;
}
.hero .eyebrow::before{
  width:9px;
  height:9px;
}
.hero h1{
  font-size:50px;
  line-height:1.12;
  font-weight:600;
  margin:18px 0 22px;
}
.hero h1 em{
  font-style:italic;
  color:var(--orange);
}
.hero p.lede{
  font-size:22px;
  color:var(--paper);
  margin-bottom:36px;
}
.hero-ctas{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn-primary{
  background: linear-gradient(135deg, #F05C0E 0%, #D44D08 100%);
  color:#FFFFFF;
  font-weight:600;
  text-decoration:none;
  padding:14px 24px;
  border-radius:8px;
  font-size:15px;
  display:inline-block;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(240,92,14,0.36);
}
.btn-ghost{
  color:var(--paper);
  text-decoration:none;
  padding:14px 18px;
  font-size:15px;
  border-bottom:2px solid var(--panel-border);
  transition: border-color .15s ease;
}
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }

/* ===== Status panel ===== */
.panel{
  background:var(--panel);
  border:1px solid var(--panel-border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:
    0 2px 6px rgba(12,20,52,0.06),
    0 12px 32px rgba(12,20,52,0.08),
    0 40px 80px -20px rgba(35,85,216,0.12);
}
.panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 20px;
  border-bottom:1px solid var(--panel-border);
}
.panel-head .mono{
  font-size:12px;
  color:var(--slate);
  letter-spacing:0.04em;
}
.panel-dots{display:flex; gap:6px;}
.panel-dots span{
  width:8px;height:8px;border-radius:50%;
  background:rgba(12,20,52,0.12);
}
.panel-rows{padding:6px 0;}
.panel-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  border-bottom:1px solid var(--panel-border);
}
.panel-row:last-child{border-bottom:none;}
.row-label{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14.5px;
}
.pulse{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 0 var(--status-soft);
  animation:pulse 2.2s infinite;
  flex:none;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(35,85,216,0.50);}
  70%{box-shadow:0 0 0 7px rgba(35,85,216,0);}
  100%{box-shadow:0 0 0 0 rgba(35,85,216,0);}
}
.row-status{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  color:var(--accent);
  letter-spacing:0.02em;
}
.panel-foot{
  padding:13px 20px;
  font-family:'IBM Plex Mono',monospace;
  font-size:11.5px;
  color:var(--slate);
  background:rgba(12,20,52,0.05);
  display:flex;
  justify-content:space-between;
}

@media (prefers-reduced-motion: reduce){
  .pulse{animation:none;}
}

/* ===== Sections ===== */
section{padding:88px 0;}

/* Pain section — cool blue */
section.alt{
  background: linear-gradient(180deg, #E8EEFB 0%, #DDE6F8 100%);
  border-bottom:1px solid rgba(35,85,216,0.12);
  border-top:1px solid rgba(35,85,216,0.12);
}

/* Pricing section — warm orange */
section.pricing-section{
  background: linear-gradient(180deg, #FEF2E8 0%, #FDE5D0 100%);
  border-color: rgba(240,92,14,0.15);
}

.section-head{
  margin-bottom:48px;
}
.section-head h2{
  font-size:36px;
  margin-top:0;
  font-weight:600;
  line-height:1.15;
}
.section-sub{
  font-family:'DM Serif Display',serif;
  font-style:italic;
  color:var(--slate);
  font-size:26px;
  font-weight:400;
  margin:10px 0 0;
  line-height:1.4;
}

/* What's included cards */
.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.card{
  border:1px solid transparent;
  border-top-width:3px;
  border-radius:var(--radius);
  padding:28px 24px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card--blue{
  background: linear-gradient(160deg, #EBF1FE 0%, #E0EAFD 100%);
  border-color: rgba(35,85,216,0.14);
  border-top-color: var(--accent);
}
.card--orange{
  background: linear-gradient(160deg, #FEF0E8 0%, #FDE4CE 100%);
  border-color: rgba(240,92,14,0.14);
  border-top-color: var(--orange);
}
.card:hover{ transform:translateY(-3px); }
.card--blue:hover{ box-shadow:0 10px 32px rgba(35,85,216,0.15); }
.card--orange:hover{ box-shadow:0 10px 32px rgba(240,92,14,0.15); }
.card h3{
  font-size:26px;
  margin:0 0 6px;
  font-weight:600;
}
.card-sub{
  font-size:13.5px;
  font-weight:500;
  margin:0 0 12px;
}
.card--blue .card-sub{ color:var(--accent); }
.card--orange .card-sub{ color:var(--orange); }
.card p{
  color:var(--slate);
  font-size:14.5px;
  margin:0;
}

/* Pain section body text */
.pain-body{
  color:var(--slate);
  font-size:15.5px;
  line-height:1.65;
  margin:0 0 16px;
}
.pain-conclusion{
  color:var(--paper);
  font-size:15.5px;
  font-weight:600;
  line-height:1.65;
  margin:20px 0 0;
}

/* Pain points */
.pain-list{
  display:grid;
  gap:8px;
}
.pain-item{
  display:grid;
  grid-template-columns:36px 1fr;
  gap:16px;
  padding:20px 18px;
  border-radius:var(--radius);
  align-items:start;
}
.pain-item{
  background: #F0F5FF;
  border:1px solid rgba(35,85,216,0.18);
}
.pain-item .mark{ color:var(--accent); }
.pain-item .mark{
  font-family:'IBM Plex Mono',monospace;
  font-size:15px;
  font-weight:500;
  padding-top:2px;
}
.pain-item p{margin:0; color:var(--slate); font-size:15.5px;}
.pain-item strong{color:var(--paper); font-weight:600;}

/* Pricing */
.price-box{
  border:2px solid rgba(240,92,14,0.45);
  border-top:5px solid var(--orange);
  border-radius:var(--radius);
  background: linear-gradient(160deg, #FFFFFF 0%, #FEF6F0 100%);
  box-shadow:
    0 4px 12px rgba(240,92,14,0.08),
    0 24px 64px rgba(240,92,14,0.16),
    0 48px 96px -24px rgba(240,92,14,0.12);
  padding:52px 48px;
  max-width:680px;
  margin:0 auto;
  text-align:left;
}
.price-row{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin:0 0 28px;
}
.price-row .amount{
  font-family:'DM Serif Display',serif;
  font-size:80px;
  font-weight:600;
  color:var(--orange);
  line-height:1;
  letter-spacing:-0.01em;
}
.price-row .period{
  color:var(--slate);
  font-size:18px;
}
.price-list{
  list-style:none;
  padding:0;
  margin:0 0 32px;
  display:grid;
  gap:14px;
}
.price-list li{
  display:flex;
  gap:14px;
  font-size:15.5px;
  color:var(--paper);
  font-weight:600;
}
.price-list li::before{
  content:"";
  width:8px;height:8px;
  border-radius:50%;
  background:var(--accent);
  margin-top:6px;
  flex:none;
}
.price-rules{
  background: rgba(35,85,216,0.05);
  border:1px solid rgba(35,85,216,0.12);
  border-left:3px solid var(--accent);
  border-radius:8px;
  padding:18px 20px;
  margin-bottom:24px;
  display:grid;
  gap:8px;
}
.price-rules p{
  margin:0;
  font-size:14px;
  color:var(--slate);
}
.price-rules .price-rules-head{
  margin-bottom:2px;
}
.price-rules .price-rules-head strong{
  color:var(--accent);
  font-size:15px;
}
.price-rules p strong{
  color:var(--paper);
}
.price-note{
  font-size:17px;
  font-weight:700;
  color:var(--orange);
  margin:0;
  padding-top:24px;
  border-top:1px solid rgba(240,92,14,0.15);
}

/* About */
.about{
  border-top:1px solid var(--divider);
  border-bottom:1px solid var(--divider);
}
.about-grid{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:56px;
  align-items:center;
}
.about-photo{
  width:160px;
  height:160px;
  border-radius:50%;
  overflow:hidden;
  flex:none;
}
.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.about h2{
  margin:12px 0 16px;
}
.about p{
  color:var(--slate);
  font-size:15.5px;
  margin:0 0 12px;
}
.about p:last-child{ margin:0; }

@media (max-width: 860px){
  .about-grid{ grid-template-columns:1fr; text-align:center; }
  .about-photo{ margin:0 auto; }
}

/* Final CTA — dark navy */
.final-cta{
  text-align:center;
  padding:104px 0;
  background: linear-gradient(135deg, #0C1433 0%, #162050 50%, #1A1848 100%);
  color:#F5F7FD;
  border-top:none;
}
.final-cta .eyebrow{
  color:var(--orange);
}
.final-cta .eyebrow::before{
  background:var(--orange);
}
.final-cta h2{
  font-size:36px;
  font-weight:600;
  margin:18px auto 16px;
  color:#FFFFFF;
}
.final-cta p{
  color:rgba(245,247,253,0.65);
  margin:0 auto 36px;
  font-size:15.5px;
}

/* Footer — dark navy */
footer{
  background: #0A1128;
  border-top:1px solid rgba(245,247,253,0.07);
  padding:32px 0;
}
footer .wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
footer .logo{
  color:#F5F7FD;
}
footer .logo span{
  color:var(--orange);
}
footer .mono{
  font-size:15px;
  color:rgba(245,247,253,0.45);
}

/* How it works — card grid */
.how-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
}
.how-card{
  grid-column:span 2;
}
.how-card:nth-child(4){
  grid-column:2 / span 2;
}
.how-card:nth-child(5){
  grid-column:4 / span 2;
}
.how-card{
  background:#FFFFFF;
  border:1px solid rgba(35,85,216,0.12);
  border-radius:var(--radius);
  padding:28px 24px;
}

.how-card-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
}
.how-icon{
  width:52px;
  height:52px;
  background:var(--accent-soft);
  border:1.5px solid rgba(35,85,216,0.2);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
  color:var(--accent);
}
.how-icon svg{
  width:28px;
  height:28px;
}
.how-card h3{
  font-size:26px;
  font-weight:600;
  margin:0;
  line-height:1.2;
}
.how-card p{
  color:var(--slate);
  font-size:14.5px;
  margin:0;
  line-height:1.6;
}
@media(max-width:860px){
  .how-grid{grid-template-columns:repeat(4,1fr);}
  .how-card{grid-column:span 2;}
  .how-card:nth-child(4),.how-card:nth-child(5){grid-column:span 2;}
}
@media(max-width:560px){
  .how-grid{grid-template-columns:1fr;}
  .how-card,.how-card:nth-child(4),.how-card:nth-child(5){grid-column:span 1;}
}

/* About CTA note */
.about-cta-note{
  font-size:13.5px;
  color:var(--slate);
  margin:8px 0 0;
  font-style:italic;
}

/* Why body */
.why-body{
  color:var(--slate);
  font-size:16px;
  margin:0;
  line-height:1.75;
}

/* FAQ */
.faq-list{
  display:grid;
  gap:14px;
}
.faq-item{
  padding:24px 28px;
  border-radius:var(--radius);
  background:#F0F5FF;
  border:1px solid rgba(35,85,216,0.18);
}
.faq-item h4{
  font-family:'Inter',sans-serif;
  font-size:15.5px;
  font-weight:600;
  color:var(--paper);
  margin:0 0 10px;
}
.faq-item p{
  color:var(--slate);
  font-size:15px;
  margin:0;
  line-height:1.6;
}

@media (max-width: 860px){
  .hero-grid{grid-template-columns:1fr; gap:48px;}
  .cards{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .hero h1{font-size:36px;}
}

@media (max-width: 560px){
  nav .wrap{gap:12px;}
  .logo{font-size:20px;}
  .nav-cta{
    font-size:11px;
    padding:7px 11px;
    line-height:1.2;
  }
}
