:root {
  color-scheme: light;

  --bg: #ffffff;
  --bg-soft: #fff7ec;
  --panel: #ffffff;
  --ink: #1b1814;
  --muted: #6b6156;
  --line: rgba(27, 24, 20, 0.12);

  --accent: #e25b3f;
  --accent-2: #0f5b5b;
  --accent-3: #f0b44d;

  --shadow: 0 22px 46px rgba(18, 12, 8, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

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

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92em;
  padding: 0 6px;
  border-radius: 6px;
  background: rgba(15, 91, 91, 0.08);
  color: var(--accent-2);
}

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  max-height: 900px;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(226, 91, 63, 0.12), transparent 62%),
    radial-gradient(900px 520px at 86% 8%, rgba(15, 91, 91, 0.10), transparent 64%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(255, 255, 255, 1));
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

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

.section {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0;
}

main>.section:nth-of-type(even) {
  /* background: rgba(255, 255, 255, 0.4); */
  /* border-top: 1px solid rgba(255, 255, 255, 0.7); */
  border-bottom: 1px solid rgba(27, 24, 20, 0.05);
}

.hero {
  padding-top: clamp(48px, 9vw, 96px);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 91, 91, 0.12);
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
}

.kicker {
  color: var(--muted);
  margin: 14px 0 10px;
  font-weight: 500;
}

h1,
h2,
.title,
.h2 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.title {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.15;
}

.subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.h2 {
  font-size: clamp(24px, 3.1vw, 36px);
  margin: 0 0 14px;
  line-height: 1.2;
}

.lead {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.1rem;
}

.hero-copy>* {
  animation: fadeUp 0.9s ease both;
}

.hero-copy>*:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-copy>*:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-copy>*:nth-child(3) {
  animation-delay: 0.2s;
}

.hero-copy>*:nth-child(4) {
  animation-delay: 0.28s;
}

.hero-copy>*:nth-child(5) {
  animation-delay: 0.36s;
}

.hero-copy>*:nth-child(6) {
  animation-delay: 0.44s;
}

.hero-copy>*:nth-child(7) {
  animation-delay: 0.52s;
}

.hero-media {
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.4s;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card--spaced {
  margin-top: 16px;
}

.callout {
  margin: 16px 0;
}

.card.callout {
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, rgba(226, 91, 63, 0.12), rgba(15, 91, 91, 0.08));
}

.callout-title {
  margin: 0 0 10px;
  font-weight: 700;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.list li {
  position: relative;
  padding-left: 20px;
  margin: 0;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.list.compact li {
  padding-left: 0;
}

.list.compact li::before {
  content: "";
}

.quote {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: rgba(226, 91, 63, 0.08);
  border-radius: 14px;
  color: var(--ink);
}

.emphasis {
  margin: 12px 0 0;
  color: var(--accent-2);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  border: 1px solid rgba(27, 24, 20, 0.14);
  font-weight: 700;
  letter-spacing: 0.1px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, rgba(226, 91, 63, 0.98), rgba(15, 91, 91, 0.96));
  border-color: rgba(27, 24, 20, 0.16);
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 16px 32px rgba(226, 91, 63, 0.26);
}

.btn.secondary {
  background: rgba(27, 24, 20, 0.06);
  border-color: rgba(27, 24, 20, 0.16);
}

.btn.ghost {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(27, 24, 20, 0.16);
}

.btn:hover,
.btn:focus {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 91, 91, 0.2);
}

.btn:focus-visible {
  outline: 3px solid rgba(226, 91, 63, 0.45);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(1px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 10px;
}

.cta-center {
  margin-top: 16px;
}

.video-wrap {
  position: relative;
}

.video-wrap::before {
  content: "";
  position: absolute;
  inset: 20px -12px -12px 12px;
  border-radius: 26px;
  background: rgba(15, 91, 91, 0.08);
  z-index: -1;
}

.video-frame {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.86);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-placeholder {
  padding: 22px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: radial-gradient(circle at top left, rgba(240, 180, 77, 0.12), transparent 60%);
}

.video-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.video-subtitle {
  margin: 0;
  color: var(--muted);
}

.video-actions {
  margin-top: 8px;
}

.feature-title {
  margin: 0 0 8px;
  font-weight: 800;
}

.price {
  display: grid;
  gap: 10px;
  align-content: start;
}

.card.price {
  background: linear-gradient(140deg, rgba(226, 91, 63, 0.12), rgba(240, 180, 77, 0.25));
  border: 1px solid rgba(226, 91, 63, 0.28);
  box-shadow: 0 26px 50px rgba(226, 91, 63, 0.18);
}

.price-full {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  margin: 0;
}

.price-main {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 800;
}

.price-sub {
  margin: 0;
  color: var(--muted);
}

.section.final {
  padding-bottom: 48px;
}

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

  .video-placeholder {
    min-height: 240px;
  }

  .video-wrap::before {
    inset: 18px 6px -10px 6px;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }

  .cta-row {
    gap: 10px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
