/* Extracted from index.html <style> block */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Dark mode palette */
  --bg: #121a26;
  --bg-2: #1a2333;
  --bg-3: #1f2a3c;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-subtle: rgba(156, 163, 175, 0.55);
  --border: #2a303c;
  --primary: #4ea3d7;
  --secondary: #4f8fa4;
  --tertiary: #f5d97c;
  --tertiary-dim: rgba(245, 217, 124, 0.12);
  --error: #f87171;
  --success: #34d399;
  --disabled: rgba(58, 124, 165, 0.43);
  --field-bg: #1c1c1e;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", sans-serif;
  --max: 1140px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(18, 26, 38, 0.97), transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled {
  border-bottom-color: var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.logo svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-cta:hover {
  background: #5db5eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(78, 163, 215, 0.35);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 55% at 65% 40%,
      rgba(78, 163, 215, 0.09) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(79, 143, 164, 0.07) 0%,
      transparent 60%
    );
  pointer-events: none;
}
/* subtle grid lines */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 163, 215, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 163, 215, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 80% at 60% 40%,
    black 30%,
    transparent 80%
  );
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--secondary);
  display: inline-block;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--tertiary);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.hero-lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

.cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(78, 163, 215, 0.2);
}
.btn-primary:hover {
  background: #5db5eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(78, 163, 215, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.btn-secondary:hover {
  color: var(--text);
  border-bottom-color: var(--text-muted);
}

/* ── HERO VISUAL ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.shield-wrap {
  position: relative;
  width: 320px;
  height: 360px;
}
.shield-wrap svg.shield {
  width: 100%;
  height: 100%;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(78, 163, 215, 0.18);
  animation: spin linear infinite;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.orbit-1 {
  width: 380px;
  height: 380px;
  top: -30px;
  left: -30px;
  animation-duration: 24s;
}
.orbit-2 {
  width: 460px;
  height: 460px;
  top: -70px;
  left: -70px;
  animation-duration: 38s;
  animation-direction: reverse;
}
.orbit-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: -4.5px;
  box-shadow: 0 0 14px var(--primary);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── PROBLEM BAND ── */
.problem-band {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.problem-label {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}
.problem-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.problem-text strong {
  color: var(--text);
  font-weight: 500;
}

/* ── SECTION SHARED ── */
.section {
  padding: 100px 40px;
  max-width: var(--max);
  margin: 0 auto;
}
.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--secondary);
  display: inline-block;
}
.section-label.center {
  justify-content: center;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 20px;
}
h2 em {
  font-style: italic;
  color: var(--primary);
}

.section-intro {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ── PROPS GRID ── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.prop {
  padding: 40px 32px;
  background: var(--bg-2);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.prop::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.prop:hover::after {
  transform: scaleX(1);
}
.prop:hover {
  background: var(--bg-3);
}

.prop-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(78, 163, 215, 0.1);
  border: 1px solid rgba(78, 163, 215, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.prop-icon svg {
  width: 22px;
  height: 22px;
}

.prop h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.prop p {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.howitworks-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.step {
  padding: 44px 34px;
  background: var(--bg-3);
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
.step:hover {
  background: #243044;
}
.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.step:hover::after {
  transform: scaleX(1);
}

.step-num {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 700;
  color: rgba(78, 163, 215, 0.1);
  line-height: 1;
  margin-bottom: 18px;
  user-select: none;
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(78, 163, 215, 0.1);
  border: 1px solid rgba(78, 163, 215, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.step-icon svg {
  width: 24px;
  height: 24px;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
}
.step p {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.step-features {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.step-features li {
  font-size: 0.82rem;
  color: var(--text-subtle);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(42, 48, 60, 0.5);
}
.step-features li:last-child {
  border-bottom: none;
}
.step-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 55% at 50% 50%,
    rgba(78, 163, 215, 0.07) 0%,
    transparent 70%
  );
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}
.closing-line {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--tertiary);
  margin-bottom: 28px;
  opacity: 0.9;
}
.sub {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1rem;
  line-height: 1.75;
}

/* Contact block */
.contact-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 48px;
}
.contact-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  padding: 12px 24px;
  background: rgba(78, 163, 215, 0.1);
  border: 1px solid rgba(78, 163, 215, 0.25);
  border-radius: 8px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  letter-spacing: 0.01em;
}
.contact-email:hover {
  background: rgba(78, 163, 215, 0.18);
  border-color: rgba(78, 163, 215, 0.45);
  transform: translateY(-1px);
}
.contact-email svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-note {
  font-size: 0.82rem;
  color: var(--text-subtle);
}

/* ── FOOTER ── */
footer {
  padding: 36px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}
.footer-logo svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}
.footer-closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-subtle);
}
footer p {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.manifesto-line {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--text-subtle);
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42, 48, 60, 0.6);
  transition: color 0.3s;
}
.manifesto-line:last-child {
  border-bottom: none;
}
.manifesto-line.lead {
  color: var(--text);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  border-bottom-color: var(--border);
}
.manifesto-line em {
  color: var(--primary);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  .hero {
    padding: 100px 24px 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual {
    display: none;
  }
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .manifesto {
    padding: 56px 24px;
  }
  .props-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 70px 24px;
  }
  .howitworks {
    padding: 70px 24px;
  }
  .contact-block {
    padding: 28px 24px;
  }
  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 28px 24px;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text-content > * {
  animation: fadeUp 0.7s ease both;
}
.eyebrow {
  animation-delay: 0.1s;
}
h1 {
  animation-delay: 0.22s;
}
.hero-tagline {
  animation-delay: 0.34s;
}
.hero-lead {
  animation-delay: 0.46s;
}
.cta-group {
  animation-delay: 0.58s;
}
.logo-img {
  height: 64px;
  width: auto;
  vertical-align: middle;
}
.lang-switcher {
  margin-left: 16px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
}
.footer-img {
  height: 48px;
  width: auto;
  vertical-align: middle;
}
