:root {
  --bg-black: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --accent-red: #d72638;
  --accent-red-dark: #a81d2a;
  --cream: #f4ead5;
  --cream-dim: #c9bfa9;
  --border-subtle: rgba(244, 234, 213, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg-black);
  color: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
}

.film-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.section-shell {
  position: relative;
  padding-top: 6rem;
  background: var(--bg-black);
}

.section-tight-top {
  padding-top: 4.5rem;
}

.section-title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
}

.hero-shell {
  background: var(--bg-black);
}

.hero-boy {
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.hero-kicker {
  font-weight: 500;
  color: var(--cream-dim);
}

.hero-glow {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 38, 56, 0.4) 0%, rgba(215, 38, 56, 0) 72%);
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  left: 4%;
  width: min(580px, 40vw);
  height: 10px;
  z-index: 2;
  opacity: 0.88;
  background: linear-gradient(
    to right,
    rgba(244, 234, 213, 0.6) 0 22%,
    transparent 22% 30%,
    rgba(244, 234, 213, 0.6) 30% 53%,
    transparent 53% 61%,
    rgba(244, 234, 213, 0.6) 61% 84%,
    transparent 84% 100%
  );
}

.hero-lines-top {
  top: 9%;
}

.hero-lines-bottom {
  bottom: 4%;
}

.hero-char {
  display: inline-block;
  transform: translateY(48px);
  opacity: 0;
}

.problem-card,
.feature-card,
.flow-step,
.case-copy,
.case-screen,
.stat-card,
.pricing-card,
.faq-item,
.contact-card {
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.problem-card,
.feature-card,
.flow-step,
.case-copy,
.stat-card,
.pricing-card,
.faq-item,
.contact-card {
  padding: 1.5rem;
}

.problem-card,
.feature-card,
.pricing-card,
.faq-item,
.contact-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.problem-card:hover,
.feature-card:hover,
.faq-item:hover,
.contact-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 0 40px rgba(215, 38, 56, 0.18);
}

.problem-num {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--accent-red);
}

.problem-title {
  margin: 0.6rem 0 0;
  font-family: "Anton", sans-serif;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 0.94;
  color: var(--cream);
  text-transform: uppercase;
}

.problem-copy,
.feature-copy,
.pricing-copy,
.faq-item p,
.contact-note,
.case-copy p {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.6;
}

.problem-copy,
.feature-copy,
.pricing-copy,
.contact-note {
  margin: 0.85rem 0 0;
}

.case-copy p strong {
  color: var(--cream);
  font-weight: 600;
}

.case-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
}

.case-photo img {
  filter: drop-shadow(0 30px 60px rgba(215, 38, 56, 0.18));
}

.feature-icon {
  font-family: "Anton", sans-serif;
  color: var(--accent-red);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.feature-title,
.flow-title,
.pricing-name {
  margin: 0.6rem 0 0;
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
}

.path-line {
  align-self: center;
  position: relative;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: rgba(215, 38, 56, 0.26);
  overflow: hidden;
}

.path-line-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, var(--accent-red), #ff5b6a);
}

.path-line-vertical {
  margin-left: 1.3rem;
  width: 2px;
  height: 28px;
}

.path-line-vertical .path-line-fill {
  inset: auto 0 100% 0;
  width: 100%;
  height: 0;
}

.flow-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--accent-red);
  color: #fff;
}

.case-screen {
  overflow: hidden;
  padding: 0.5rem;
}

.stat-value {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(58px, 7.5vw, 96px);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.stat-label {
  margin: 0.6rem 0 0;
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-card {
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: 0 0 40px rgba(215, 38, 56, 0.2);
}

.pricing-price {
  margin: 0.55rem 0 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--accent-red);
}

.pricing-badge {
  position: absolute;
  top: -0.85rem;
  left: 1.5rem;
  border-radius: 999px;
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  padding: 0.52rem 0.72rem;
  font-weight: 700;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: var(--cream);
  font-weight: 700;
  font-size: 1.06rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-red);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-row span {
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}

.form-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1rem;
  background: rgba(10, 10, 10, 0.5);
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.4;
}

.form-input::placeholder {
  color: rgba(201, 191, 169, 0.55);
}

.form-input:focus {
  outline: none;
  border-color: rgba(215, 38, 56, 0.8);
  box-shadow: 0 0 0 1px rgba(215, 38, 56, 0.45);
}

.cta-btn {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.cta-primary {
  background: var(--accent-red);
}

.cta-primary:hover {
  background: var(--accent-red-dark);
}

.cta-ghost {
  border: 1.5px solid var(--cream);
  background: transparent;
}

.cta-ghost:hover {
  background: rgba(244, 234, 213, 0.06);
}

.messenger-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  padding: 0.9rem 1.15rem;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.messenger-btn:hover {
  transform: translateY(-3px);
  background: rgba(244, 234, 213, 0.06);
  box-shadow: 0 0 28px rgba(215, 38, 56, 0.15);
}

@media (max-width: 1279px) {
  .hero-glow {
    right: -6%;
    width: min(50vw, 500px);
    height: min(50vw, 500px);
  }

  .hero-lines {
    left: 5%;
    width: min(460px, 48vw);
  }
}

@media (max-width: 767px) {
  .section-shell {
    padding-top: 4.5rem;
  }

  .section-tight-top {
    padding-top: 3.8rem;
  }

  .hero-lines {
    left: 7%;
    width: 52vw;
  }

  .hero-lines-bottom {
    bottom: 5%;
  }

  .hero-glow {
    right: 50%;
    transform: translateX(50%);
    bottom: 38%;
    width: 68vw;
    height: 68vw;
  }

  .problem-copy,
  .feature-copy,
  .pricing-copy,
  .faq-item p,
  .contact-note,
  .case-copy p {
    font-size: 0.95rem;
  }
}
