/* === Additional styles for redesigned protect page + new aurora === */

/* Hero ticker — discreet bottom bar */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-ticker .container {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.hero-ticker .item { opacity: 0.7; display: flex; align-items: center; gap: 10px; }
.hero-ticker .item b { color: var(--accent); font-weight: 500; opacity: 1; }

/* Em color helper */
h1 .em, h2 .em, h3 .em, h4 .em {
  color: var(--accent);
  font-weight: 200;
}

/* === PROTEGER PAGE === */
.protect-problem {
  background: var(--paper);
  padding: 160px 0;
}
.protect-problem-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}
.protect-problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.protect-problem-item {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.3s;
  cursor: pointer;
}
.protect-problem-item:hover { background: var(--paper-2); }
.protect-problem-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.protect-problem-t {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.protect-problem-d {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}
@media (max-width: 880px) {
  .protect-problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .protect-problem-list { grid-template-columns: 1fr; }
}

/* SOLUTION — dark with aurora */
.protect-solution {
  background: var(--ink-4);
  color: var(--paper);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.protect-solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,178,170,0.18), transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(80, 90, 110, 0.4), transparent 65%);
  pointer-events: none;
}
.protect-solution > .container { position: relative; z-index: 1; }
.protect-solution-header {
  max-width: 800px;
  margin-bottom: 80px;
}
.protect-solution-header h2 { font-size: clamp(40px, 5vw, 76px); font-weight: 200; }
.protect-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.protect-solution-card {
  background: var(--ink-4);
  padding: 56px 40px;
  position: relative;
  transition: background 0.4s;
  cursor: pointer;
}
.protect-solution-card:hover { background: var(--ink-2); }
.protect-solution-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 32px;
}
.protect-solution-card h3 {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.protect-solution-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  max-width: 36ch;
  margin-bottom: 32px;
}
.protect-solution-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}
@media (max-width: 880px) {
  .protect-solution-grid { grid-template-columns: 1fr; }
}

/* METHOD */
.protect-method {
  padding: 160px 0;
  background: var(--paper);
}
.protect-method-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
.protect-method-header h2 { font-size: clamp(40px, 5vw, 72px); max-width: 14ch; font-weight: 200; }
@media (max-width: 880px) {
  .protect-method-header { grid-template-columns: 1fr; gap: 24px; }
}

/* PROOF */
.protect-proof {
  background: var(--paper-2);
  padding: 140px 0;
}
.protect-proof-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.protect-proof-quote-mark {
  font-family: var(--font-display);
  font-size: 160px;
  line-height: 0.5;
  color: var(--accent);
  font-weight: 300;
  margin-bottom: 32px;
}
.protect-proof-quote {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.4;
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 32ch;
  margin-inline: auto;
}
.protect-proof-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.protect-proof-result {
  color: var(--accent);
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 999px;
}

/* FINAL CTA */
.protect-final-cta {
  background: var(--ink-4);
  color: var(--paper);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.protect-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(0,178,170,0.2), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(0,178,170,0.08), transparent 70%);
  pointer-events: none;
}
.protect-final-cta > .container { position: relative; z-index: 1; }
.protect-final-cta-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.protect-final-cta h2 {
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 100;
  letter-spacing: -0.04em;
  margin: 32px 0;
}
.protect-final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  max-width: 56ch;
  margin-inline: auto;
  font-weight: 300;
}
.protect-final-cta-inner .page-hero-eyebrow {
  display: inline-flex;
  margin-bottom: 0;
}

/* Make hero orbs reusable on protect-final-cta and page-hero */
.page-hero, .protect-final-cta { position: relative; }
.page-hero .hero-orb, .protect-final-cta .hero-orb { z-index: 0; }
.page-hero > .container, .protect-final-cta > .container { z-index: 1; }
