@font-face {
  font-family: "Proxima Nova";
  src: url("/fonts/proxima-nova/ProximaNova-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("/fonts/proxima-nova/ProximaNova-Semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 650;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("/fonts/proxima-nova/ProximaNova-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("/fonts/proxima-nova/ProximaNova-Black.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 950;
}

@font-face {
  font-family: "Fagies";
  src: url("/fonts/brand/Fagies.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: light;
  --bg: #fff8ed;
  --surface: #ffffff;
  --surface-soft: #fffdf8;
  --ink: #11181d;
  --muted: #495057;
  --soft: #69757f;
  --line: #e6e8ea;
  --navy: #0d3b66;
  --navy-pressed: #092d4f;
  --mint: #a1e1bc;
  --mint-dark: #5f8651;
  --shadow: 0 24px 70px rgba(13, 59, 102, 0.12);
  --shadow-card: 0 14px 34px rgba(38, 50, 58, 0.09);
  --font-ui: "Proxima Nova", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Fagies", "Proxima Nova", ui-serif, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(72, 147, 198, 0.14), transparent 34rem),
    linear-gradient(180deg, #fff8ed 0%, #fbf4e8 100%);
  color: var(--ink);
  font-family: var(--font-ui);
  text-rendering: optimizeLegibility;
}

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

.landing-shell {
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  width: min(100%, 1120px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 48px);
}

.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--navy);
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}


.brand strong {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.beta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(161, 225, 188, 0.78);
  color: #274032;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  display: grid;
  align-items: end;
  min-height: clamp(430px, 64vh, 680px);
  padding: clamp(28px, 7vw, 72px);
  border: 1px solid rgba(13, 59, 102, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  max-width: 760px;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 10ch;
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-body {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  font-weight: 650;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding-top: 8px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(13, 59, 102, 0.22);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.primary-cta:hover {
  background: var(--navy-pressed);
  box-shadow: 0 15px 28px rgba(13, 59, 102, 0.25);
  transform: translateY(-1px);
}

.primary-cta:focus-visible {
  outline: 3px solid rgba(72, 147, 198, 0.42);
  outline-offset: 3px;
}

.cta-row p {
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  min-height: 180px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #eef7f2;
  color: var(--navy);
}

.card-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.privacy-card .card-icon {
  background: var(--mint);
  color: #274032;
}

.info-card h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.7vw, 1.75rem);
  font-weight: 950;
  line-height: 1.08;
}

.info-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.48;
}

.landing-footer {
  padding: 8px 0 12px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 650;
}

@media (max-width: 720px) {
  .landing-shell {
    padding: 16px;
  }

  .landing-header {
    align-items: flex-start;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    display: none;
  }

  .hero {
    min-height: 520px;
    padding: 28px 22px;
    border-radius: 24px;
  }

  h1 {
    max-width: 9.5ch;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
