:root {
  --bg: #f6efe3;
  --bg-strong: #efe4d2;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffdf8;
  --ink: #172033;
  --ink-soft: #43506b;
  --line: rgba(23, 32, 51, 0.12);
  --coral: #f46d57;
  --coral-deep: #d84f3a;
  --teal: #2d8f8b;
  --gold: #d6a64c;
  --shadow: 0 24px 70px rgba(28, 33, 45, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 109, 87, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(45, 143, 139, 0.2), transparent 28%),
    linear-gradient(180deg, #fff8ee 0%, var(--bg) 35%, #f4ead7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 32, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
}

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

button,
select {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.site-footer,
.cta-card,
.benefit-card,
.audience-card,
.step-card,
.metric-card,
.summary-panel,
.video-card,
.faq-item {
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.78);
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--coral) 0%, #ffbe68 48%, var(--teal) 100%);
  box-shadow: 0 8px 20px rgba(244, 109, 87, 0.35);
}

.site-nav,
.header-actions,
.hero-actions,
.logo-row,
.hero-metrics,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav a,
.site-footer a {
  color: var(--ink-soft);
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}

.language-picker select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: #fff8f0;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(216, 79, 58, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 36px rgba(216, 79, 58, 0.28);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  box-shadow: none;
}

.section {
  padding: 48px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3,
.brand-text {
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h1 em,
h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.hero-text,
.section-heading p:not(.eyebrow),
.step-card p,
.benefit-card p,
.audience-card p,
.faq-item p,
.cta-card p,
.metric-card span,
.video-kicker,
.summary-body li,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1.04rem;
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.15rem;
}

.hero-actions {
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 34px;
  flex-wrap: wrap;
}

.metric-card {
  flex: 1 1 180px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  animation: rise 720ms ease forwards;
}

.metric-card:nth-child(2) {
  animation-delay: 120ms;
}

.metric-card:nth-child(3) {
  animation-delay: 240ms;
}

.metric-card strong,
.summary-body h3,
.video-meta h2,
.step-card h3,
.benefit-card h3,
.audience-card h3,
.faq-item h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
}

.hero-visual::before {
  width: 220px;
  height: 220px;
  top: -20px;
  right: 16px;
  background: rgba(244, 109, 87, 0.26);
}

.hero-visual::after {
  width: 180px;
  height: 180px;
  bottom: -10px;
  left: -10px;
  background: rgba(45, 143, 139, 0.22);
}

.browser-frame {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 232, 0.88));
  box-shadow: 0 30px 80px rgba(23, 32, 51, 0.16);
  overflow: hidden;
}

.browser-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.browser-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(23, 32, 51, 0.16);
}

.video-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
}

.video-thumbnail {
  position: relative;
  min-height: 240px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 211, 138, 0.42), transparent 22%),
    radial-gradient(circle at 78% 78%, rgba(244, 109, 87, 0.38), transparent 26%),
    linear-gradient(135deg, rgba(23, 32, 51, 0.96), rgba(45, 143, 139, 0.78));
  overflow: hidden;
}

.video-thumbnail::before,
.video-thumbnail::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-thumbnail::before {
  width: 180px;
  height: 180px;
  top: -36px;
  right: -22px;
  background: rgba(255, 255, 255, 0.06);
}

.video-thumbnail::after {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: -70px;
  background: rgba(255, 255, 255, 0.04);
}

.video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.92);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.play-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.08);
}

.play-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid rgba(255, 255, 255, 0.9);
  transform: translateX(6px);
}

.video-meta {
  padding: 18px 4px 2px;
}

.video-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.video-meta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.summary-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(23, 32, 51, 0.96);
  color: #f7efe3;
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.summary-header p {
  margin: 0;
  color: rgba(247, 239, 227, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.summary-header button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #ffd38a 0%, #f46d57 100%);
  color: var(--ink);
  font-weight: 800;
}

.summary-body h3,
.summary-body ul {
  margin: 0;
}

.summary-body ul {
  padding-left: 20px;
}

.summary-body li + li {
  margin-top: 10px;
}

.logo-strip {
  padding-top: 8px;
}

.logo-strip p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  text-align: center;
}

.logo-row {
  justify-content: center;
  flex-wrap: wrap;
}

.logo-row span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.steps-grid,
.benefits-grid,
.audience-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

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

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

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

.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.benefit-card,
.audience-card,
.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(23, 32, 51, 0.08);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.accent-coral {
  background:
    linear-gradient(180deg, rgba(244, 109, 87, 0.16), rgba(255, 255, 255, 0.72));
}

.accent-teal {
  background:
    linear-gradient(180deg, rgba(45, 143, 139, 0.14), rgba(255, 255, 255, 0.72));
}

.accent-gold {
  background:
    linear-gradient(180deg, rgba(214, 166, 76, 0.16), rgba(255, 255, 255, 0.72));
}

.accent-ink {
  background:
    linear-gradient(180deg, rgba(23, 32, 51, 0.12), rgba(255, 255, 255, 0.72));
}

.cta-section {
  padding-top: 20px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.9), rgba(244, 109, 87, 0.16));
  box-shadow: 0 30px 80px rgba(23, 32, 51, 0.14);
}

.cta-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-card p {
  margin: 0;
}

.cta-actions {
  flex-direction: column;
  align-items: flex-start;
}

.cta-note {
  max-width: 240px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding: 20px 4px 0;
}

.site-footer p {
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 8px;
}

.footer-meta {
  color: rgba(24, 29, 39, 0.78);
  font-size: 0.94rem;
}

.footer-legal {
  max-width: 720px;
  color: rgba(24, 29, 39, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

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

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .hero,
  .cta-card,
  .steps-grid,
  .benefits-grid,
  .audience-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 14px;
  }

  .site-header {
    position: static;
    padding: 16px;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .hero-metrics,
  .cta-actions {
    width: 100%;
  }

  .site-nav,
  .header-actions {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .browser-frame {
    padding: 16px;
    border-radius: 28px;
  }

  .video-thumbnail {
    min-height: 200px;
  }

  .summary-header {
    flex-direction: column;
    align-items: flex-start;
  }

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