:root{
  --bg:#ede7dc;
  --paper:#ffffff;
  --ink:#172033;
  --muted:#5d6878;
  --headline:#10195b;
  --accent:#b61f24;
  --accent-dark:#86161a;
  --blue:#0a4bb8;
  --blue-dark:#07358a;
  --soft:#f4f7fc;
  --line:#e6e0d5;
  --shadow:0 18px 45px rgba(16,25,55,.10);
  --serif:Georgia, "Times New Roman", serif;
  --sans:Arial, Helvetica, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.7), transparent 32%),
    linear-gradient(180deg, #f4efe6 0%, var(--bg) 100%);
  color:var(--ink);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit}
img{display:block;max-width:100%;height:auto}

.page-shell{
  width:min(1160px, calc(100% - 28px));
  margin:18px auto;
  background:var(--paper);
  box-shadow:0 0 0 1px rgba(0,0,0,.05), var(--shadow);
}

.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 22px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.94);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-mark{
  display:grid;
  place-items:center;
  min-width:48px;
  height:48px;
  padding:0 10px;
  border-radius:12px;
  background:linear-gradient(180deg, #d52e33 0%, var(--accent-dark) 100%);
  color:#fff;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 12px 22px rgba(182,31,36,.22);
}

.brand-copy{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brand-copy strong{
  font-size:18px;
  letter-spacing:-.02em;
}

.brand-copy span{
  color:var(--muted);
  font-size:12px;
}

.header-nav{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.header-nav a{
  color:var(--headline);
  font-weight:700;
  text-decoration:none;
}

.header-nav a:hover{text-decoration:underline}

.hero{
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(280px, .75fr);
  gap:26px;
  padding:34px 22px 22px;
}

.eyebrow{
  margin:0 0 10px;
  color:var(--accent);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.hero h1,
.card h2,
.info-card h2,
.hero-panel h2{
  margin:0;
  color:var(--headline);
  font-family:var(--serif);
  letter-spacing:-.03em;
}

.hero h1{
  font-size:46px;
  line-height:1.02;
  max-width:760px;
}

.hero-text{
  max-width:660px;
  margin:16px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.45;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 20px;
  border-radius:10px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:-.01em;
  transition:transform .18s ease, box-shadow .18s ease;
}

.button:hover{
  transform:translateY(-2px);
}

.button.primary{
  background:linear-gradient(180deg, #0d61df 0%, var(--blue-dark) 100%);
  color:#fff;
  box-shadow:0 10px 22px rgba(10,75,184,.24);
}

.button.secondary{
  border:1px solid #cfd6e5;
  background:#fff;
  color:var(--headline);
}

.hero-panel{
  align-self:stretch;
  padding:24px 22px;
  border:1px solid #e4d7bf;
  border-radius:18px;
  background:
    linear-gradient(180deg, rgba(255,248,226,.95) 0%, rgba(255,255,255,.98) 100%);
}

.panel-label{
  margin:0 0 8px;
  color:var(--accent);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
}

.hero-panel h2{
  font-size:28px;
  line-height:1.06;
}

.hero-panel p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.45;
}

.panel-points{
  margin:18px 0 0;
  padding:0;
  list-style:none;
}

.panel-points li{
  position:relative;
  padding-left:24px;
  margin:10px 0;
  font-weight:700;
}

.panel-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--blue);
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
  padding:10px 22px 28px;
}

.card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}

.card.emphasis{
  box-shadow:0 18px 36px rgba(16,25,55,.08);
}

.card-media{
  display:block;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#121212;
}

.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card-body{
  padding:18px 18px 22px;
}

.card-kicker{
  margin:0 0 10px;
  color:var(--accent);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
}

.card h2{
  font-size:30px;
  line-height:1.05;
}

.card p{
  color:var(--muted);
  line-height:1.5;
}

.text-link{
  display:inline-block;
  margin-top:4px;
  color:var(--blue);
  font-weight:900;
  text-decoration:none;
}

.text-link:hover{text-decoration:underline}

.info-strip{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  padding:0 22px 34px;
}

.info-card{
  padding:20px 18px;
  border-radius:18px;
  background:var(--soft);
  border:1px solid #dce4f0;
}

.info-card h2{
  font-size:24px;
  line-height:1.08;
}

.info-card p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.5;
}

.site-footer{
  padding:24px 22px 30px;
  border-top:1px solid var(--line);
  background:#1b1f27;
  color:#e7eaf0;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px 22px;
}

.footer-links a{
  text-decoration:none;
  font-weight:700;
}

.footer-links a:hover{text-decoration:underline}

.footer-copy{
  margin:16px 0 0;
  color:#b8c0cc;
  font-size:13px;
  line-height:1.45;
}

@media (max-width:920px){
  .hero,
  .feature-grid,
  .info-strip{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:36px;
  }
}

@media (max-width:640px){
  .page-shell{
    width:100%;
    margin:0;
  }

  .site-header,
  .hero,
  .feature-grid,
  .info-strip,
  .site-footer{
    padding-left:16px;
    padding-right:16px;
  }

  .site-header{
    align-items:flex-start;
    flex-direction:column;
  }

  .hero{
    gap:18px;
    padding-top:24px;
  }

  .hero h1{
    font-size:31px;
  }

  .hero-text{
    font-size:16px;
  }

  .button{
    width:100%;
  }

  .card h2{
    font-size:26px;
  }
}
