@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap");

:root {
  --bg: #070707;
  --bg-elevated: #101010;
  --bg-card: #121212;
  --bg-header: rgba(7, 7, 7, 0.88);
  --red: #e31c23;
  --red-hover: #ff2d35;
  --red-deep: #9b1218;
  --red-soft: rgba(227, 28, 35, 0.12);
  --red-line: rgba(227, 28, 35, 0.35);
  --text: #f2f2f2;
  --text-muted: #a8a8a8;
  --text-dim: #8a8a8a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: none;
  --max: 1040px;
  --header-h: 64px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Outfit", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(640px 280px at 100% 0%, rgba(227, 28, 35, 0.08), transparent 55%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 7, 7, 0.94);
}

.nav {
  height: var(--header-h);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__brand img {
  height: 32px;
  width: auto;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav__menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav__menu a:hover,
.nav__menu a.is-active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 1.05rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: none;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-hover);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--red);
  color: #fff;
}

.btn--sm {
  min-height: 36px;
  padding: 0.4rem 0.85rem;
  font-size: 0.84rem;
  background: var(--red);
  color: #fff;
}

.btn--sm:hover {
  background: var(--red-hover);
  color: #fff;
}

.hero {
  padding: calc(var(--header-h) + 4.25rem) 0 3.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  max-width: 22ch;
}

.hero p {
  margin-top: 0.95rem;
  font-size: 1.08rem;
  max-width: 58ch;
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.about p + p {
  margin-top: 0.85rem;
}

.trust {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.trust h3 {
  font-family: var(--display);
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}

.trust p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-item h3 {
  font-size: 1.05rem;
}

.proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
}

.proof .card {
  padding: 1.4rem 1.45rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ff6b70;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--red);
}

.hero h1,
.page-hero h1,
.section-title,
.cta__box h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  max-width: 22ch;
}

.hero h1 span,
.highlight {
  color: #ff3b42;
}

.lead,
.hero p,
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.hero p {
  margin-top: 0.95rem;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.section .hero__actions {
  margin-top: 1.25rem;
}

.section {
  padding: 3.4rem 0;
}

.section--alt {
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: none;
}

.section-head {
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  margin-bottom: 0.55rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards--products {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.check-list {
  padding-left: 1.15rem;
  list-style: disc;
  color: var(--text-muted);
}

.check-list li {
  margin: 0.45rem 0;
}

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

a.card:hover {
  border-color: var(--red-line);
  transform: none;
}

.card__badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.card__badge--live {
  background: var(--red-soft);
  color: #ff6b70;
}

.card__badge--soon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
}

.card__badge--service {
  background: rgba(255, 255, 255, 0.06);
  color: #e8e8e8;
}

.card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--text-muted);
  flex: 1;
  font-size: 0.98rem;
}

.card__link {
  margin-top: 0.9rem;
  color: #ff6b70;
  font-weight: 600;
  font-size: 0.84rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-item {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
}

.service-item h3 {
  font-family: var(--display);
  font-size: 1.02rem;
  margin: 0 0 0.4rem;
}

.service-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.icon {
  display: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.step {
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
}

.step strong {
  display: block;
  color: #ff6b70;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.step h3 {
  font-family: var(--display);
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta__box {
  padding: 1.5rem 1.6rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta__box h2 {
  font-size: 1.2rem;
}

.cta__box p {
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-size: 1rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}

.crumbs a:hover {
  color: var(--text);
}

.page-hero {
  padding: calc(var(--header-h) + 3.25rem) 0 2rem;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.3rem);
  max-width: 22ch;
}

.page-hero p {
  margin-top: 0.7rem;
}

.product-layout,
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.product-visual {
  padding: 1rem;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.product-visual img {
  max-height: 420px;
  object-fit: contain;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list li,
.mode-card,
.report-card,
.benefit {
  padding: 1.2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.feature-list h3,
.mode-card h3,
.report-card h3,
.benefit h3 {
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.feature-list p,
.mode-card p,
.report-card p,
.benefit p,
.prose p,
.prose li {
  color: var(--text-muted);
}

.modes,
.reports,
.features-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.features-mini {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mode-card ul,
.report-card ul,
.prose ul {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.mode-card li,
.report-card li,
.prose li {
  margin: 0.3rem 0;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 680px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.form-success,
.form-error {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.form-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.form-error {
  background: var(--red-soft);
  border: 1px solid var(--red-line);
}

.soon-panel {
  padding: 2.5rem;
  border: 1px dashed var(--red-line);
  border-radius: 24px;
  background: var(--red-soft);
}

.privacy-content {
  padding-bottom: 4rem;
}

.privacy-content h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 1.8rem 0 0.6rem;
}

.privacy-content h3 {
  margin: 1.2rem 0 0.5rem;
}

.privacy-content p,
.privacy-content li {
  color: var(--text-muted);
}

.privacy-content ul {
  padding-left: 1.15rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.privacy-content a {
  color: #ff6b70;
  text-decoration: underline;
}

.info-box,
.contact-box,
.intro-box {
  margin: 1.2rem 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.25rem;
  background: #050505;
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer p,
.site-footer a {
  color: var(--text-dim);
}

.site-footer a:hover {
  color: var(--text);
}

.site-footer h2,
.site-footer h3 {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.site-footer .nav__brand {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.footer__col {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}

.not-found {
  min-height: 70vh;
  display: grid;
  align-content: center;
}

@media (max-width: 980px) {
  .cards,
  .services-grid,
  .features-mini,
  .footer__grid,
  .cards--2,
  .audience {
    grid-template-columns: 1fr 1fr;
  }

  .steps,
  .product-layout,
  .split,
  .cta__box,
  .form-row,
  .hero__grid,
  .about {
    grid-template-columns: 1fr;
  }

  .cta__box {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0b0b0b;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-h) + 3.5rem);
  }

  .hero__stats,
  .cards,
  .cards--2,
  .audience,
  .services-grid,
  .modes,
  .reports,
  .features-mini,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  a.card,
  .nav__toggle span {
    transition: none;
  }
}
