:root {
  --ink: #0e1a24;
  --slate: #24323d;
  --slate-2: #2f3f4d;
  --mist: #d7e0ea;
  --ice: #f3f6f9;
  --accent: #f7a14b;
  --accent-2: #ffb978;
  --glow: rgba(247, 161, 75, 0.35);
  --line: rgba(215, 224, 234, 0.35);
  --shadow: 0 24px 60px rgba(14, 26, 36, 0.18);
  --radius: 22px;
  --max-width: 1120px;
  --font-sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink);
  background-color: #f9fbfd;
  background: radial-gradient(circle at 20% 20%, #fdf3ea 0%, transparent 45%),
    radial-gradient(circle at 80% 10%, #e6edf5 0%, transparent 48%),
    linear-gradient(160deg, #f9fbfd 0%, #eef2f6 45%, #f7f0e7 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

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

h1,
h2,
h3 {
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

.site-header {
  padding: 28px clamp(20px, 5vw, 48px);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--slate);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-name {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(14, 26, 36, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: #241509;
  box-shadow: 0 10px 24px rgba(247, 161, 75, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(247, 161, 75, 0.35);
}

.button-ghost {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(14, 26, 36, 0.15);
  color: var(--slate);
}

.button-outline {
  background: transparent;
  border: 1px solid rgba(14, 26, 36, 0.15);
  color: var(--slate);
  box-shadow: none;
}

.button-invert {
  background: var(--slate);
  color: var(--ice);
}

.hero {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0 clamp(96px, 10vw, 130px);
  margin: 0 0 50px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, #f7e6d2 0%, transparent 55%),
    radial-gradient(circle at 75% 10%, #dfe7f1 0%, transparent 50%),
    linear-gradient(120deg, #f9fbfd 0%, #eef3f8 45%, #f8eddc 100%);
  z-index: 0;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  z-index: 0;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 12px 0 16px;
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--slate-2);
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0 28px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.meta-label {
  display: block;
  font-size: 0.82rem;
  color: var(--slate-2);
  margin-bottom: 6px;
}

.meta-value {
  font-weight: 600;
  color: var(--slate);
}

.hero-aside {
  display: grid;
  gap: 22px;
  padding-top: 6px;
}

.aside-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}

.aside-item p {
  margin: 0;
  color: var(--slate-2);
  line-height: 1.5;
}

.aside-item + .aside-item {
  border-top: 1px solid rgba(36, 50, 61, 0.1);
  padding-top: 20px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto 90px;
  padding: 0 clamp(20px, 5vw, 48px);
}

.proof-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(14, 26, 36, 0.08);
  box-shadow: 0 18px 40px rgba(14, 26, 36, 0.08);
}

.proof-text p {
  margin: 12px 0 0;
  color: var(--slate-2);
  line-height: 1.6;
  max-width: 520px;
}

.proof-grid {
  display: grid;
  gap: 16px;
}

.proof-item {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(243, 246, 249, 0.7);
}

.proof-value {
  display: block;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
}

.proof-label {
  display: block;
  font-size: 0.92rem;
  color: var(--slate-2);
  line-height: 1.5;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(14, 26, 36, 0.08);
  box-shadow: 0 16px 36px rgba(14, 26, 36, 0.08);
}

.feature-card h3 {
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  color: var(--slate-2);
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.step {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.step-number {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.privacy-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  padding: 32px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(14, 26, 36, 0.1);
  box-shadow: var(--shadow);
}

.privacy-details h3 {
  margin-bottom: 6px;
}

.privacy-details p {
  margin-top: 0;
  color: var(--slate-2);
}

.cta {
  margin-bottom: 110px;
}

.cta-card {
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(120deg, #1f2c36, #2b3b4a);
  color: var(--ice);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-card p {
  margin: 8px 0 0;
  color: rgba(243, 246, 249, 0.8);
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--slate-2);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.7s ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .proof-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 600px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
