:root {
  --ink: #ffffff;
  --muted: #b0c4de;
  --surface: #021d62;
  --surface-2: #05267a;
  --line: rgba(120, 175, 255, .16);
  --orange: #ff9e38;
  --yellow: #f8ca0d;
  --yellow-hover: #ffdc33;
  --green: #4ade80;
  --blue: #2563eb;
  --blue-bright: #3b82f6;
  --bg: #011038;
  --shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.eyebrow { margin: 0 0 8px; color: var(--yellow); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.skip { position: absolute; z-index: 100; left: 18px; top: -50px; padding: 8px 13px; background: var(--yellow); color: #021d62; border-radius: 8px; font-weight: 800; }
.skip:focus { top: 14px; }

/* Top Notice */
.notice { border-bottom: 1px solid rgba(248, 202, 13, .3); background: #03184a; color: #dbe7fb; }
.notice p { margin: 0; padding: 7px 0; font-size: .82rem; text-align: center; }
.notice strong { color: var(--yellow); }

/* Sticky Header */
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(2, 29, 98, .94); backdrop-filter: blur(16px); }
.nav { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.22rem; font-weight: 900; letter-spacing: -.02em; color: #ffffff; }
.brand-img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; display: block; border: 2px solid rgba(248, 202, 13, .55); box-shadow: 0 3px 10px rgba(0, 0, 0, .45); }
.brand-mark { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(248, 202, 13, .48); border-radius: 10px; color: var(--yellow); background: linear-gradient(145deg, #05267a, #021d62); font-size: .88rem; font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 24px; color: #d2e1fa; font-size: .96rem; font-weight: 750; }
.nav-links a:hover { color: var(--yellow); }
.nav-cta { border: 1px solid rgba(248, 202, 13, .5); border-radius: 9px; padding: 8px 16px; color: var(--yellow); background: rgba(248, 202, 13, .1); font-weight: 850; transition: background .15s ease, transform .15s ease; }
.nav-cta:hover { background: rgba(248, 202, 13, .22); transform: translateY(-1px); }

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5.5px;
}
.menu-toggle .hamburger-line {
  width: 22px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Sidebar Drawer Backdrop & Aside */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 16, 56, .8);
  backdrop-filter: blur(6px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(310px, 86vw);
  background: #021a54;
  border-left: 1px solid var(--line);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, .6);
}
.sidebar-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.drawer-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  overflow-y: auto;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-link {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 9px;
  color: #d8e6fc;
  font-size: .98rem;
  font-weight: 700;
  transition: background .15s ease, color .15s ease;
}
.drawer-link:hover, .drawer-link:active {
  background: rgba(248, 202, 13, .12);
  color: var(--yellow);
}
.drawer-actions {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.drawer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

/* Hero Section */
.hero { position: relative; overflow: hidden; padding: 54px 0 46px; background: radial-gradient(circle at 84% 12%, rgba(248, 202, 13, .18), transparent 30%), radial-gradient(circle at 17% 62%, rgba(37, 99, 235, .24), transparent 28%), #011240; }
.hero::after { position: absolute; content: ""; inset: 0; pointer-events: none; opacity: .25; background-image: linear-gradient(rgba(141, 187, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(141, 187, 255, .08) 1px, transparent 1px); background-size: 36px 36px; mask-image: linear-gradient(to bottom, #000, transparent); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(28px, 5vw, 64px); }
.hero h1 { max-width: 660px; margin: 0; font-size: clamp(2.1rem, 4.4vw, 3.8rem); line-height: 1.08; letter-spacing: -.05em; color: #ffffff; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.lead { max-width: 610px; margin: 0; color: #cbdcf8; font-size: clamp(.98rem, 1.4vw, 1.12rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 18px; max-width: 610px; }

/* Buttons */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; border: 1px solid transparent; border-radius: 9px; padding: 10px 18px; font-weight: 850; font-size: .95rem; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-full { width: 100%; min-height: 50px; font-size: 1.1rem; border-radius: 10px; box-shadow: 0 8px 24px rgba(248, 202, 13, .28); }
.button-primary { background: var(--yellow); color: #021d62; }
.button-primary:hover { background: var(--yellow-hover); box-shadow: 0 10px 28px rgba(248, 202, 13, .4); }
.button-secondary { border-color: rgba(141, 187, 255, .3); color: #ffffff; background: rgba(255, 255, 255, .05); }
.hero-note { display: flex; gap: 8px; margin-top: 16px; color: var(--muted); font-size: .8rem; }
.dot { width: 8px; height: 8px; margin-top: .45em; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(74, 222, 128, .16); }

/* Access Card */
.access-card { border: 1px solid rgba(141, 187, 255, .22); border-radius: 16px; padding: 22px; background: rgba(2, 29, 98, .88); box-shadow: var(--shadow); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.card-top h2 { margin: 0; font-size: 1.1rem; letter-spacing: -.02em; color: #ffffff; }
.safe-badge { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(74, 222, 128, .3); border-radius: 99px; padding: 3px 8px; color: #86efac; background: rgba(74, 222, 128, .1); font-size: .68rem; font-weight: 800; }
.safe-badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.checklist { display: grid; gap: 12px; margin: 16px 0; }
.check { display: flex; gap: 12px; align-items: flex-start; }
.check-mark { display: grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; border-radius: 6px; background: rgba(248, 202, 13, .16); color: var(--yellow); font-size: .85rem; font-weight: 900; }
.check strong, .check span { display: block; }
.check strong { font-size: .88rem; color: #ffffff; }
.check span { margin-top: 1px; color: var(--muted); font-size: .77rem; line-height: 1.4; }
.access-card .button { width: 100%; cursor: default; color: #9ab4db; border-color: var(--line); background: rgba(255,255,255,.04); min-height: 42px; font-size: .88rem; }
.access-card small { display: block; margin-top: 10px; color: #9ab4db; text-align: center; font-size: .75rem; line-height: 1.35; }

/* Trust Row */
.trust-row { border-bottom: 1px solid var(--line); background: #011648; }
.trust-items { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 18px 20px; text-align: center; color: #dbe6fb; font-size: .85rem; font-weight: 700; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item b { display: block; color: var(--yellow); font-size: 1.05rem; margin-bottom: 2px; }

/* Content Sections */
.section { padding: 58px 0; }
.section-dark { background: #011648; }
.section-heading { max-width: 710px; }
.section h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.15; letter-spacing: -.04em; color: #ffffff; }
.section-intro { margin: 12px 0 0; color: var(--muted); font-size: .95rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.step { position: relative; min-height: 190px; border: 1px solid var(--line); border-radius: 12px; padding: 20px; background: linear-gradient(145deg, rgba(37, 99, 235, .15), rgba(2, 29, 98, .45)); }
.step-no { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 8px; background: rgba(248, 202, 13, .16); color: var(--yellow); font-size: .8rem; font-weight: 900; }
.step h3 { margin: 24px 0 6px; font-size: 1rem; color: #ffffff; }
.step p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.step:not(:last-child)::after { position: absolute; content: "→"; right: -22px; top: 50%; z-index: 2; color: var(--yellow); font-size: 1.2rem; transform: translateY(-50%); }

/* Split Layout */
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(24px, 5vw, 60px); align-items: start; }
.info-panel { display: grid; gap: 12px; }
.info { display: flex; gap: 12px; border: 1px solid var(--line); border-radius: 11px; padding: 15px; background: rgba(2, 29, 98, .5); }
.info-icon { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border-radius: 8px; color: var(--yellow); background: rgba(248, 202, 13, .14); font-size: .95rem; }
.info h3 { margin: 0; font-size: .95rem; color: #ffffff; }
.info p { margin: 3px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.warning { margin-top: 20px; border-left: 3px solid var(--yellow); padding: 8px 0 8px 14px; color: #f0f6ff; font-size: .88rem; background: rgba(248, 202, 13, .06); border-radius: 0 8px 8px 0; }

/* FAQ List */
.faq-list { display: grid; gap: 8px; margin-top: 24px; }
details { border: 1px solid var(--line); border-radius: 10px; background: rgba(2, 29, 98, .4); transition: background .15s ease; }
details[open] { background: rgba(5, 38, 122, .6); }
summary { padding: 14px 16px; cursor: pointer; list-style: none; font-size: .93rem; font-weight: 780; display: flex; justify-content: space-between; align-items: center; color: #ffffff; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--yellow); font-size: 1.2rem; line-height: 1; margin-left: 10px; }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 16px 14px; color: var(--muted); font-size: .88rem; line-height: 1.5; }

/* CTA Block */
.cta { padding: 42px 0; background: linear-gradient(110deg, #f8ca0d, #ea9604); color: #021d62; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cta h2 { margin: 0; max-width: 700px; font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.15; letter-spacing: -.03em; color: #021d62; font-weight: 900; }
.cta p { margin: 8px 0 0; max-width: 700px; color: #0a256a; font-size: .95rem; font-weight: 600; }
.cta .button { flex: 0 0 auto; background: #021d62; color: #ffffff; }
.cta .button:hover { background: #011038; }

/* Footer */
.site-footer { padding: 36px 0 20px; background: #010d2c; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 24px; padding-bottom: 24px; }
.footer-text { max-width: 410px; color: #9ab4db; font-size: .82rem; margin-top: 10px; line-height: 1.5; }
.footer-title { margin: 0 0 8px; color: #e2edff; font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 6px; color: #a4bedf; font-size: .84rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding-top: 16px; color: #829dc2; font-size: .75rem; }

/* Subpage hero & prose */
.page-hero { padding: 48px 0 36px; background: radial-gradient(circle at 78% 0, rgba(248, 202, 13, .16), transparent 28%), #011240; }
.page-hero h1 { margin: 0; max-width: 800px; font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.04em; color: #ffffff; }
.prose { max-width: 760px; }
.prose h2 { margin: 28px 0 8px; font-size: 1.35rem; letter-spacing: -.02em; color: #ffffff; }
.prose p, .prose li { color: #d0e0f8; font-size: .95rem; }
.prose ul { padding-left: 20px; }
/* Contact Page Styles */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(24px, 5vw, 54px); align-items: start; }
.contact-card { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: rgba(2, 29, 98, .75); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 16px; margin-top: 10px; }
.form-group { display: grid; gap: 6px; }
.form-group label { color: #d2e1fa; font-size: .88rem; font-weight: 700; }
.form-input, .form-textarea { width: 100%; border: 1px solid var(--line); border-radius: 9px; padding: 12px 14px; background: rgba(1, 16, 56, .75); color: #ffffff; font-family: inherit; font-size: .95rem; transition: border-color .15s ease, box-shadow .15s ease; box-sizing: border-box; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(248, 202, 13, .2); }
.form-textarea { resize: vertical; min-height: 120px; }
.contact-info-list { display: grid; gap: 12px; margin-top: 16px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 15px; border: 1px solid var(--line); border-radius: 11px; background: rgba(2, 29, 98, .45); }
.contact-icon { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border-radius: 9px; color: var(--yellow); background: rgba(248, 202, 13, .14); font-size: 1.05rem; }
.contact-info-item h3 { margin: 0; font-size: .95rem; color: #ffffff; }
.contact-info-item p { margin: 3px 0 0; color: var(--muted); font-size: .85rem; line-height: 1.45; }

/* Media Banner & Promo Showcase */
.promo-showcase { margin-top: 14px; }
.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.promo-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 36px rgba(0, 0, 0, .4); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.promo-card:hover { transform: translateY(-4px); border-color: rgba(248, 202, 13, .45); box-shadow: 0 18px 45px rgba(0, 0, 0, .6); }
.promo-img-wrapper { position: relative; width: 100%; aspect-ratio: 16 / 10.6; overflow: hidden; background: #010c2b; }
.promo-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.promo-card:hover .promo-img { transform: scale(1.03); }
.promo-content { padding: 18px 20px 20px; }
.promo-content h3 { margin: 0 0 6px; font-size: 1.12rem; color: #ffffff; font-weight: 800; }
.promo-content p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.45; }

/* Single Feature Banner */
.feature-banner { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(0, 0, 0, .45); background: #010c2b; margin: 20px 0 26px; }
.feature-banner img { width: 100%; height: auto; display: block; object-fit: cover; }

/* Responsive Media Queries */
@media (max-width: 860px) {
  .nav { min-height: 66px; }
  .brand { font-size: 1.14rem; gap: 10px; }
  .brand-img { width: 38px; height: 38px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 38px 0 34px; }
  .hero-grid, .split, .contact-grid, .promo-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step { min-height: auto; }
  .step h3 { margin-top: 14px; }
  .step:not(:last-child)::after { display: none; }
  .trust-items { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .trust-item { padding: 14px 16px; }
  .cta-grid { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .section { padding: 42px 0; }
}

@media (max-width: 520px) {
  .wrap { width: calc(100% - 24px); }
  .notice p { text-align: left; padding: 6px 10px; font-size: .78rem; }
  .hero h1 { font-size: 2.1rem; }
  .access-card { padding: 16px; }
  .button-full { min-height: 48px; font-size: 1.05rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .section { padding: 34px 0; }
  .page-hero { padding: 36px 0 24px; }
}
