/* SPIKED — Dark editorial, electric blue + magenta, modern SaaS */

:root {
  --bg: #08080F;
  --bg-2: #0E0E1A;
  --bg-3: #13131F;
  --bg-4: #1A1A28;
  --fg: #EDEDF5;
  --fg-dim: #7878A8;
  --fg-muted: #33334D;

  /* Accent — electric blue primary, magenta secondary */
  --accent: #0066FF;
  --accent-bright: #3385FF;
  --accent-dim: rgba(0, 102, 255, 0.12);
  --accent-glow: rgba(0, 102, 255, 0.20);

  /* Magenta accent */
  --magenta: #FF2D6B;
  --magenta-dim: rgba(255, 45, 107, 0.12);
  --magenta-glow: rgba(255, 45, 107, 0.25);

  /* Borders */
  --border: rgba(237, 237, 245, 0.06);
  --border-bright: rgba(237, 237, 245, 0.12);

  /* Signal colors */
  --signal-high: #FF2D6B;
  --signal-high-bg: rgba(255, 45, 107, 0.10);
  --signal-med: #0066FF;
  --signal-med-bg: rgba(0, 102, 255, 0.10);
  --signal-low: #00E5A0;
  --signal-low-bg: rgba(0, 229, 160, 0.08);

  /* Fonts */
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --section-pad: 120px;
  --max-w: 1200px;
  --gutter: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #000; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fg-muted); border-radius: 2px; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 60px;
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid var(--border-bright);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 var(--gutter) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, transparent 20%, var(--bg) 85%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.6) brightness(0.8);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.3;
}
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 102, 255, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-low);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(0, 229, 160, 0); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 780px;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, #9B6BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.cta-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 102, 255, 0.35);
}
.cta-secondary {
  font-size: 14px;
  color: var(--fg-dim);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.cta-secondary:hover { color: var(--fg); }
.cta-secondary svg { width: 14px; height: 14px; }

.hero-note {
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-note span { color: var(--signal-low); }

.hero-content {
  flex: 0 0 auto;
  max-width: 560px;
}

.hero-mockup-wrap {
  flex: 1;
  position: relative;
  max-width: 660px;
  margin: auto 0;
}

.hero-mockup-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-bright);
  box-shadow:
    0 0 0 1px rgba(0, 102, 255, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 8px 24px rgba(0, 0, 0, 0.4);
  animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ===================== SOCIAL PROOF BAR ===================== */
.socialproof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px var(--gutter);
  background: var(--bg-2);
}
.socialproof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.socialproof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}
.socialproof-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.socialproof-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 22px;
  background: linear-gradient(135deg, var(--accent) 0%, #9B6BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.4;
}
.socialproof-divider {
  width: 1px;
  height: 32px;
  background: var(--border-bright);
}
.socialproof-brands {
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===================== PROBLEM ===================== */
.problem {
  padding: var(--section-pad) var(--gutter);
}
.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-text {}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-label-magenta { color: var(--magenta); }

.problem-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 28px;
}
.problem-body {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 32px;
}
.problem-gap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--magenta-dim);
  border: 1px solid rgba(255, 45, 107, 0.15);
  border-radius: 10px;
  border-left: 3px solid var(--magenta);
}
.problem-gap-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 45, 107, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.problem-gap-text {}
.problem-gap-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.problem-gap-desc {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.week-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr 1fr 1fr;
  background: var(--bg-2);
  font-size: 12px;
}
.week-row.wk-label {
  background: var(--bg-3);
  font-weight: 700;
  color: var(--fg-dim);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.week-day {
  padding: 14px 12px;
  color: var(--fg-dim);
  font-size: 11px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.week-day.fri { background: rgba(255, 45, 107, 0.08); color: var(--magenta); font-weight: 700; }
.week-day.sat { background: rgba(255, 45, 107, 0.05); color: var(--fg-muted); }
.week-day.sun { background: rgba(255, 45, 107, 0.05); color: var(--fg-muted); }
.week-day.mon { background: rgba(255, 45, 107, 0.08); color: var(--magenta); font-weight: 700; }
.week-day.active { color: var(--signal-low); }
.week-day-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.week-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.week-metric-val {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}
.week-metric-label { font-size: 10px; color: var(--fg-muted); }
.wk-row-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: var(--bg-3);
  border-right: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-dim);
}
.wk-row-label.cpc { color: var(--accent); }
.wk-row-label.qs { color: var(--signal-low); }
.wk-row-label.is { color: var(--magenta); }

