@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand: #b91c2c;
  --brand-strong: #921522;
  --brand-ring: rgba(185, 28, 44, 0.22);
  --brand-soft: rgba(185, 28, 44, 0.08);
  --bg: #f7f9f8;
  --surface: #ffffff;
  --text: #17201c;
  --muted: #58645e;
  --muted-2: #75807a;
  --border: #e1e6e3;
  --border-soft: #e8ecea;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 16px 42px rgba(23, 32, 28, 0.06);
  --shadow-button: 0 14px 30px rgba(185, 28, 44, 0.28);
  --max-width: 1120px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  margin: 0;
  line-height: 1.7;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button--primary {
  background: var(--brand);
  box-shadow: var(--shadow-button);
  color: #fff;
}

.button--primary:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
}

.button--secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.button--secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.button--ghost {
  padding: 8px 4px;
  color: var(--muted);
  font-weight: 700;
}

.button--ghost:hover {
  color: var(--brand);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--brand-ring);
  outline-offset: 2px;
}

.button--large {
  padding: 16px 30px;
  font-size: 15.5px;
}

/* Nav */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(247, 249, 248, 0.86);
  backdrop-filter: blur(10px);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__icon {
  flex: 0 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(185, 28, 44, 0.18);
}

.brand__name {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
}

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

/* Hero */

.hero {
  position: relative;
  overflow: clip;
  padding: 64px 0 40px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 28, 44, 0.14), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: 1.05fr 0.95fr;
}

.hero__copy h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.hero__copy h1 span {
  color: var(--brand);
}

.hero__lede {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero__note {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 12.5px;
}

.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}

.hero__stat strong {
  display: block;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.hero__stat span {
  color: var(--muted-2);
  font-size: 12.5px;
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__art-plate {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background:
    radial-gradient(circle at 30% 20%, rgba(185, 28, 44, 0.16), transparent 60%),
    #fff;
  box-shadow: var(--shadow-card);
}

.hero__art-plate img {
  width: 62%;
  filter: drop-shadow(0 18px 30px rgba(185, 28, 44, 0.25));
}

.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(23, 32, 28, 0.1);
  font-size: 12.5px;
  font-weight: 700;
}

.hero__chip--age {
  top: 4%;
  left: -2%;
  color: #1f7a4d;
  transform: rotate(-4deg);
}

.hero__chip--age::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a35c;
}

.hero__chip--distance {
  bottom: 12%;
  left: 6%;
  color: #1f7a4d;
  transform: rotate(3deg);
}

.hero__chip--distance::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a35c;
}

.hero__chip--ai {
  right: -10%;
  bottom: 26%;
  color: var(--brand);
  transform: rotate(-2deg);
}

.hero__chip--ai::before {
  content: "✦";
  color: var(--brand);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__art {
    order: -1;
  }

  .hero__chip {
    display: none;
  }
}

/* Section shell */

.section {
  padding: 84px 0;
}

.section--tight {
  padding: 64px 0;
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(26px, 3.6vw, 36px);
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

/* Features */

.features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 26px 24px 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.feature-card:hover {
  box-shadow: 0 20px 46px rgba(23, 32, 28, 0.09);
  transform: translateY(-3px);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 16.5px;
}

.feature-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* How it works */

.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.step {
  position: relative;
  padding: 30px 24px 26px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.step h3 {
  font-size: 16px;
}

.step p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Privacy band */

.privacy-band {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: #fff6f7;
}

.privacy-band__inner {
  display: grid;
  align-items: center;
  gap: 40px;
  grid-template-columns: 0.9fr 1.1fr;
}

.privacy-band__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--brand);
}

.privacy-band__badge svg {
  width: 26px;
  height: 26px;
}

.privacy-band h2 {
  font-size: clamp(24px, 3.2vw, 30px);
}

.privacy-band__lede {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 460px;
}

.privacy-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.privacy-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 14.5px;
}

.privacy-list .tick {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 860px) {
  .privacy-band__inner {
    grid-template-columns: 1fr;
  }
}

/* CTA banner */

.cta-banner {
  margin: 0 auto;
  padding: 56px clamp(24px, 6vw, 64px);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 24px 60px rgba(146, 21, 34, 0.32);
  color: #fff;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(24px, 3.4vw, 32px);
}

.cta-banner p {
  max-width: 480px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15.5px;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.cta-banner .button--secondary {
  border-color: transparent;
  background: #fff;
  color: var(--brand);
}

.cta-banner .button--ghost {
  color: rgba(255, 255, 255, 0.86);
}

.cta-banner .button--ghost:hover {
  color: #fff;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 36px;
}

.site-footer__top {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.3fr 1fr 1fr;
  padding-bottom: 36px;
}

.site-footer__brand p {
  max-width: 300px;
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 13.5px;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: var(--muted-2);
  font-size: 13.5px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--brand);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.7;
}

.site-footer__bottom p {
  max-width: 640px;
}

@media (max-width: 760px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

/* Privacy policy page */

.policy-layout {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
  padding: 48px 0 90px;
}

.policy-back {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.policy-back:hover {
  text-decoration: underline;
}

.policy-card {
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.policy-heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-soft);
}

.policy-heading h1 {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 36px);
}

.policy-meta {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.6;
}

.policy-summary {
  margin: 28px 0 34px;
  padding: 18px 20px;
  border-left: 3px solid var(--brand);
  border-radius: 0 12px 12px 0;
  background: #fff6f7;
}

.policy-summary strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.policy-summary p {
  margin: 0;
}

.policy-card section + section {
  margin-top: 34px;
}

.policy-card h2 {
  margin: 0 0 14px;
  font-size: 21px;
}

.policy-card h3 {
  margin: 24px 0 8px;
  color: #2f3a35;
  font-size: 15px;
  line-height: 1.45;
}

.policy-card p,
.policy-card li,
.policy-card address {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.policy-card p {
  margin: 10px 0 0;
}

.policy-card ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.policy-card li + li {
  margin-top: 6px;
}

.policy-card a {
  color: var(--brand);
  font-weight: 700;
}

.policy-card code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #f0f3f1;
  color: #39443f;
  font-size: 0.92em;
}

.policy-card address {
  margin-top: 10px;
  font-style: normal;
}

.policy-card address strong {
  color: var(--text);
}

.policy-independence {
  margin-top: 24px !important;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  font-size: 12px !important;
}

@media (max-width: 560px) {
  .policy-layout {
    width: min(100% - 28px, 820px);
    padding-top: 30px;
  }

  .policy-card {
    border-radius: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
