:root{
  --navy:#0b2552;
  --navy-2:#0f326d;
  --blue:#1d74d8;
  --blue-soft:#edf5ff;
  --blue-line:#dce8f7;
  --orange:#ff9c1a;
  --orange-soft:#fff5e7;
  --ink:#0f1f35;
  --muted:#5f7085;
  --line:#e5edf6;
  --bg:#f6f8fc;
  --white:#ffffff;
  --shadow:0 24px 60px rgba(12,31,67,.10);
  --shadow-soft:0 12px 28px rgba(12,31,67,.06);
}
*{box-sizing:border-box}
html{
  font-family:"Plus Jakarta Sans",ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--ink);
}
body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(circle at 12% 10%, rgba(29,116,216,.08), transparent 22%),
    radial-gradient(circle at 90% 12%, rgba(255,156,26,.11), transparent 20%),
    linear-gradient(180deg, #fbfcfe 0%, #f5f8fc 55%, #f3f7fb 100%);
  position:relative;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.page-glow{
  position:fixed;
  width:36rem;
  height:36rem;
  border-radius:50%;
  filter:blur(90px);
  opacity:.18;
  pointer-events:none;
  z-index:0;
}
.page-glow-left{left:-12rem;top:-12rem;background:#8ec2ff}
.page-glow-right{right:-14rem;top:8rem;background:#ffd9a2}
.topbar{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(20px,5vw,72px);
  background:rgba(255,255,255,.76);
  border-bottom:1px solid rgba(229,237,246,.95);
  backdrop-filter:blur(18px);
  position:sticky;
  top:0;
  z-index:10;
}
.brand{display:flex;align-items:center;gap:14px;min-width:0}
.brand-mark{
  width:58px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(180deg,#fff,#f8fbff);
  box-shadow:inset 0 0 0 1px rgba(220,232,247,.9),0 10px 20px rgba(13,37,82,.05);
  overflow:hidden;
}
.brand-mark img{width:100%;height:100%;object-fit:contain;display:block}
.brand-name{display:flex;align-items:baseline;gap:8px;white-space:nowrap;letter-spacing:-.03em}
.brand-name strong{font-size:24px;color:var(--navy);font-weight:800}
.brand-name span{font-size:16px;font-weight:700;color:var(--orange)}
.top-note{font-size:13px;color:#60748d;font-weight:700;letter-spacing:-.01em}
main{flex:1;display:grid;place-items:center;padding:54px 20px 60px;position:relative;z-index:1}
.hero-shell{width:min(980px,100%)}
.hero{
  position:relative;
  width:100%;
  padding:clamp(28px,4vw,42px);
  border-radius:32px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.88));
  border:1px solid rgba(229,237,246,.95);
  box-shadow:var(--shadow);
  text-align:center;
  overflow:hidden;
}
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  inset:auto auto 0 0;
  pointer-events:none;
}
.hero::before{
  width:230px;
  height:230px;
  left:-80px;
  bottom:-120px;
  border-radius:50%;
  background:radial-gradient(circle at 50% 50%, rgba(29,116,216,.14), rgba(29,116,216,0));
}
.hero::after{
  width:260px;
  height:260px;
  right:-90px;
  top:-120px;
  border-radius:50%;
  background:radial-gradient(circle at 50% 50%, rgba(255,156,26,.12), rgba(255,156,26,0));
}
.hero-copy{max-width:670px;margin:0 auto 30px;position:relative;z-index:1}
h1{
  font-size:clamp(38px,5vw,58px);
  line-height:1.02;
  letter-spacing:-.055em;
  margin:0 0 14px;
  font-weight:800;
  color:var(--ink);
}
.hero-copy p{
  margin:0;
  font-size:18px;
  line-height:1.6;
  color:var(--muted);
  font-weight:500;
}
.choices{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  text-align:left;
  position:relative;
  z-index:1;
}
.choice-card{
  position:relative;
  min-height:224px;
  display:flex;
  flex-direction:column;
  padding:22px 20px 20px;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff,#fbfdff);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.choice-card::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:4px;
  border-radius:0 0 10px 10px;
  background:linear-gradient(90deg,var(--blue),var(--orange));
  opacity:0;
  transform:scaleX(.88);
  transform-origin:center;
  transition:opacity .2s ease, transform .2s ease;
}
.choice-card:hover,
.choice-card:focus-visible{
  transform:translateY(-4px);
  border-color:#cbdcf0;
  box-shadow:0 26px 50px rgba(12,31,67,.12);
  background:linear-gradient(180deg,#ffffff,#fefefe);
}
.choice-card:hover::after,
.choice-card:focus-visible::after{opacity:1;transform:scaleX(1)}
.choice-card:focus-visible{outline:3px solid rgba(29,116,216,.18);outline-offset:4px}
.choice-icon{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.85), rgba(255,255,255,0) 30%),
    linear-gradient(180deg,#f7fbff,#edf5ff);
  box-shadow:inset 0 0 0 1px rgba(220,232,247,.95), 0 16px 26px rgba(22,93,167,.08);
  margin-bottom:24px;
}
.choice-icon svg{width:42px;height:42px}
.choice-text{display:flex;flex-direction:column;gap:8px;padding-right:16px}
.choice-text strong{font-size:21px;line-height:1.22;letter-spacing:-.03em;font-weight:800;color:var(--ink)}
.choice-text small{font-size:14px;line-height:1.6;color:var(--muted);font-weight:500}
.arrow{
  position:absolute;
  right:18px;
  bottom:18px;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f3f7fb;
  color:var(--blue);
  font-size:24px;
  font-weight:700;
  line-height:1;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.choice-card:hover .arrow{background:var(--navy);color:#fff;transform:translateX(2px)}
.trust-row{
  margin:26px auto 0;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  color:#50647d;
  font-size:13px;
  font-weight:700;
  position:relative;
  z-index:1;
}
.trust-row span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(229,237,246,.95);
}
.trust-row i{font-style:normal;color:var(--orange);font-size:18px;line-height:1}
.fine-print{
  max-width:680px;
  margin:18px auto 0;
  font-size:12px!important;
  line-height:1.65!important;
  color:#7d8c9d!important;
  position:relative;
  z-index:1;
}
footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px clamp(20px,5vw,72px);
  border-top:1px solid rgba(229,237,246,.95);
  color:#8c99aa;
  font-size:12px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(12px);
}
.footer-brand{display:flex;align-items:center;gap:10px;font-weight:600}
.footer-brand img{width:34px;height:24px;object-fit:contain}
footer nav{display:flex;gap:20px}
footer a{transition:color .2s ease}
footer a:hover{color:var(--blue)}
.legal-wrap{width:min(860px,100%);margin:0 auto;padding:52px 20px 68px}
.legal-card{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
  border:1px solid var(--line);
  border-radius:28px;
  padding:clamp(24px,5vw,42px);
  box-shadow:var(--shadow);
}
.legal-card h1{font-size:clamp(34px,5vw,42px);letter-spacing:-.04em;margin:0 0 16px}
.legal-card h2{font-size:19px;letter-spacing:-.02em;margin:28px 0 8px}
.legal-card p,.legal-card li{color:var(--muted);line-height:1.75}
.legal-card ul{padding-left:20px}
.back-link{display:inline-flex;margin-top:24px;color:var(--blue);font-weight:800}
@media (max-width:860px){
  .choices{grid-template-columns:1fr;gap:12px}
  .choice-card{min-height:0;display:grid;grid-template-columns:72px 1fr 34px;align-items:center;column-gap:16px;padding:18px 18px 18px 16px}
  .choice-card::after{left:0;right:0;top:auto;bottom:0;height:3px;border-radius:10px 10px 0 0}
  .choice-icon{margin:0;width:64px;height:64px;border-radius:18px}
  .choice-icon svg{width:38px;height:38px}
  .choice-text{padding-right:0}
  .choice-text strong{font-size:19px}
  .choice-text small{font-size:13px}
  .arrow{position:static}
}
@media (max-width:720px){
  .topbar{height:76px;padding:0 16px}
  .top-note{display:none}
  .brand-mark{width:52px;height:43px}
  .brand-name strong{font-size:20px}
  .brand-name span{font-size:14px}
  main{padding:34px 16px 42px}
  .hero{padding:22px 18px 24px;border-radius:24px}
  .hero-copy{margin-bottom:22px}
  h1{font-size:38px}
  .hero-copy p{font-size:16px}
  .trust-row{gap:10px 10px;font-size:12px}
  .trust-row span{padding:9px 12px}
  footer{padding:15px 16px}
}
@media (max-width:480px){
  .choice-card{grid-template-columns:60px 1fr 30px;column-gap:12px;padding:16px 14px 16px 14px;border-radius:20px}
  .choice-icon{width:56px;height:56px;border-radius:16px}
  .choice-icon svg{width:34px;height:34px}
  .choice-text strong{font-size:18px}
  .choice-text small{font-size:12.5px;line-height:1.55}
  h1{font-size:34px}
  footer{align-items:flex-start;flex-direction:column;gap:8px}
  footer nav{gap:16px}
}