/* ===================== HOW IT WORKS ===================== */
.howitworks {
  padding: var(--section-pad) var(--gutter);
  background: var(--bg-2);
}
.howitworks-inner { max-width: var(--max-w); margin: 0 auto; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.step-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.step-card:hover {
  border-color: rgba(0, 102, 255, 0.3);
  background: var(--bg-4);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--magenta));
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 102, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.step-icon svg { width: 24px; height: 24px; color: var(--accent); }
.step-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--fg-muted);
  opacity: 0.4;
  line-height: 1;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ===================== FEATURES ===================== */
.features {
  padding: var(--section-pad) var(--gutter);
}
.features-inner { max-width: var(--max-w); margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  transition: border-color 0.25s, background 0.25s;
}
.feature-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-3);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 102, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon.magenta {
  background: var(--magenta-dim);
  border-color: rgba(255, 45, 107, 0.2);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-icon.magenta svg { color: var(--magenta); }

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: var(--section-pad) var(--gutter);
  background: var(--bg-2);
}
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  position: relative;
}
.testimonial-card::before {
  content: '\u201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-stars svg { width: 14px; height: 14px; color: #FFB800; }
.testimonial-quote {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-role {
  font-size: 12px;
  color: var(--fg-dim);
}

/* ===================== PRICING ===================== */
.pricing {
  padding: var(--section-pad) var(--gutter);
}
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 48px 0 40px;
  font-size: 14px;
  color: var(--fg-dim);
}
.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--bg-3);
  border: 1px solid var(--border-bright);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-switch.active { background: var(--accent); border-color: var(--accent); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}
.toggle-switch.active::after { transform: translateX(22px); }
.save-badge {
  background: var(--signal-low-bg);
  color: var(--signal-low);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.pricing-card-wrap {
  display: flex;
  justify-content: center;
}
.pricing-card {
  background: var(--bg-2);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 48px;
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 32px;
  transform: rotate(35deg);
}
.pricing-card-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency { font-size: 24px; color: var(--fg-dim); font-weight: 400; }
.price-amount { font-family: var(--font-serif); font-size: 64px; line-height: 1; color: var(--fg); }
.price-period { font-size: 14px; color: var(--fg-dim); }
.pricing-card-desc {
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 36px;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg);
}
.pricing-features li svg { width: 16px; height: 16px; color: var(--signal-low); flex-shrink: 0; }
.pricing-card .cta-primary {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 16px;
}

/* ===================== FAQ ===================== */
.faq {
  padding: var(--section-pad) var(--gutter);
  background: var(--bg-2);
}
.faq-inner { max-width: 720px; margin: 0 auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 56px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-3);
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: var(--border-bright); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--fg-dim);
  flex-shrink: 0;
  transition: transform 0.25s, color 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ===================== FOOTER CTA ===================== */
.footer-cta {
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}
.footer-cta-inner { max-width: 640px; margin: 0 auto; }
.footer-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--fg);
}
.footer-cta-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, #9B6BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-cta-sub {
  font-size: 16px;
  color: var(--fg-dim);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px var(--gutter);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { font-family: var(--font-serif); font-size: 18px; color: var(--fg); }
.footer-meta { font-size: 11px; color: var(--fg-dim); opacity: 0.5; }

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  :root { --gutter: 48px; --section-pad: 96px; }
}
@media (max-width: 768px) {
  :root { --gutter: 24px; --section-pad: 72px; }
  .nav { padding: 0 24px; }
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px; }
  .week-row { grid-template-columns: 60px 1fr 1fr 1fr; }
  .week-row .week-day:nth-child(5),
  .week-row .week-day:nth-child(6) { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .socialproof-inner { gap: 28px; }
  .socialproof-stats { gap: 24px; }
  .hero { flex-direction: column; align-items: flex-start; padding-top: 80px; padding-bottom: 60px; }
  .hero-content { max-width: 100%; }
  .hero-mockup-wrap { max-width: 100%; width: 100%; }
}
@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .hero-headline { font-size: 38px; }
  .pricing-card { padding: 24px; }
  .price-amount { font-size: 48px; }
}