:root {
  --ink: #07111f;
  --ink-2: #0c1b2d;
  --ink-3: #12253b;
  --paper: #f3f6f8;
  --muted: #a9b8c7;
  --line: rgba(197, 221, 238, .14);
  --cyan: #39d6d0;
  --cyan-deep: #12a7ad;
  --orange: #ffae5c;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .28);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 12px; z-index: 99; }
.skip-link:focus { left: 16px; padding: 10px 14px; background: var(--cyan); color: var(--ink); border-radius: 8px; }

.announcement {
  padding: 9px 20px;
  background: var(--cyan);
  color: var(--ink);
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, .9);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -.03em; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand span { font-size: 1.02rem; }
.brand em { color: var(--cyan); font-style: normal; }
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav a { padding: 9px 12px; color: var(--muted); font-size: .88rem; font-weight: 600; transition: color .2s ease, background .2s ease; border-radius: 9px; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.07); }
.nav-cta { color: var(--ink) !important; background: var(--orange) !important; }
.nav-cta:hover { background: #ffc37f !important; }
.menu-toggle { display: none; border: 1px solid var(--line); background: transparent; color: var(--white); border-radius: 9px; padding: 8px 10px; font-size: 1.1rem; }

.hero { padding: 80px 0 46px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 58px; }
.eyebrow { margin: 0 0 17px; color: var(--cyan); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: 'Space Grotesk', sans-serif; letter-spacing: -.045em; line-height: 1.08; }
h1 { font-size: clamp(2.8rem, 5.2vw, 5.25rem); max-width: 720px; }
h2 { font-size: clamp(2rem, 3.7vw, 3.55rem); }
h3 { font-size: 1.24rem; }
.lead { max-width: 610px; margin: 24px 0 0; color: var(--muted); font-size: 1.12rem; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 10px; font-weight: 700; font-size: .94rem; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); color: var(--ink); }
.button-primary:hover { background: #68e8e1; }
.button-secondary { border-color: var(--line); color: var(--paper); background: rgba(255,255,255,.03); }
.button-secondary:hover { border-color: rgba(57,214,208,.6); }
.fine-print { margin: 14px 0 0; color: #8092a4; font-size: .8rem; }
.hero-media { position: relative; }
.hero-media::after { content: ''; position: absolute; width: 170px; height: 170px; border-radius: 50%; background: rgba(57, 214, 208, .22); filter: blur(50px); right: -28px; bottom: -30px; z-index: -1; }
.hero-media img { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; box-shadow: var(--shadow); }
.media-label { position: absolute; left: 20px; bottom: 20px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: rgba(7,17,31,.75); backdrop-filter: blur(10px); color: var(--white); font-size: .83rem; }
.media-label strong { display: block; color: var(--cyan); font-size: 1rem; }

.stat-strip { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 4px 12px; border-left: 2px solid var(--cyan); }
.stat strong { display: block; color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 1.12rem; }
.stat span { color: var(--muted); font-size: .82rem; }

.section { padding: 102px 0; }
.section-soft { background: #0b1a2c; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-head p { max-width: 460px; margin: 0; color: var(--muted); }
.kicker { margin: 0 0 13px; color: var(--orange); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.card-number { display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; margin-bottom: 26px; border-radius: 50%; background: var(--orange); color: var(--ink); font-weight: 800; font-size: .84rem; }
.card p { margin: 12px 0 0; color: var(--muted); font-size: .94rem; }
.card-link { display: inline-block; margin-top: 18px; color: var(--cyan); font-size: .88rem; font-weight: 700; }
.icon-box { display: inline-flex; width: 43px; height: 43px; align-items: center; justify-content: center; margin-bottom: 20px; border-radius: 12px; background: rgba(57,214,208,.13); color: var(--cyan); font-size: 1.3rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split-media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }
.check-list { padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 29px; color: var(--muted); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 9px; color: var(--cyan); font-weight: 800; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.price-card.featured { border-color: var(--cyan); background: linear-gradient(150deg, rgba(57,214,208,.13), rgba(255,174,92,.06)); transform: translateY(-9px); }
.badge { position: absolute; top: 17px; right: 17px; padding: 5px 9px; border-radius: 99px; background: var(--cyan); color: var(--ink); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price { margin: 19px 0 5px; font-family: 'Space Grotesk', sans-serif; font-size: 3.1rem; font-weight: 700; letter-spacing: -.05em; }
.price small { color: var(--muted); font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500; letter-spacing: 0; }
.price-card p { min-height: 53px; margin: 0; color: var(--muted); font-size: .91rem; }
.price-card .button { width: 100%; margin-top: 22px; }
.price-note { margin-top: 24px; color: #8092a4; font-size: .8rem; }

.quote { padding: 34px; border-left: 3px solid var(--orange); background: rgba(255,174,92,.06); border-radius: 0 var(--radius) var(--radius) 0; }
.quote p { margin: 0; color: var(--paper); font-size: 1.25rem; font-family: 'Space Grotesk', sans-serif; }
.quote span { display: block; margin-top: 13px; color: var(--muted); font-size: .84rem; }

.page-hero { padding: 78px 0 54px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 20%, rgba(57,214,208,.12), transparent 34%); }
.page-hero h1 { max-width: 820px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.page-hero .lead { max-width: 700px; }
.breadcrumbs { margin-bottom: 20px; color: #8092a4; font-size: .8rem; }
.breadcrumbs a { color: var(--cyan); }
.prose { max-width: 820px; }
.prose p, .prose li { color: var(--muted); }
.prose h2 { margin-top: 52px; font-size: 2rem; }
.prose h3 { margin-top: 30px; color: var(--white); }
.prose ul { padding-left: 22px; }
.notice { margin: 30px 0; padding: 20px 22px; border: 1px solid rgba(57,214,208,.28); border-radius: 14px; background: rgba(57,214,208,.08); color: var(--paper); }
.page-image { margin: 40px 0; }
.page-image img { border: 1px solid var(--line); border-radius: var(--radius); }

.faq-list { display: grid; gap: 12px; max-width: 900px; }
details { padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.035); }
summary { cursor: pointer; color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 1.06rem; font-weight: 600; }
details p { margin: 15px 0 0; color: var(--muted); }

.contact-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.contact-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.contact-card h2 { font-size: 2rem; }
.contact-card p { color: var(--muted); }
.contact-card strong { color: var(--white); }
.contact-card a:not(.button) { color: var(--cyan); font-weight: 700; }

.cta-band { padding: 70px 0; background: linear-gradient(110deg, #13394a, #0b1a2c 62%); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { max-width: 690px; font-size: clamp(2rem, 3.8vw, 3.5rem); }
.cta-band p { max-width: 600px; margin: 14px 0 0; color: var(--muted); }

.site-footer { padding: 54px 0 28px; border-top: 1px solid var(--line); background: #050d18; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; padding-bottom: 34px; }
.footer-grid h3 { margin-bottom: 15px; font-size: 1rem; letter-spacing: 0; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: .87rem; }
.footer-grid a { display: block; margin: 7px 0; }
.footer-grid a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: #718397; font-size: .76rem; }
.legal-note { max-width: 760px; }

@media (max-width: 900px) {
  .hero-grid, .split, .contact-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 55px; }
  .hero-grid { gap: 35px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .three-grid, .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-wrap { min-height: 68px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { display: none; position: absolute; left: 14px; right: 14px; top: 68px; padding: 10px; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 13px; background: #0b1a2c; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 12px; }
  .brand span { font-size: .93rem; }
  h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  .section { padding: 72px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .stat-grid { gap: 12px; }
  .stat { padding-left: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 54px 0 40px; }
}


/* Contrast safeguards for header and primary actions */
.brand span { color: var(--white); }
.main-nav a { color: #d7e3ed; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); }
.hero h1, .page-hero h1, h2, h3 { color: var(--paper); }
.button-primary { background: var(--cyan); color: var(--ink); }


