:root{
  --max: 1120px;
  --bg: #0b1220;
  --surface: #0f1a30;
  --card: #ffffff;
  --text: #0b1220;
  --muted: #4b5563;
  --border: #e5e7eb;
  --accent: #2563eb;
  --accent2:#1d4ed8;
  --soft: #f8fafc;
  --shadow: 0 10px 30px rgba(2,6,23,.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  line-height: 1.55;
  background: var(--soft);
}

a{ color: inherit; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 20px; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,.9);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width: 180px;
}
.logo{ height: 70px; width:auto; display:block; }
.brand-text{ font-weight: 800; letter-spacing: .2px; }

.nav{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  padding:10px 12px;
  border-radius: 999px;
  color:#0b1220;
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover{ background: rgba(15,23,42,.06); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid rgba(37,99,235,.25);
  background: linear-gradient(180deg, rgba(37,99,235,.12), rgba(37,99,235,.05));
}
.btn:hover{ background: rgba(37,99,235,.12); }

main.wrap{ padding-top: 24px; }

.hero{
  margin-top: 6px;
  padding: 34px 0 18px;
}
.hero-shell{
  border-radius: calc(var(--radius) + 6px);
  padding: 28px;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(37,99,235,.18), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(59,130,246,.15), transparent 55%),
    linear-gradient(180deg, #0b1220, #0b1220);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
  align-items: stretch;
}
.kicker{
  color: rgba(255,255,255,.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 10px;
}
.hero h1{
  margin:0 0 10px;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.lede{
  font-size: 18px;
  color: #94a3b8;
  margin: 0 0 16px;
}
.hero .lede strong{ color:#fff; }

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.cta{
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(37,99,235,.25);
}
.cta:hover{ filter: brightness(1.03); }
.cta-secondary{
  color: rgba(255,255,255,.9);
  text-decoration:none;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.cta-secondary:hover{ background: rgba(255,255,255,.10); }

.badges{ margin-top: 14px; }
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 7px 10px;
  margin: 6px 6px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.05);
}

section{ margin: 24px 0; }
h1{
  margin: 8px 0 10px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2{
  margin: 18px 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 12px; color: var(--muted); }
p strong{ color: var(--text); }
ul{ margin: 10px 0 0 18px; color: var(--muted); }
li{ margin: 6px 0; }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(2,6,23,.03);
}
.card h3{ margin: 0 0 8px; font-size: 18px; color: var(--text); }
.card p{ color: var(--muted); }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

img{
  max-width:100%;
  height:auto;
}

.img-frame{
  width:100%;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--border);
  overflow:hidden;
  background: #fff;
}

a.link{
  color: var(--accent);
  text-decoration:none;
  font-weight: 700;
}
a.link:hover{ text-decoration: underline; }

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label{ display:block; font-weight: 700; margin: 12px 0 6px; color: var(--text); }
input, textarea{
  width:100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  background: #fff;
}
textarea{ min-height: 140px; }
button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,.25);
  background: linear-gradient(180deg, rgba(37,99,235,.12), rgba(37,99,235,.05));
  cursor:pointer;
  font-weight: 800;
}
button:hover{ background: rgba(37,99,235,.12); }

.site-footer{
  border-top: 1px solid rgba(229,231,235,.9);
  margin-top: 34px;
  background: #fff;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
  padding-top: 22px;
}
.footer-inner strong{ color: var(--text); }
.footer-links{ display:flex; gap: 14px; align-items:start; }
.footer-links a{ color: var(--muted); text-decoration:none; font-weight: 700; }
.footer-links a:hover{ color: var(--text); }
.fineprint{ color: var(--muted); font-size: 13px; padding-top: 0; padding-bottom: 22px; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .nav a{ padding: 9px 10px; }
  .hero h1{ font-size: 32px; }
}
@media (max-width: 520px){
  .brand-text{ display:none; }
  .form-row{ grid-template-columns: 1fr; }
}


/* Image slider */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
}
.slider-track {
  display: flex;
  transition: transform .6s ease;
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}
.slider-dots button.active {
  background: #fff;
}

/* Slider */
.slider{ position: relative; overflow: hidden; border-radius: calc(var(--radius) - 6px); }
.slider .slides{ position: relative; height: 420px; z-index: 1; background: #0b1220; }
.slide{ position:absolute; inset:0; opacity:0; transition: opacity .45s ease; margin:0; }
.slide.active{ opacity:1; }
.slide img{ width:100%; height:100%; object-fit: cover; display:block; }
.slider-btn{
  position:absolute;
  z-index: 3;
  top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(15,23,42,.35);
  color:#fff;
  font-size: 28px;
  line-height: 1;
}
.slider-btn:hover{ background: rgba(15,23,42,.50); }
.slider-btn.prev{ left: 12px; }
.slider-btn.next{ right: 12px; }
.dots{
  position:absolute;
  z-index: 3;
  left: 0; right:0; bottom: 10px;
  display:flex;
  gap: 8px;
  justify-content:center;
}
.dot{
  width:10px; height:10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.25);
  padding:0;
}
.dot.active{ background: rgba(255,255,255,.9); }
@media (max-width: 900px){
  .slider .slides{ height: 320px; }
}

.cf-turnstile{ min-height: 65px; }
