*{
  box-sizing:border-box;
}
:root{
  --navy:#0d1726;
  --blue:#1477e8;
  --blue2:#3a97ff;
  --text:#18202b;
  --muted:#667085;
  --line:#dfe5ec;
  --soft:#f4f7fa;
  --white:#ffffff;
}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
.container{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #edf0f3;
  backdrop-filter:blur(14px);
}
.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:30px;
  letter-spacing:-1.5px;
}
.brand-mark{
  height:34px;
  display:flex;
  align-items:center;
  gap:3px;
}
.brand-mark span{
  display:block;
  width:4px;
  border-radius:4px;
  background:linear-gradient(180deg,var(--blue2),var(--blue));
}
.brand-mark span:nth-child(1){height:14px;}
.brand-mark span:nth-child(2){height:24px;}
.brand-mark span:nth-child(3){height:34px;}
.brand-mark span:nth-child(4){height:24px;}
.brand-mark span:nth-child(5){height:14px;}
nav{
  display:flex;
  gap:34px;
  font-weight:600;
}
nav a:hover{color:var(--blue);}
.hero{
  min-height:740px;
  padding:76px 0 82px;
  background:
    radial-gradient(circle at 12% 35%, rgba(20,119,232,.11), transparent 28%),
    linear-gradient(135deg,#fbfdff 0%,#edf3f8 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.eyebrow,.card-kicker,.mini-label{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  font-weight:800;
  color:var(--blue);
  margin-bottom:14px;
}
.hero h1{
  margin:0;
  font-size:68px;
  line-height:.98;
  letter-spacing:-3px;
}
.hero h1 span{color:var(--blue);}
.hero-copy>p{
  max-width:590px;
  font-size:19px;
  line-height:1.65;
  color:#475467;
  margin:28px 0 32px;
}
.hero-visual{
  width:100%;
  min-height:220px;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(135deg,#dbeafe,#eef4fb);
  border:1px solid rgba(20,119,232,.15);
  box-shadow:0 20px 60px rgba(12,39,71,.08);
}
.hero-visual img{
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
}
.form-card{
  background:#fff;
  border:1px solid #e6eaf0;
  border-radius:24px;
  padding:40px;
  box-shadow:0 28px 80px rgba(12,39,71,.14);
}
.form-card h2{
  margin:0;
  font-size:34px;
  letter-spacing:-1.2px;
}
.lead{
  color:var(--muted);
  margin:10px 0 28px;
  line-height:1.6;
}
fieldset{
  border:0;
  padding:0;
  margin:0 0 22px;
}
legend,.field-label{
  display:block;
  font-weight:700;
  margin-bottom:12px;
}
.radio-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 0;
  color:#344054;
}
input[type="radio"]{
  width:18px;
  height:18px;
  accent-color:var(--blue);
}
select,textarea{
  width:100%;
  border:1px solid #cfd7e1;
  border-radius:10px;
  background:#fff;
  padding:14px 15px;
  font:inherit;
  color:#253040;
  outline:none;
  margin-bottom:20px;
  transition:.2s;
}
select:focus,textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(20,119,232,.09);
}
.inline-options{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}
.inline-options label{
  display:flex;
  gap:8px;
  align-items:center;
}
button{
  width:100%;
  border:0;
  padding:16px 18px;
  border-radius:11px;
  font-weight:800;
  font-size:16px;
  color:#fff;
  background:linear-gradient(90deg,var(--blue),#0968d7);
  cursor:pointer;
  box-shadow:0 12px 30px rgba(20,119,232,.2);
}
button:hover{filter:brightness(1.04);}
.form-message{
  min-height:20px;
  text-align:center;
  margin:12px 0 0;
  color:#157347;
  font-weight:600;
}
.info-strip{
  padding:76px 0;
  background:#fff;
}
.info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:end;
}
.info-grid h3{
  margin:0;
  font-size:42px;
  line-height:1.15;
  letter-spacing:-1.5px;
}
.info-grid p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}
.podcast-section{
  padding:78px 0 90px;
  background:var(--soft);
}
.section-head{
  max-width:680px;
  margin-bottom:36px;
}
.section-head h2{
  margin:0;
  font-size:42px;
  letter-spacing:-1.4px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.feature-card{
  background:#fff;
  padding:30px;
  border-radius:18px;
  border:1px solid #e5e9ef;
}
.icon{
  width:50px;
  height:50px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#e9f3ff;
  color:var(--blue);
  font-weight:900;
  margin-bottom:24px;
}
.feature-card h3{margin:0 0 12px;font-size:21px;}
.feature-card p{margin:0;color:var(--muted);line-height:1.65;}
footer{
  background:var(--navy);
  color:#fff;
  padding:62px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:60px;
}
.footer-brand{font-size:28px;}
footer p, footer a{
  color:#bcc6d3;
  line-height:1.75;
}
footer h4{margin-top:0;}
.footer-grid>div:nth-child(2),
.footer-grid>div:nth-child(3){
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.footer-grid a:hover{color:#fff;}
.copyright{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:42px;
  padding-top:20px;
  color:#8f9cab;
  font-size:14px;
}
@media(max-width:900px){
  nav{display:none;}
  .hero-grid,.info-grid,.footer-grid{grid-template-columns:1fr;}
  .hero{padding-top:50px;}
  .hero h1{font-size:52px;}
  .cards{grid-template-columns:1fr;}
  .hero-grid{gap:40px;}
}
@media(max-width:560px){
  .container{width:min(100% - 26px,1180px);}
  .hero h1{font-size:42px;}
  .form-card{padding:26px 20px;}
  .form-card h2{font-size:28px;}
  .brand{font-size:25px;}
}
