:root {
  --bg: #170507;
  --bg-soft: rgba(55, 9, 14, 0.72);
  --panel: rgba(34, 9, 12, 0.78);
  --panel-strong: rgba(17, 6, 9, 0.92);
  --text: #fff5f3;
  --muted: #e8c4bf;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #ff4444;
  --accent-soft: #ff7c7c;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 80, 80, 0.24), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 164, 115, 0.12), transparent 22%),
    linear-gradient(180deg, #25070b 0%, #130305 36%, #080102 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 120px
    );
  mix-blend-mode: screen;
  opacity: 0.35;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.section,
.site-header,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(18, 4, 7, 0.64);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.brand-wordmark {
  width: 168px;
  opacity: 0.92;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover,
.footer-links a:hover,
.footer-link-button:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

h1,
h2,
h3,
.quote-mark {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 0.93;
  max-width: 10ch;
}

h1 span {
  display: block;
  color: var(--accent-soft);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  margin-top: 24px;
  max-width: 50ch;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-width: 168px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 600;
}

.button-primary {
  background: linear-gradient(135deg, #ff6f61, #ff3131);
  color: white;
  box-shadow: 0 16px 30px rgba(255, 68, 68, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: #f6d7d3;
}

.hero-visual {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  align-items: end;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform-style: preserve-3d;
}

.hero-product {
  border-radius: 34px;
  width: 112%;
  max-width: none;
  margin-left: -3%;
  transform: translateY(52px);
  filter: drop-shadow(0 42px 96px rgba(0, 0, 0, 0.42));
}

.hero-stat {
  position: absolute;
  right: -6px;
  bottom: 34px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(17, 6, 9, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.stat-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.orb-left {
  width: 360px;
  height: 360px;
  left: 40px;
  top: 20px;
  background: radial-gradient(circle, rgba(255, 110, 92, 0.34), transparent 70%);
}

.orb-right {
  width: 480px;
  height: 480px;
  right: -60px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(255, 44, 44, 0.34), transparent 72%);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-card,
.mode-card,
.intel-card,
.phone-card,
.quote-card,
.cta-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.proof-card {
  padding: 26px;
}

.proof-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #ff6a5b, #ff3838);
  font-family: "Space Grotesk", sans-serif;
}

.split-section,
.product-section,
.app-section,
.cta-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.section-copy {
  max-width: 58ch;
}

.mode-grid,
.feature-list,
.intelligence-grid {
  display: grid;
  gap: 18px;
}

.mode-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mode-card,
.intel-card {
  padding: 26px;
}

.mode-icon {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-soft);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mode-card-accent {
  background: linear-gradient(180deg, rgba(80, 14, 18, 0.94), rgba(35, 8, 11, 0.9));
}

.product-gallery {
  display: grid;
  gap: 20px;
}

.gallery-frame {
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-primary {
  min-height: 520px;
}

.gallery-secondary {
  max-width: 78%;
  justify-self: end;
}

.feature-list article {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list article:last-child {
  border-bottom: 0;
}

.intelligence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.app-section {
  align-items: start;
}

.app-copy {
  position: sticky;
  top: 128px;
}

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

.phone-card {
  padding: 14px;
}

.phone-card img {
  width: 100%;
  border-radius: 24px;
}

.phone-card figcaption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #f6d7d3;
}

.quote-section {
  padding-top: 30px;
}

.quote-card {
  padding: 38px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 87, 87, 0.12), transparent 44%),
    rgba(25, 7, 10, 0.82);
}

.quote-mark {
  color: var(--accent-soft);
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

blockquote {
  max-width: 22ch;
  margin: 18px auto 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--text);
}

.cta-section {
  align-items: stretch;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 30px;
}

.cta-note {
  font-size: 0.9rem;
  color: #f0c5bf;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 56px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.footer-brand p {
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 1, 2, 0.76);
  backdrop-filter: blur(10px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(255, 87, 87, 0.14), transparent 36%),
    rgba(20, 6, 8, 0.96);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.contact-intro {
  margin-top: 10px;
  max-width: 42ch;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field span {
  font-size: 0.92rem;
  color: #f3d2cd;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 245, 243, 0.46);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 124, 124, 0.68);
  background: rgba(255, 255, 255, 0.06);
}

.contact-field textarea {
  min-height: 140px;
  resize: vertical;
}

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

.contact-status {
  min-height: 24px;
  font-size: 0.94rem;
  color: #f7d4cf;
}

.contact-status.is-success {
  color: #ffc9b5;
}

.contact-status.is-error {
  color: #ff9b9b;
}

.contact-honey {
  position: absolute;
  left: -9999px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1100px) {
  .hero,
  .split-section,
  .product-section,
  .app-section,
  .cta-section,
  .proof-strip,
  .intelligence-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
    padding: 16px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 12px;
  }

  .hero-card {
    width: min(100%, 640px);
  }

  .hero-product {
    width: 100%;
    margin-left: 0;
    transform: translateY(0);
  }

  .hero-stat {
    right: 14px;
    bottom: 14px;
  }

  .gallery-secondary {
    max-width: 100%;
  }

  .app-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --content-width: min(100vw - 24px, 100%);
  }

  .section {
    padding: 52px 0;
  }

  .site-header {
    top: 12px;
    gap: 12px;
    padding: 14px;
  }

  .brand-wordmark {
    width: 128px;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .hero-actions,
  .footer-links,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mode-grid,
  .phone-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 14px;
    border-radius: 0;
  }

  .hero-stat {
    position: static;
    margin-top: 12px;
  }

  .quote-card,
  .cta-panel,
  .proof-card,
  .mode-card,
  .intel-card {
    padding: 22px;
  }

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