/* The Cyber Empowerment Hub — "Security for everyone"
   Deliberate single-theme light editorial world. Navy ink, azure accent, coral
   warmth. Sans display + serif body voice for an approachable, human feel. */

:root {
  --paper:     #f3f6fb;
  --paper-2:   #ffffff;
  --ink:       #0e2136;
  --ink-soft2: #3c5473;
  --ink-faint: #71859f;
  --line:      #dbe4f0;
  --line-2:    #c6d4e6;
  --azure:     #1478c8;
  --azure-deep:#0f5c9e;
  --navy:      #0e2136;
  --coral:     #ff6a5d;
  --coral-ink: #c8402f;
  --mint:      #1a9e7f;

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;

  --wrap: 1120px;
  --r: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--azure-deep); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }

/* type */
h1, h2, h3 { margin: 0; font-weight: 850; letter-spacing: -0.025em; line-height: 1.02; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; line-height: 1.2; }
p { margin: 0 0 1rem; }
.serif { font-family: var(--serif); }
.kicker {
  font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--azure-deep); display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--coral); }
.soft { color: var(--ink-soft2); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 700; font-size: 1rem; padding: 15px 26px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; text-decoration: none; transition: transform .12s ease, background .15s ease, color .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--azure-deep); color: #fff; }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--ink); }
.btn:focus-visible { outline: 3px solid var(--azure); outline-offset: 2px; }

