* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #0b0d12;
  --ink-soft: #2f3440;
  --ink-muted: #6b7280;
  --card: #ffffff;
  --border: rgba(15, 17, 22, 0.12);
  --accent: #0f1116;
  --accent-soft: rgba(15, 17, 22, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
}

.page-bg {
  position: fixed;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
  z-index: -2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 17, 22, 0.08);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 64px;
  object-fit: contain;
  transform: scale(2.6);
  transform-origin: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:not(.nav-cta) {
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav a.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--ink);
}

.nav a.nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 17, 22, 0.18);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(15, 17, 22, 0.2);
  border-radius: 10px;
  width: 46px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle i {
  font-size: 1.4rem;
  color: var(--ink);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(15, 17, 22, 0.08);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--ink);
  font-weight: 500;
}

.nav-mobile .nav-cta {
  align-self: flex-start;
}

.hero {
  padding: 90px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 17, 22, 0.2);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  gap: 8px;
}

.hero-text {
  will-change: transform;
}

.hero-svg {
  will-change: transform;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18, 20, 26, 0.18);
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(15, 17, 22, 0.2);
}

.cta-strong {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3),
    0 0 0 6px rgba(255, 255, 255, 0.06);
}

.cta-strong:hover {
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.38),
    0 0 0 8px rgba(255, 255, 255, 0.1);
}

.pulse-once {
  animation: pulse-cta 1.8s ease 0.8s infinite;
}

.pulse-loop {
  animation: pulse-cta 1.8s ease 0.4s infinite;
}

.button.ghost {
  border-color: rgba(18, 20, 26, 0.2);
  color: var(--ink);
  background: transparent;
}

.button.small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.hero-card {
  background: transparent;
  color: var(--ink);
  padding: 0;
  border-radius: 0;
  display: grid;
  gap: 18px;
  box-shadow: none;
}

.hero-svg {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 8px;
  border: none;
}

.hero-path {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: draw-path 2.2s ease forwards;
}

.hero-svg circle {
  opacity: 0;
  animation: dot-in 0.8s ease forwards;
}

.hero-svg circle:nth-of-type(1) {
  animation-delay: 0.4s;
}

.hero-svg circle:nth-of-type(2) {
  animation-delay: 0.8s;
}

.hero-svg circle:nth-of-type(3) {
  animation-delay: 1.2s;
}

@keyframes draw-path {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dot-in {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-cta {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(15, 17, 22, 0);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 17, 22, 0.2);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(15, 17, 22, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-path,
  .hero-svg circle,
  .pulse-once,
  .stagger > * {
    animation: none;
    transition: none;
  }
}

.metric .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
}

.metric strong {
  font-size: 1.05rem;
  font-weight: 500;
}

.section {
  padding: 80px 0;
}

.soft-bg {
  background: #ffffff;
  border-top: 1px solid rgba(15, 17, 22, 0.06);
  border-bottom: 1px solid rgba(15, 17, 22, 0.06);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

ul {
  padding-left: 20px;
  color: var(--ink-soft);
  margin: 8px 0 20px;
}

li {
  margin-bottom: 8px;
}

.legal-content {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-top: 16px;
}

.legal-header {
  max-width: 760px;
}

.legal-highlight {
  border-left: 3px solid var(--ink);
  padding: 12px 16px;
  background: rgba(15, 17, 22, 0.04);
  border-radius: 8px;
}

.legal-highlight p {
  margin-bottom: 0;
  color: var(--ink);
}

.legal-page .container {
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(18, 20, 26, 0.06);
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--ink);
}

.card-icon svg {
  width: 18px;
  height: 18px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.impact {
  background: var(--accent-soft);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(15, 17, 22, 0.18);
}

.impact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(15, 17, 22, 0.2);
  margin-bottom: 12px;
  color: var(--ink);
}

.impact-icon svg {
  width: 18px;
  height: 18px;
}

.impact strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.impact span {
  color: var(--ink-soft);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pill-grid span {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.quote {
  background: var(--ink);
  color: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(15, 17, 22, 0.22);
}

.quote p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.quote span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  background: #ffffff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--ink-soft);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 12px;
  margin-bottom: 0;
}

.step {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.step-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  color: var(--ink);
}

.step-icon svg {
  width: 18px;
  height: 18px;
}

.step span {
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.2em;
}

.step h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

.final-cta .cta-panel {
  background: var(--ink);
  color: #fff;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  padding: 40px 0 30px;
  border-top: 1px solid rgba(15, 17, 22, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(160px, 1fr));
  gap: 32px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand img {
  width: min(200px, 100%);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-slogan {
  display: block;
  color: var(--ink-soft);
  max-width: 220px;
  line-height: 1.5;
}


.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links strong {
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.footer-links a {
  color: var(--ink-soft);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-meta {
  display: grid;
  gap: 6px;
  color: var(--ink-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(15, 17, 22, 0.08);
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15, 17, 22, 0.2);
  background: #ffffff;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 20px rgba(15, 17, 22, 0.12);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top svg {
  width: 18px;
  height: 18px;
}

.privacy-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 17, 22, 0.35);
  z-index: 30;
}

.privacy-popup.is-visible {
  display: flex;
}

.privacy-card {
  background: #ffffff;
  border: 1px solid rgba(15, 17, 22, 0.12);
  border-radius: 20px;
  padding: 20px 22px;
  max-width: 620px;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  box-shadow: 0 24px 50px rgba(15, 17, 22, 0.25);
}

.privacy-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 17, 22, 0.16);
  background: rgba(15, 17, 22, 0.04);
  color: var(--ink);
}

.privacy-icon svg {
  width: 22px;
  height: 22px;
}

.privacy-text h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.privacy-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.privacy-text a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .privacy-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .privacy-icon {
    width: 38px;
    height: 38px;
  }

  .privacy-card .button {
    width: 100%;
    justify-self: stretch;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.15s;
}

.stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.25s;
}

.stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.35s;
}

.stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.45s;
}

.stagger.is-visible > *:nth-child(6) {
  transition-delay: 0.55s;
}

@media (max-width: 820px) {
  .nav {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .hero-card {
    order: 2;
    max-width: 420px;
    margin: 0 auto;
  }

  .final-cta .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(160px, 1fr));
  }

  .footer-slogan {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: auto;
    height: 56px;
    transform: scale(2.1);
  }

  .container {
    width: min(1120px, 92vw);
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-card {
    max-width: 224px;
  }

  .hero-svg {
    border-radius: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .to-top {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: auto;
    height: 52px;
    transform: scale(1.9);
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}
