/* IVOAI.ai — EU Shield & Sovereignty */
:root {
  --bg: #080D1E;
  --nav: #0C1426;
  --accent: #003DA5;
  --accent-hover: #002E7A;
  --accent-light: rgba(0,61,165,0.15);
  --cyan: #00BFFF;
  --text: #F0F4FF;
  --muted: rgba(240,244,255,0.55);
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.09);
  --green: #00E676;
  --green-hover: #00c060;
  --gold: #FFB300;
  --red: #FF5252;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--cyan); }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── Skip link ── */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 1000; font-weight: 600; font-size: 14px; }
.skip-link:focus { left: 0; outline: 2px solid #fff; outline-offset: 2px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-green { background: var(--green); color: #000; }
.btn-green:hover { background: var(--green-hover); color: #000; transform: translateY(-1px); }

/* ── Nav ── */
nav { background: var(--nav); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.nav-logo span { color: var(--accent); }
.nav-logo .tld { font-size: 14px; font-weight: 600; color: var(--cyan); margin-left: 2px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle-cb { display: none; }
.nav-toggle { display: none; cursor: pointer; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 8px; transition: background .15s; -webkit-tap-highlight-color: transparent; }
.nav-toggle:hover { background: rgba(255,255,255,0.06); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }

@media(max-width:768px) {
  .nav-toggle { display: flex; }
  .nav-inner { flex-wrap: wrap; row-gap: 8px; height: auto; padding-top: 12px; padding-bottom: 12px; }
  nav .nav-cta { display: none; }
  nav .nav-toggle-cb:checked ~ .nav-links { display: flex; flex-direction: column; width: 100%; order: 3; gap: 0; padding: 8px 0 4px; margin: 0; list-style: none; }
  nav .nav-toggle-cb:checked ~ .nav-links li { width: 100%; }
  nav .nav-toggle-cb:checked ~ .nav-links a { display: block; padding: 14px 4px; font-size: 15px; border-top: 1px solid var(--border); }
  nav .nav-toggle-cb:checked ~ .nav-cta { display: flex; flex-direction: column; width: 100%; order: 4; gap: 8px; padding: 8px 0 4px; border-top: 1px solid var(--border); }
  nav .nav-toggle-cb:checked ~ .nav-cta .btn { width: 100%; padding: 14px 20px; }
  nav .nav-toggle-cb:checked + .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav .nav-toggle-cb:checked + .nav-toggle span:nth-child(2) { opacity: 0; }
  nav .nav-toggle-cb:checked + .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── Hero ── */
.hero { padding: 100px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: -20% -10% auto -10%; height: 60%; background: radial-gradient(ellipse at 50% 0%, rgba(0,61,165,0.2), transparent 60%); pointer-events: none; }
.hero .container { position: relative; }
.hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero h1 span { color: var(--cyan); }
.hero p.lede { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 620px; margin: 0 auto 32px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-meta { display: flex; justify-content: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.hero-meta .meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .meta-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(0,230,118,0.6); }

/* ── Section labels ── */
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 18px; max-width: 600px; }

/* ── Regulation cards ── */
.reg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.reg-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; transition: border-color 0.2s; }
.reg-card:hover { border-color: var(--accent); }
.reg-card .reg-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.reg-badge.active { background: rgba(0,230,118,0.15); color: var(--green); border: 1px solid rgba(0,230,118,0.3); }
.reg-badge.proposed { background: rgba(255,179,0,0.15); color: var(--gold); border: 1px solid rgba(255,179,0,0.3); }
.reg-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.reg-card .reg-full { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.reg-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.reg-card .reg-stat { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.reg-card .reg-stat .num { font-size: 24px; font-weight: 800; color: var(--red); }
.reg-card .reg-stat .label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── Problem section ── */
.problem { background: var(--nav); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.problem-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.problem-card .icon { font-size: 32px; margin-bottom: 16px; }
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { color: var(--muted); font-size: 15px; }

/* ── Products grid ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; position: relative; transition: border-color 0.2s; }
.product-card:hover { border-color: var(--accent); }
.product-card.featured { border-color: var(--accent); background: rgba(0,61,165,0.07); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; }
.product-name { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.product-price { font-size: 42px; font-weight: 800; letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.product-price span { font-size: 18px; font-weight: 500; color: var(--muted); }
.product-period { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.product-desc { font-size: 15px; color: var(--muted); margin-bottom: 24px; min-height: 48px; }
.product-features { list-style: none; margin-bottom: 32px; }
.product-features li { font-size: 14px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.product-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.product-card .btn { width: 100%; }

/* ── One-off services ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: border-color 0.2s; }
.service-card:hover { border-color: var(--accent); }
.service-card .service-icon { font-size: 32px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.service-card .price { font-size: 28px; font-weight: 800; color: var(--green); margin-bottom: 4px; }
.service-card .price-note { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* ── Timeline ── */
.timeline { max-width: 720px; margin: 48px auto 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 24px; margin-bottom: 32px; position: relative; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); margin-top: 6px; flex-shrink: 0; position: relative; left: 19px; z-index: 1; }
.timeline-dot.active { background: var(--green); box-shadow: 0 0 10px rgba(0,230,118,0.5); }
.timeline-dot.upcoming { background: var(--gold); }
.timeline-dot.proposed { background: var(--gold); border: 2px dashed var(--gold); background: transparent; }
.timeline-content { padding-left: 12px; }
.timeline-content .date { font-size: 13px; font-weight: 600; color: var(--cyan); margin-bottom: 4px; }
.timeline-content h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { color: var(--muted); font-size: 14px; }

/* ── Trust bar ── */
.trust { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.trust-item .icon { font-size: 22px; }

/* ── Journey / How it works ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; position: relative; }
.step-number { font-size: 48px; font-weight: 900; color: var(--accent); opacity: 0.3; line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* ── CTA banner ── */
.cta-banner { text-align: center; padding: 80px 0; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--muted); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 17px; }

/* ── Cross-sell ── */
.crosssell { background: var(--nav); }
.crosssell-card { background: linear-gradient(135deg, rgba(0,61,165,0.1), rgba(0,191,255,0.05)); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.crosssell-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.crosssell-card p { color: var(--muted); font-size: 15px; max-width: 520px; line-height: 1.7; }

/* ── Stat blocks ── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 48px; }
.stat-block { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; }
.stat-block .num { font-size: 36px; font-weight: 800; color: var(--cyan); display: block; line-height: 1; letter-spacing: -1px; }
.stat-block .label { font-size: 14px; color: var(--muted); margin-top: 8px; display: block; }

/* ── Forms ── */
.form-section { padding: 80px 0; }
.form-wrap { max-width: 600px; margin: 0 auto; }
.form-title { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.form-sub { color: var(--muted); margin-bottom: 40px; }
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--muted); }
input, select, textarea { width: 100%; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; color: var(--text); font-family: inherit; font-size: 15px; transition: border-color 0.2s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
select option { background: var(--nav); }
.form-submit { margin-top: 32px; }
.form-submit .btn { width: 100%; font-size: 16px; padding: 16px; }
.form-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 16px; }

/* ── Footer ── */
footer { background: var(--nav); border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-brand .nav-logo { margin-bottom: 8px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 48px; }
  .hero-meta { gap: 14px; font-size: 12px; }
  .crosssell-card { flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline::before { left: 18px; }
  .timeline-dot { left: 13px; }
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