/* header */
header.site { position: sticky; top: 0; z-index: 40; background: rgba(243,246,251,0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; font-size: 1.05rem; }
.brand svg { width: 30px; height: 30px; }
.brand .sub { display: block; font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; margin-top: 1px; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-right a.link { color: var(--ink-soft2); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.nav-right a.link:hover { color: var(--ink); }
.nav-right .btn { padding: 10px 20px; font-size: 0.92rem; }

/* hero */
.hero { padding: clamp(56px, 9vw, 120px) 0 40px; }
.hero .kicker { margin-bottom: 26px; }
.hero h1 { max-width: 15ch; }
.hero h1 .u { background: linear-gradient(180deg, transparent 62%, rgba(255,106,93,0.35) 62%); }
.hero-sub { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.5; color: var(--ink-soft2); max-width: 40ch; margin: 28px 0 34px; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-note { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-faint); margin-top: 22px; letter-spacing: 0.02em; }

/* ticker */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); overflow: hidden; margin-top: 56px; }
.ticker-track { display: inline-flex; gap: 0; white-space: nowrap; will-change: transform; animation: marquee 34s linear infinite; }
.ticker-track span { display: inline-flex; align-items: center; font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink-soft2); padding: 15px 0; }
.ticker-track span b { color: var(--ink); font-weight: 700; }
.ticker-track span::after { content: "◆"; color: var(--coral); font-size: 0.6rem; margin: 0 28px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* section rhythm */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.lead-head { max-width: 20ch; margin-bottom: 12px; }
.lead-copy { font-family: var(--serif); font-size: 1.2rem; color: var(--ink-soft2); max-width: 52ch; }

/* manifesto band */
.manifesto { background: var(--navy); color: #eaf1fa; }
.manifesto .wrap { padding-top: clamp(70px, 10vw, 130px); padding-bottom: clamp(70px, 10vw, 130px); }
.manifesto .kicker { color: #7cc2f2; }
.manifesto .kicker::before { background: var(--coral); }
.manifesto blockquote { margin: 22px 0 0; font-family: var(--serif); font-size: clamp(1.9rem, 4.2vw, 3.4rem); line-height: 1.16; letter-spacing: -0.02em; font-weight: 400; max-width: 18ch; }
.manifesto blockquote .hl { color: #ffb0a7; font-style: italic; }
.manifesto .m-body { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end; margin-top: 40px; }
.manifesto .m-body p { color: #b9c9dd; font-size: 1.05rem; }
.manifesto .m-body .big-i { font-family: var(--serif); font-size: 5rem; line-height: 1; color: #2f4a6b; }

/* editorial stats */
.stats-ed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 2px solid var(--ink); }
.stat-ed { padding: 34px 26px 30px 0; border-bottom: 1px solid var(--line); }
.stat-ed:nth-child(2) { padding-left: 26px; border-left: 1px solid var(--line); }
.stat-ed:nth-child(3) { padding-left: 26px; border-left: 1px solid var(--line); }
.stat-ed .n { font-size: clamp(3rem, 6vw, 4.6rem); font-weight: 850; letter-spacing: -0.04em; line-height: 0.95; font-variant-numeric: tabular-nums; }
.stat-ed .n em { font-style: normal; color: var(--coral-ink); }
.stat-ed .cap { font-family: var(--serif); font-size: 1.05rem; color: var(--ink-soft2); margin-top: 14px; max-width: 26ch; }
.stat-ed .src { font-family: var(--mono); font-size: 0.68rem; color: var(--ink-faint); margin-top: 12px; letter-spacing: 0.03em; }

/* 3-step setup */
.setup { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; margin-top: 46px; position: relative; max-width: 760px; }
.step3 { position: relative; }
.step3 .num { font-family: var(--mono); font-size: 0.8rem; color: var(--azure-deep); font-weight: 700; letter-spacing: 0.1em; }
.step3 .diagram { margin: 16px 0 20px; height: 118px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); display: grid; place-items: center; }
.step3 .diagram svg { width: 100%; height: 100%; }
.step3 h3 { margin-bottom: 7px; }
.step3 p { color: var(--ink-soft2); font-size: 0.96rem; margin: 0; }
.step-arrow { position: absolute; top: 78px; right: -22px; color: var(--line-2); z-index: 2; }
.steps3 .step3:last-child .step-arrow { display: none; }

/* what we offer — blocks within the section */
.offer-block { margin-top: clamp(46px, 6vw, 72px); }
.block-title { font-size: 1.02rem; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); display: inline-flex; align-items: center; gap: 12px; padding-bottom: 14px; margin-bottom: 30px; border-bottom: 1px solid var(--line); width: 100%; }
.block-title::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--coral); flex: none; }
.offer-block .stats-ed { margin-top: 4px; }

/* what you get */
.offer { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.offer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.offer li { display: grid; grid-template-columns: 26px 1fr; gap: 16px; }
.offer li svg { width: 24px; height: 24px; margin-top: 3px; }
.offer li h3 { font-size: 1.08rem; margin-bottom: 4px; }
.offer li p { margin: 0; color: var(--ink-soft2); font-size: 0.96rem; }

/* what's next — coming soon */
.next { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(64px, 9vw, 110px) 0; }
.soon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.soon-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px 24px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.soon-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(14,33,54,0.4); border-color: var(--line-2); }
.soon-ico { width: 46px; height: 46px; border-radius: 12px; background: #eef4fb; display: grid; place-items: center; margin-bottom: 18px; }
.soon-ico svg { width: 24px; height: 24px; }
.soon-card .chip { display: inline-block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-ink); background: rgba(255,106,93,0.1); border: 1px solid rgba(255,106,93,0.25); border-radius: 999px; padding: 5px 11px; margin-bottom: 14px; }
.soon-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.soon-card p { margin: 0; color: var(--ink-soft2); font-size: 0.95rem; }
.next-note { font-family: var(--serif); font-size: 1.05rem; color: var(--ink-soft2); margin-top: 36px; max-width: 52ch; }

/* pricing (individual) */
.pricing { background: var(--navy); color: #eaf1fa; }
.pricing .wrap { display: grid; grid-template-columns: 1fr 0.9fr; gap: 54px; align-items: center; padding-top: clamp(64px,9vw,110px); padding-bottom: clamp(64px,9vw,110px); }
.pricing .kicker { color: #7cc2f2; }
.pricing h2 { color: #fff; }
.pricing .p-copy { font-family: var(--serif); color: #b9c9dd; font-size: 1.18rem; margin-top: 18px; max-width: 40ch; }
.pricing .teams { margin-top: 22px; font-size: 0.95rem; }
.pricing .teams a { color: #ffb0a7; }
.price-wrap { width: 100%; }
.plan-toggle { display: flex; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; padding: 5px; margin-bottom: 18px; }
.plan-toggle button { flex: 1; border: none; background: none; font-family: var(--sans); font-weight: 700; font-size: 0.92rem; color: #cddbec; padding: 11px 14px; border-radius: 999px; cursor: pointer; transition: background .15s ease, color .15s ease; }
.plan-toggle button.active { background: var(--paper-2); color: var(--ink); }
.price-card { background: var(--paper-2); color: var(--ink); border-radius: 16px; padding: 34px; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5); }
.price-card .plan-name { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--azure-deep); }
.price-card .amt { font-size: 3.6rem; font-weight: 850; letter-spacing: -0.03em; margin: 6px 0 0; font-variant-numeric: tabular-nums; }
.price-card .amt small { font-size: 1rem; font-weight: 600; color: var(--ink-soft2); letter-spacing: 0; }
.price-card .bill { font-family: var(--mono); font-size: 0.74rem; color: var(--ink-faint); margin-bottom: 20px; }
.toggle { display: inline-flex; background: var(--paper); border: 1px solid var(--line-2); border-radius: 999px; padding: 4px; margin-bottom: 22px; }
.toggle button { border: none; background: none; font-family: var(--sans); font-weight: 700; font-size: 0.86rem; color: var(--ink-soft2); padding: 8px 16px; border-radius: 999px; cursor: pointer; }
.toggle button.active { background: var(--ink); color: #fff; }
.field { display: block; margin-bottom: 16px; text-align: left; }
.field-lbl { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft2); margin-bottom: 7px; }
.email-input { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line-2); border-radius: 10px; padding: 13px 14px; }
.email-input::placeholder { color: var(--ink-faint); }
.email-input:focus-visible { outline: none; border-color: var(--azure); box-shadow: 0 0 0 3px rgba(20,120,200,0.18); }
.email-input.invalid { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,106,93,0.18); }
.field-err { display: block; color: var(--coral-ink); font-size: 0.8rem; margin-top: 6px; }
.field-err[hidden] { display: none; }
.soon-badge { display: inline-block; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--azure-deep); background: rgba(20,120,200,0.1); border: 1px solid rgba(20,120,200,0.25); border-radius: 999px; padding: 6px 13px; margin-bottom: 16px; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }
.btn[disabled]:hover { background: var(--ink); }
.seat { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin-bottom: 22px; }
.seat .lbl { font-size: 0.92rem; color: var(--ink-soft2); }
.stepper { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); }
.stepper button { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line-2); background: var(--paper-2); color: var(--ink); font-size: 1.2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.stepper button:hover { border-color: var(--azure); color: var(--azure-deep); }
.stepper .qty { min-width: 26px; text-align: center; font-weight: 700; }
.peruser { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.02em; color: var(--azure-deep); background: rgba(20,120,200,0.08); border-radius: 8px; padding: 9px 12px; margin-bottom: 20px; text-align: center; }
.peruser[hidden] { display: none; }
.seat[hidden] { display: none; }
.price-card .btn { width: 100%; justify-content: center; }
.price-card .fine { font-size: 0.8rem; color: var(--ink-faint); margin: 14px 0 0; text-align: center; }

/* final cta */
.final { text-align: center; }
.final h2 { max-width: 18ch; margin: 0 auto 16px; }
.final p { font-family: var(--serif); font-size: 1.2rem; color: var(--ink-soft2); max-width: 46ch; margin: 0 auto 28px; }
.consent { display: inline-flex; gap: 10px; align-items: flex-start; text-align: left; max-width: 560px; margin: 34px auto 0; font-size: 0.86rem; color: var(--ink-faint); background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; padding: 15px 18px; }
.consent svg { width: 18px; height: 18px; flex: none; margin-top: 1px; stroke: var(--coral); }

/* footer */
footer.site { border-top: 1px solid var(--line); padding: 40px 0; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--ink-faint); font-size: 0.85rem; }

/* reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* mobile */
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .stats-ed, .steps3, .offer, .soon-grid { grid-template-columns: 1fr; }
  .stat-ed:nth-child(2), .stat-ed:nth-child(3) { padding-left: 0; border-left: none; }
  .step-arrow { display: none !important; }
  .manifesto .m-body { grid-template-columns: 1fr; }
  .pricing .wrap { grid-template-columns: 1fr; }
  .nav-right .link { display: none; }
}
