:root {
  --navy: #0a1628;
  --blue-bright: #2d8ef0;
  --orange: #f47c20;
  --orange2: #ff6b35;
  --orange-glow: rgba(244,124,32,0.4);
  --off-white: #f4f6fb;
  --gray: #6b7a99;
  --gray-light: #e2e8f0;
  --green: #0a7a55;
  --red: #c0392b;
  --amber: #92400e;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Montserrat',sans-serif;background:#fff;color:var(--navy);}

/* ALERT BAR */
.alert-bar{background:var(--navy);padding:12px 20px;display:flex;justify-content:center;align-items:center;gap:16px;}
.alert-text{font-family:'Montserrat',sans-serif;font-size:14px;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;color:#fff;}
.alert-text span{color:var(--orange);}
.alarm{font-size:22px;animation:flash 1.2s infinite;}
@keyframes flash{0%,100%{opacity:1;}50%{opacity:0.3;}}

/* NAV */
nav{background:#fff;border-bottom:1px solid var(--gray-light);padding:16px 5%;display:flex;flex-direction:column;align-items:center;gap:14px;position:sticky;top:0;z-index:100;}
.nav-logo-img{width:120px;height:120px;border-radius:50%;object-fit:cover;border:3px solid var(--gray-light);}
.nav-links{display:flex;gap:36px;align-items:center;}
.nav-links a{font-family:'Montserrat',sans-serif;font-size:15px;font-weight:600;color:var(--navy);text-decoration:none;transition:color 0.2s;}
.nav-links a:hover{color:var(--blue-bright);}

/* HERO */
.hero{
  background:var(--off-white);text-align:center;
  padding:60px 5% 60px;position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:radial-gradient(ellipse at 50% 0%,rgba(45,142,240,0.07) 0%,transparent 65%);
  pointer-events:none;
}
.founder-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--orange);color:#fff;
  font-family:'Montserrat',sans-serif;font-size:13px;font-weight:700;
  letter-spacing:0.06em;text-transform:uppercase;
  border-radius:50px;padding:10px 24px;margin-bottom:28px;
  box-shadow:0 0 24px var(--orange-glow),0 4px 16px rgba(244,124,32,0.3);
  animation:badgePulse 2.5s infinite;
}
@keyframes badgePulse{
  0%,100%{box-shadow:0 0 24px var(--orange-glow),0 4px 16px rgba(244,124,32,0.3);}
  50%{box-shadow:0 0 40px rgba(244,124,32,0.6),0 4px 20px rgba(244,124,32,0.4);}
}

/* ── HERO HEADLINE ── */
.hero-headline{
  font-family:'Montserrat',sans-serif;
  font-weight:900;
  font-size:clamp(44px,7.5vw,86px);
  line-height:1.08;
  letter-spacing:-0.022em;
  margin-bottom:22px;
  max-width:820px;
  margin-left:auto;margin-right:auto;
  text-align:center;
}


.hero-headline .blue-words{
  color:#2d8ef0;
  font-weight:900;
  letter-spacing:-0.025em;
}

.hero-sub{
  font-family:'Inter',sans-serif;font-size:18px;color:var(--gray);line-height:1.6;
  max-width:520px;margin:0 auto 18px;
}
.hero-sub .highlight{color:var(--blue-bright);font-weight:600;}
.hero-divider{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin-bottom:32px;color:var(--blue-bright);font-size:20px;
}
.hero-divider::before,.hero-divider::after{
  content:'';display:block;width:60px;height:2px;
  background:linear-gradient(90deg,transparent,var(--blue-bright));
}
.hero-divider::after{background:linear-gradient(90deg,var(--blue-bright),transparent);}
.hero-btns{display:flex;gap:14px;justify-content:center;align-items:center;flex-wrap:wrap;margin-bottom:40px;}
.btn-primary{
  display:inline-block;background:var(--orange);color:#fff;
  font-family:'Montserrat',sans-serif;font-size:15px;font-weight:700;letter-spacing:0.03em;
  border:none;border-radius:50px;padding:16px 34px;cursor:pointer;text-decoration:none;
  transition:all 0.2s;box-shadow:0 4px 20px rgba(244,124,32,0.35);
}
.btn-primary:hover{background:#d96a10;transform:translateY(-2px);box-shadow:0 6px 26px rgba(244,124,32,0.45);}
.btn-secondary{
  display:inline-block;background:transparent;color:var(--navy);
  font-family:'Montserrat',sans-serif;font-size:15px;font-weight:600;
  border:2px solid var(--gray-light);border-radius:50px;padding:14px 28px;cursor:pointer;
  text-decoration:none;transition:all 0.2s;
}
.btn-secondary:hover{border-color:var(--navy);transform:translateY(-1px);}

/* PRICE LADDER */
.price-ladder{
  display:inline-flex;align-items:stretch;
  border-radius:16px;overflow:hidden;
  box-shadow:0 8px 32px rgba(10,22,40,0.18);
  border:1.5px solid rgba(10,22,40,0.12);
}
.pl-card{display:flex;flex-direction:column;justify-content:center;text-align:center;padding:18px 26px;min-width:130px;}
.pl-card+.pl-card{border-left:1.5px solid rgba(255,255,255,0.15);}
.pl-card.active{background:var(--navy);}
.pl-card.active .pl-price{font-family:'Montserrat',sans-serif;font-size:22px;font-weight:900;color:#fff;letter-spacing:-0.01em;}
.pl-card.active .pl-label{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;color:#93c5fd;margin-top:4px;}
.pl-card.active .pl-badge{display:inline-block;background:var(--orange);color:#fff;font-size:9px;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;border-radius:20px;padding:3px 9px;margin-top:6px;}
.pl-card.upcoming{background:#f0f4fa;}
.pl-card.upcoming .pl-price{font-family:'Montserrat',sans-serif;font-size:20px;font-weight:800;color:#8a96b0;text-decoration:line-through;text-decoration-color:#b0bbcc;letter-spacing:-0.01em;}
.pl-card.upcoming .pl-label{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;color:#a0acbe;margin-top:4px;}
.pl-arrow{display:flex;align-items:center;justify-content:center;background:#dde4ef;padding:0 10px;color:#8a96b0;font-size:16px;font-weight:700;flex-shrink:0;min-width:30px;}

/* PROOF CARDS */
.proof-section{background:var(--off-white);padding:44px 5%;display:flex;flex-direction:column;align-items:center;gap:14px;}
.proof-card{background:#fff;border-radius:16px;box-shadow:0 4px 20px rgba(10,22,40,0.07),0 1px 4px rgba(10,22,40,0.04);padding:20px 32px;max-width:540px;width:100%;display:flex;align-items:center;gap:16px;border:1px solid rgba(226,232,240,0.8);transition:transform 0.2s,box-shadow 0.2s;}
.proof-card:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(10,22,40,0.1);}
.proof-icon{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--navy),var(--blue-bright));display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#fff;font-size:18px;}
.proof-text{font-family:'Montserrat',sans-serif;font-size:14px;font-weight:600;color:var(--navy);line-height:1.45;}

/* SECTIONS */
.section{padding:64px 5%;}
.section.alt{background:var(--off-white);}
.s-label{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--blue-bright);margin-bottom:10px;text-align:center;}
.s-title{font-family:'Montserrat',sans-serif;font-size:clamp(26px,3.5vw,38px);font-weight:800;color:var(--navy);margin-bottom:10px;text-align:center;letter-spacing:-0.02em;line-height:1.1;}
.s-sub{font-family:'Inter',sans-serif;font-size:15px;color:var(--gray);line-height:1.65;max-width:520px;margin:0 auto 40px;text-align:center;}

/* STACK CARDS */
.stack-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;max-width:700px;margin:0 auto;}
.stack-card{background:#fff;border:1.5px solid var(--gray-light);border-radius:16px;padding:1.4rem;text-align:center;transition:border-color 0.2s,transform 0.2s,box-shadow 0.2s;}
.stack-card:hover{border-color:var(--blue-bright);transform:translateY(-3px);box-shadow:0 8px 24px rgba(45,142,240,0.1);}
.stack-card .icon{font-size:30px;color:var(--blue-bright);margin-bottom:12px;display:block;}
.stack-card h3{font-family:'Montserrat',sans-serif;font-size:14px;font-weight:700;color:var(--navy);margin-bottom:6px;}
.stack-card p{font-family:'Inter',sans-serif;font-size:12px;color:var(--gray);line-height:1.5;}
.stack-card .others{font-size:12px;color:var(--gray);margin-top:6px;font-weight:600;font-style:normal;font-family:'Montserrat',sans-serif;}

/* TABLE */
.table-wrap{overflow-x:auto;border-radius:16px;border:1.5px solid var(--gray-light);overflow:hidden;max-width:860px;margin:0 auto;}
table{width:100%;border-collapse:collapse;font-size:13px;}
thead th{padding:12px 14px;font-weight:700;font-size:11px;text-transform:uppercase;letter-spacing:0.05em;color:var(--gray);text-align:left;border-bottom:1.5px solid var(--gray-light);background:#fff;}
thead th.pp{background:var(--navy);color:#93c5fd;}
tbody td{padding:13px 14px;border-bottom:1px solid var(--gray-light);color:var(--gray);vertical-align:middle;font-family:'Inter',sans-serif;}
tbody td.pp{background:#eef5fd;color:var(--navy);font-weight:600;font-family:'Montserrat',sans-serif;}
tbody tr:last-child td{border-bottom:none;}
.y{color:var(--green);font-size:16px;}
.n{color:var(--red);font-size:16px;}
.m{color:var(--amber);font-size:16px;}

/* FOUNDER CARD */
.founder-wrap{max-width:660px;margin:0 auto;}
.founder-card{border:2px solid var(--navy);border-radius:20px;padding:2rem;background:#fff;box-shadow:0 8px 40px rgba(10,22,40,0.1);}
.fc-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:16px;flex-wrap:wrap;gap:12px;}
.fc-badge{background:#fff3e0;color:#b45309;font-size:11px;font-weight:700;letter-spacing:0.04em;text-transform:uppercase;border-radius:50px;padding:6px 16px;font-family:'Montserrat',sans-serif;}
.fc-price .amount{font-family:'Montserrat',sans-serif;font-size:46px;font-weight:900;color:var(--navy);line-height:1;letter-spacing:-0.02em;}
.fc-price .was{font-size:12px;color:var(--gray);text-align:right;font-family:'Inter',sans-serif;}
.fc-title{font-family:'Montserrat',sans-serif;font-size:20px;font-weight:800;color:var(--navy);margin-bottom:8px;letter-spacing:-0.01em;}
.fc-desc{font-family:'Inter',sans-serif;font-size:14px;color:var(--gray);line-height:1.65;margin-bottom:18px;}
.perks{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:18px;}
.perk{display:flex;align-items:flex-start;gap:8px;font-size:13px;color:var(--gray);font-family:'Inter',sans-serif;}
.perk i{color:var(--blue-bright);font-size:16px;margin-top:2px;flex-shrink:0;}
.spots-row{display:flex;align-items:center;gap:12px;margin-bottom:18px;}
.spots-bar-bg{flex:1;height:7px;background:var(--gray-light);border-radius:4px;overflow:hidden;}
.spots-bar-fill{height:100%;width:57%;background:var(--navy);border-radius:4px;}
.spots-label{font-size:12px;color:var(--gray);white-space:nowrap;font-weight:600;font-family:'Montserrat',sans-serif;}
.cta-full{width:100%;background:var(--orange);color:#fff;font-family:'Montserrat',sans-serif;font-size:16px;font-weight:700;border:none;border-radius:50px;padding:16px;cursor:pointer;transition:all 0.2s;letter-spacing:0.02em;box-shadow:0 4px 20px rgba(244,124,32,0.3);}
.cta-full:hover{background:#d96a10;transform:translateY(-1px);box-shadow:0 6px 26px rgba(244,124,32,0.4);}
.cta-sub{text-align:center;font-size:11px;color:var(--gray);margin-top:10px;font-family:'Inter',sans-serif;}
.promise{max-width:660px;margin:18px auto 0;background:var(--off-white);border:1.5px solid var(--gray-light);border-radius:16px;padding:1.2rem 1.6rem;display:flex;gap:14px;align-items:flex-start;}
.promise i{color:var(--blue-bright);font-size:24px;flex-shrink:0;margin-top:2px;}
.promise h4{font-family:'Montserrat',sans-serif;font-size:15px;font-weight:700;color:var(--navy);margin-bottom:4px;}
.promise p{font-family:'Inter',sans-serif;font-size:13px;color:var(--gray);line-height:1.55;}

/* FINAL CTA */
.final-cta{text-align:center;padding:70px 5% 60px;background:var(--navy);position:relative;overflow:hidden;}
.final-cta::before{content:'';position:absolute;top:-50%;left:50%;transform:translateX(-50%);width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(45,142,240,0.12) 0%,transparent 70%);pointer-events:none;}
.final-cta h2{font-family:'Montserrat',sans-serif;font-size:clamp(28px,4.5vw,48px);font-weight:900;color:#fff;margin-bottom:12px;letter-spacing:-0.02em;line-height:1.1;}
.final-cta p.sub{font-family:'Inter',sans-serif;font-size:16px;color:#93c5fd;margin-bottom:28px;line-height:1.6;}
.btn-final{display:inline-block;background:var(--orange);color:#fff;font-family:'Montserrat',sans-serif;font-size:16px;font-weight:700;border:none;border-radius:50px;padding:17px 40px;cursor:pointer;text-decoration:none;transition:all 0.2s;letter-spacing:0.02em;box-shadow:0 4px 24px rgba(244,124,32,0.4);}
.btn-final:hover{background:#d96a10;transform:translateY(-2px);}
.final-note{font-family:'Inter',sans-serif;font-size:12px;color:#60a5fa;margin-top:12px;}

/* FOOTER */
footer{background:#060e1c;padding:28px 5%;text-align:center;}
.footer-logo{display:flex;align-items:center;justify-content:center;gap:10px;margin-bottom:14px;}
.footer-logo img{width:60px;height:60px;border-radius:50%;object-fit:cover;}
.footer-logo span{font-family:'Montserrat',sans-serif;font-size:15px;font-weight:700;color:#fff;}
.footer-links{display:flex;justify-content:center;gap:24px;margin-bottom:16px;flex-wrap:wrap;}
.footer-links a{font-family:'Inter',sans-serif;font-size:12px;color:#60a5fa;text-decoration:none;}
.footer-links a:hover{color:#fff;}
.footer-disclaimer{font-family:'Inter',sans-serif;font-size:11px;color:#3a526e;line-height:1.65;max-width:600px;margin:0 auto 10px;border-top:1px solid #111e32;padding-top:16px;}
.footer-disclaimer strong{color:#4a6a8a;}
.footer-copy{font-family:'Inter',sans-serif;font-size:11px;color:#1e3050;margin-top:8px;}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}
.hero>*{animation:fadeUp 0.5s ease both;}
.hero>*:nth-child(1){animation-delay:0.05s;}
.hero>*:nth-child(2){animation-delay:0.12s;}
.hero>*:nth-child(3){animation-delay:0.18s;}
.hero>*:nth-child(4){animation-delay:0.24s;}
.hero>*:nth-child(5){animation-delay:0.3s;}
.hero>*:nth-child(6){animation-delay:0.36s;}

/* ── ABOUT PAGE ── */
/* ── ABOUT PAGE SPECIFIC STYLES ── */

.about-hero {
  background: linear-gradient(160deg, #0a1628 0%, #0f2a50 60%, #0a1628 100%);
  text-align: center;
  padding: 80px 5% 90px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,142,240,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, #f4f6fb);
  pointer-events: none;
}
.about-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #2d8ef0;
  margin-bottom: 20px;
  background: rgba(45,142,240,0.12);
  border: 1px solid rgba(45,142,240,0.25);
  border-radius: 50px; padding: 6px 18px;
}
.about-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto 20px;
}
.about-hero h1 .accent {
  color: #2d8ef0;
}
.about-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px; color: #93c5fd;
  line-height: 1.7; max-width: 580px;
  margin: 0 auto;
}

/* INTRO SECTION */
.intro-section {
  background: #f4f6fb;
  padding: 72px 5%;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
}
.intro-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; color: #0a1628;
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.intro-text h2 .blue { color: #2d8ef0; }
.intro-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: #6b7a99;
  line-height: 1.75; margin-bottom: 16px;
}
.intro-text p:last-child { margin-bottom: 0; }
.intro-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  padding: 20px 24px;
  display: flex; gap: 16px; align-items: center;
  box-shadow: 0 4px 16px rgba(10,22,40,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.1);
}
.stat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.stat-icon.blue { background: rgba(45,142,240,0.1); color: #2d8ef0; }
.stat-icon.orange { background: rgba(244,124,32,0.1); color: #f47c20; }
.stat-icon.green { background: rgba(10,122,85,0.1); color: #0a7a55; }
.stat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700; color: #0a1628;
  margin-bottom: 3px;
}
.stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: #6b7a99; line-height: 1.45;
}

/* MISSION SECTION */
.mission-section {
  background: #fff;
  padding: 72px 5%;
  text-align: center;
}
.mission-inner {
  max-width: 820px;
  margin: 0 auto;
}
.mission-section .s-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #2d8ef0; margin-bottom: 10px;
}
.mission-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900; color: #0a1628;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.mission-section p {
  font-family: 'Inter', sans-serif;
  font-size: 16px; color: #6b7a99;
  line-height: 1.8; margin-bottom: 18px;
}
.mission-section p strong {
  color: #0a1628; font-weight: 600;
}

/* VISION CARDS */
.vision-section {
  background: #f4f6fb;
  padding: 72px 5%;
}
.vision-section .s-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #2d8ef0; margin-bottom: 10px; text-align: center;
}
.vision-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900; color: #0a1628;
  text-align: center; letter-spacing: -0.02em;
  margin-bottom: 40px; line-height: 1.1;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.vision-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #e2e8f0;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10,22,40,0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.vision-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10,22,40,0.1);
  border-color: #2d8ef0;
}
.vision-card .v-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #0a1628, #1a6bcc);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; margin: 0 auto 16px;
}
.vision-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 800; color: #0a1628;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.vision-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #6b7a99; line-height: 1.6;
}

/* MATT HOLLIS / FOUNDER SECTION */
.founder-section {
  background: #fff;
  padding: 72px 5%;
}
.founder-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.founder-badge-wrap {
  text-align: center;
}
.founder-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a1628, #1a6bcc);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 64px; color: #fff;
  border: 4px solid #e2e8f0;
}
.founder-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 800; color: #0a1628;
  margin-bottom: 4px;
}
.founder-role {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #6b7a99; font-weight: 500;
}
.founder-content .s-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #2d8ef0; margin-bottom: 10px;
}
.founder-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900; color: #0a1628;
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.founder-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: #6b7a99;
  line-height: 1.8; margin-bottom: 16px;
}
.founder-content p strong { color: #0a1628; font-weight: 600; }

/* TESTIMONIAL */
.testimonial-section {
  background: linear-gradient(135deg, #0a1628 0%, #0f2a50 100%);
  padding: 72px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,142,240,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.quote-mark {
  font-size: 80px;
  line-height: 0.6;
  color: rgba(45,142,240,0.3);
  font-family: Georgia, serif;
  margin-bottom: 24px;
  display: block;
}
.testimonial-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  color: #fff;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 32px;
  font-style: italic;
}
.testimonial-author {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.author-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 800;
  color: #fff;
}
.author-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #60a5fa;
}
.author-divider {
  width: 40px; height: 2px;
  background: #2d8ef0;
  margin: 10px auto;
}

/* WHO WE SERVE */
.serve-section {
  background: #f4f6fb;
  padding: 72px 5%;
  text-align: center;
}
.serve-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900; color: #0a1628;
  letter-spacing: -0.02em; margin-bottom: 10px;
  line-height: 1.1;
}
.serve-section .s-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: #6b7a99;
  max-width: 500px; margin: 0 auto 36px;
  line-height: 1.65;
}
.serve-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.serve-pill {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #0a1628;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 8px rgba(10,22,40,0.05);
  transition: all 0.2s;
}
.serve-pill:hover {
  border-color: #2d8ef0;
  color: #2d8ef0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45,142,240,0.12);
}
.serve-pill i { font-size: 16px; color: #2d8ef0; }

/* CTA SECTION */
.about-cta {
  background: #fff;
  padding: 72px 5%;
  text-align: center;
}
.about-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900; color: #0a1628;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.about-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 16px; color: #6b7a99;
  max-width: 480px; margin: 0 auto 28px;
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .intro-grid, .founder-inner { grid-template-columns: 1fr; gap: 32px; }
  .vision-grid { grid-template-columns: 1fr; }
  .founder-avatar { width: 120px; height: 120px; font-size: 48px; }
}

/* ── CONTACT PAGE ── */
.contact-hero{background:linear-gradient(160deg,#0a1628 0%,#0f2a50 60%,#0a1628 100%);text-align:center;padding:64px 5% 56px;position:relative;overflow:hidden;}
.contact-hero::before{content:'';position:absolute;top:-100px;left:50%;transform:translateX(-50%);width:700px;height:700px;border-radius:50%;background:radial-gradient(circle,rgba(45,142,240,0.1) 0%,transparent 65%);pointer-events:none;}
.contact-eyebrow{display:inline-block;font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:#2d8ef0;background:rgba(45,142,240,0.12);border:1px solid rgba(45,142,240,0.25);border-radius:50px;padding:6px 18px;margin-bottom:20px;}
.contact-hero h1{font-family:'Montserrat',sans-serif;font-size:clamp(28px,4.5vw,50px);font-weight:900;color:#fff;line-height:1.1;letter-spacing:-0.02em;max-width:580px;margin:0 auto 16px;}
.contact-hero p{font-family:'Inter',sans-serif;font-size:17px;color:#93c5fd;line-height:1.7;max-width:480px;margin:0 auto;}

/* FORM SECTION */
.form-section{background:#f4f6fb;padding:64px 5%;}
.form-wrap{max-width:680px;margin:0 auto;}
.form-card{background:#fff;border-radius:20px;border:1.5px solid #e2e8f0;padding:40px 40px;box-shadow:0 8px 32px rgba(10,22,40,0.08);}

/* TYPE SELECTOR */
.type-label{font-family:'Montserrat',sans-serif;font-size:12px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:#0a1628;margin-bottom:12px;display:block;}
.type-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:28px;}
.type-btn{background:#f4f6fb;border:2px solid #e2e8f0;border-radius:12px;padding:14px 16px;cursor:pointer;text-align:left;transition:all 0.2s;display:flex;align-items:center;gap:10px;}
.type-btn:hover{border-color:#2d8ef0;}
.type-btn.active{border-color:#0a1628;background:#eef5fd;}
.type-btn i{font-size:20px;color:#2d8ef0;flex-shrink:0;}
.type-btn-title{font-family:'Montserrat',sans-serif;font-size:13px;font-weight:700;color:#0a1628;}
.type-btn-sub{font-family:'Inter',sans-serif;font-size:11px;color:#6b7a99;margin-top:1px;}

/* FORM FIELDS */
.field{margin-bottom:20px;}
.field label{display:block;font-family:'Montserrat',sans-serif;font-size:12px;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;color:#0a1628;margin-bottom:7px;}
.field input,.field select,.field textarea{width:100%;font-family:'Inter',sans-serif;font-size:14px;color:#0a1628;background:#f4f6fb;border:1.5px solid #e2e8f0;border-radius:10px;padding:12px 14px;outline:none;transition:border-color 0.2s;-webkit-appearance:none;}
.field input:focus,.field select:focus,.field textarea:focus{border-color:#2d8ef0;background:#fff;}
.field textarea{resize:vertical;min-height:120px;line-height:1.6;}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.submit-btn{width:100%;background:#f47c20;color:#fff;font-family:'Montserrat',sans-serif;font-size:16px;font-weight:700;border:none;border-radius:50px;padding:16px;cursor:pointer;transition:all 0.2s;letter-spacing:0.02em;box-shadow:0 4px 20px rgba(244,124,32,0.3);margin-top:6px;}
.submit-btn:hover{background:#d96a10;transform:translateY(-1px);}
.form-note{text-align:center;font-family:'Inter',sans-serif;font-size:12px;color:#6b7a99;margin-top:12px;}

/* SUCCESS */
.success-msg{display:none;text-align:center;padding:32px;background:#eef5fd;border-radius:16px;border:1.5px solid #2d8ef0;}
.success-msg i{font-size:48px;color:#2d8ef0;margin-bottom:12px;display:block;}
.success-msg h3{font-family:'Montserrat',sans-serif;font-size:20px;font-weight:800;color:#0a1628;margin-bottom:8px;}
.success-msg p{font-family:'Inter',sans-serif;font-size:14px;color:#6b7a99;line-height:1.6;}

/* INFO CARDS */
.info-section{background:#fff;padding:56px 5%;}
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:860px;margin:0 auto;}
.info-card{text-align:center;padding:28px 20px;background:#f4f6fb;border-radius:16px;border:1.5px solid #e2e8f0;}
.info-card i{font-size:28px;color:#2d8ef0;margin-bottom:12px;display:block;}
.info-card h3{font-family:'Montserrat',sans-serif;font-size:14px;font-weight:700;color:#0a1628;margin-bottom:6px;}
.info-card p{font-family:'Inter',sans-serif;font-size:13px;color:#6b7a99;line-height:1.5;}
.info-card a{color:#2d8ef0;text-decoration:none;font-weight:600;}
.info-card a:hover{text-decoration:underline;}

@media(max-width:600px){
  .field-row{grid-template-columns:1fr;}
  .type-grid{grid-template-columns:1fr;}
  .info-grid{grid-template-columns:1fr;}
  .form-card{padding:24px 20px;}
}

/* ── DEMO PAGE ── */
.demo-hero{background:linear-gradient(160deg,#0a1628 0%,#0f2a50 60%,#0a1628 100%);text-align:center;padding:64px 5% 56px;position:relative;overflow:hidden;}
.demo-hero::before{content:'';position:absolute;top:-100px;left:50%;transform:translateX(-50%);width:700px;height:700px;border-radius:50%;background:radial-gradient(circle,rgba(45,142,240,0.1) 0%,transparent 65%);pointer-events:none;}
.demo-eyebrow{display:inline-block;font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:#2d8ef0;background:rgba(45,142,240,0.12);border:1px solid rgba(45,142,240,0.25);border-radius:50px;padding:6px 18px;margin-bottom:20px;}
.demo-hero h1{font-family:'Montserrat',sans-serif;font-size:clamp(28px,4.5vw,50px);font-weight:900;color:#fff;line-height:1.1;letter-spacing:-0.02em;max-width:640px;margin:0 auto 16px;}
.demo-hero p{font-family:'Inter',sans-serif;font-size:17px;color:#93c5fd;line-height:1.7;max-width:520px;margin:0 auto;}

/* VIDEO */
.video-section{background:#f4f6fb;padding:56px 5%;}
.video-wrap{max-width:860px;margin:0 auto;}
.video-container{background:#0a1628;border-radius:20px;overflow:hidden;aspect-ratio:16/9;display:flex;align-items:center;justify-content:center;position:relative;box-shadow:0 16px 48px rgba(10,22,40,0.25);}
.video-placeholder{text-align:center;color:#93c5fd;}
.video-placeholder i{font-size:72px;margin-bottom:16px;display:block;color:#2d8ef0;}
.video-placeholder p{font-family:'Montserrat',sans-serif;font-size:16px;font-weight:600;color:#fff;margin-bottom:6px;}
.video-placeholder span{font-family:'Inter',sans-serif;font-size:13px;color:#93c5fd;}
.video-note{text-align:center;margin-top:16px;font-family:'Inter',sans-serif;font-size:13px;color:#6b7a99;}

/* LIVE MEETING */
.meeting-section{background:#fff;padding:56px 5%;}
.meeting-inner{max-width:760px;margin:0 auto;text-align:center;}
.meeting-inner .s-label{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:#2d8ef0;margin-bottom:10px;}
.meeting-inner h2{font-family:'Montserrat',sans-serif;font-size:clamp(24px,3.5vw,36px);font-weight:900;color:#0a1628;letter-spacing:-0.02em;margin-bottom:12px;line-height:1.1;}
.meeting-inner p{font-family:'Inter',sans-serif;font-size:15px;color:#6b7a99;line-height:1.75;max-width:540px;margin:0 auto 32px;}
.meeting-card{background:#f4f6fb;border:1.5px solid #e2e8f0;border-radius:20px;padding:32px 36px;max-width:520px;margin:0 auto 24px;text-align:left;}
.meeting-row{display:flex;align-items:center;gap:14px;margin-bottom:18px;}
.meeting-row:last-child{margin-bottom:0;}
.meeting-icon{width:44px;height:44px;border-radius:12px;background:linear-gradient(135deg,#0a1628,#1a6bcc);display:flex;align-items:center;justify-content:center;color:#fff;font-size:20px;flex-shrink:0;}
.meeting-label{font-family:'Montserrat',sans-serif;font-size:13px;font-weight:700;color:#0a1628;margin-bottom:2px;}
.meeting-value{font-family:'Inter',sans-serif;font-size:14px;color:#6b7a99;}
.btn-meeting{display:inline-block;background:#f47c20;color:#fff;font-family:'Montserrat',sans-serif;font-size:14px;font-weight:700;border-radius:50px;padding:13px 28px;text-decoration:none;transition:all 0.2s;box-shadow:0 4px 16px rgba(244,124,32,0.3);letter-spacing:0.02em;}
.btn-meeting:hover{background:#d96a10;transform:translateY(-2px);}

/* EMAIL */
.email-section{background:#f4f6fb;padding:56px 5%;text-align:center;}
.email-inner{max-width:560px;margin:0 auto;}
.email-inner .s-label{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:#2d8ef0;margin-bottom:10px;}
.email-inner h2{font-family:'Montserrat',sans-serif;font-size:clamp(22px,3vw,32px);font-weight:900;color:#0a1628;letter-spacing:-0.02em;margin-bottom:12px;line-height:1.1;}
.email-inner p{font-family:'Inter',sans-serif;font-size:15px;color:#6b7a99;line-height:1.7;margin-bottom:24px;}
.email-link{display:inline-flex;align-items:center;gap:10px;background:#0a1628;color:#fff;font-family:'Montserrat',sans-serif;font-size:15px;font-weight:700;border-radius:50px;padding:14px 28px;text-decoration:none;transition:all 0.2s;}
.email-link:hover{background:#1a3a6a;transform:translateY(-2px);}
.email-link i{font-size:18px;}

/* FOUNDER CTA */
.founder-cta-section{background:#0a1628;padding:64px 5%;text-align:center;position:relative;overflow:hidden;}
.founder-cta-section::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(45,142,240,0.1) 0%,transparent 65%);pointer-events:none;}
.founder-cta-section h2{font-family:'Montserrat',sans-serif;font-size:clamp(26px,4vw,44px);font-weight:900;color:#fff;letter-spacing:-0.02em;line-height:1.1;margin-bottom:12px;}
.founder-cta-section p{font-family:'Inter',sans-serif;font-size:16px;color:#93c5fd;max-width:480px;margin:0 auto 28px;line-height:1.65;}
.btn-founder{display:inline-block;background:#f47c20;color:#fff;font-family:'Montserrat',sans-serif;font-size:15px;font-weight:700;border-radius:50px;padding:16px 36px;text-decoration:none;transition:all 0.2s;box-shadow:0 4px 24px rgba(244,124,32,0.4);letter-spacing:0.02em;}
.btn-founder:hover{background:#d96a10;transform:translateY(-2px);}
.founder-note{font-family:'Inter',sans-serif;font-size:12px;color:#60a5fa;margin-top:10px;}


/* MATT HOLLIS FOUNDER PHOTO */
.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid #e2e8f0;
  margin: 0 auto 16px;
  display: block;
}
