:root {
  --crimson-300: #ff7a96;
  --crimson-400: #ff3d6b;
  --crimson-500: #ff0048;
  --crimson-600: #cc0039;
  --crimson-700: #99002b;
  --electric-500: #ff3bff;
  --coral-500: #ff4d2d;
  --emerald-500: #00e57a;
  --emerald-600: #00b761;
  --amber-500: #ffb900;
  --violet-500: #6b3fff;
  --violet-600: #5532cc;
  --sky-500: #00d4ff;

  --bg-base: #0a0a0a;
  --bg-surface: #111118;
  --bg-elevated: #1a1a26;
  --fg-primary: #f5f2ec;
  --fg-secondary: #a8a5a0;
  --fg-muted: #6b6b7b;
  --border-subtle: rgba(245, 242, 236, 0.07);
  --border-default: rgba(245, 242, 236, 0.14);
  --brand: #ff0048;

  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Space Mono", monospace;

  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 20px;
  --s6: 24px;
  --s7: 32px;
  --s8: 48px;
  --s9: 64px;
  --s10: 96px;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  --shadow-brand: 0 0 60px rgba(255, 0, 72, 0.25);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s3);
  padding: 0 var(--s4);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
}

.topbar-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--brand);
  text-decoration: none;
  justify-self: start;
}

.topbar-tag {
  display: none;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-weight: 700;
  background: rgba(255, 0, 72, 0.1);
  color: var(--crimson-400);
  border: 1px solid rgba(255, 0, 72, 0.2);
}

.topbar-nav {
  display: none;
  align-items: center;
  justify-self: center;
  gap: var(--s5);
}

.topbar-nav a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 500;
}

.topbar-nav a:hover {
  color: var(--fg-primary);
}

.topbar-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.topbar-cta:hover {
  background: var(--crimson-700);
  box-shadow: 0 0 24px rgba(255, 0, 72, 0.35);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
  justify-self: end;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(56px + var(--s8)) var(--s4) var(--s8);
  position: relative;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 700px);
  height: min(52vw, 400px);
  background: radial-gradient(ellipse, rgba(255, 0, 72, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--s5);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  flex-wrap: wrap;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--border-default);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 24vw, 200px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -1px;
  z-index: 1;
  position: relative;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--fg-primary) 0%, var(--crimson-300) 60%, var(--crimson-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-needle {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  margin: var(--s5) auto;
  z-index: 1;
  position: relative;
}

.hero-sub {
  font-size: clamp(15px, 4vw, 22px);
  color: var(--fg-secondary);
  font-weight: 300;
  max-width: 560px;
  width: 100%;
  line-height: 1.55;
  z-index: 1;
  position: relative;
}

.hero-sub strong {
  color: var(--fg-primary);
  font-weight: 600;
}

.hero-coming-soon {
  margin-top: var(--s7);
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  width: 100%;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 0, 72, 0.35);
  background: rgba(255, 0, 72, 0.06);
  color: var(--crimson-400);
}

.badge-soon .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s ease-in-out infinite;
}

.soon-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 1px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 440px;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form:focus-within {
  border-color: rgba(255, 0, 72, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 0, 72, 0.1), var(--shadow-lg);
}

.hero-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  min-width: 0;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-primary);
}

.hero-form input::placeholder {
  color: var(--fg-muted);
}

.hero-form button {
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
}

.hero-form button:hover {
  background: var(--crimson-700);
}

.hero-form button:disabled {
  cursor: wait;
  opacity: 0.9;
}

.hero-disclaimer {
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.scroll-indicator {
  display: none;
  position: absolute;
  bottom: var(--s7);
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator svg {
  opacity: 0.4;
}

.marquee-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: var(--s3) 0;
  background: var(--bg-surface);
}

.marquee-track {
  display: flex;
  gap: var(--s8);
  animation: marquee 24s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: var(--s4);
  white-space: nowrap;
}

.marquee-item .sep {
  color: var(--brand);
  font-size: 12px;
}

.section {
  padding: var(--s8) var(--s4);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-full {
  padding: var(--s8) var(--s4);
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s5);
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.section-label::after {
  content: "";
  flex: 0 0 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 1px;
  margin-bottom: var(--s6);
}

.section-title em {
  font-style: normal;
  color: var(--brand);
}

.section-intro {
  font-size: 16px;
  color: var(--fg-secondary);
  max-width: 560px;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  margin-top: var(--s7);
}

.about-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--s5);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.about-card:hover {
  border-color: rgba(255, 0, 72, 0.2);
  transform: translateY(-3px);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 72, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.about-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  font-size: 22px;
  border: 1px solid var(--border-default);
  background: var(--bg-elevated);
}

.card-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 0, 72, 0.06);
  position: absolute;
  right: var(--s4);
  top: var(--s4);
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
}

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: var(--s3);
  line-height: 1.1;
}

.card-body {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.75;
}

.card-body strong {
  color: var(--fg-primary);
  font-weight: 600;
}

.sides-wrap {
  margin-top: var(--s7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  align-items: start;
}

.sides-divider {
  background: linear-gradient(to bottom, transparent, var(--border-default), transparent);
  height: 100%;
}

.side-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--s5);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.side-label.artist {
  color: var(--brand);
}

.side-label.client {
  color: var(--emerald-500);
}

.side-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: var(--s5);
  line-height: 1;
}

.side-heading em {
  font-style: normal;
  color: var(--brand);
}

.side-heading.client-head em {
  color: var(--emerald-500);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.feature-item {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.65;
}

.feature-item .icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}

.feature-item strong {
  color: var(--fg-primary);
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.how-wrap {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  margin-top: var(--s7);
  position: relative;
}

.steps-grid::before {
  display: none;
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-default) 20%, var(--border-default) 80%, transparent);
}

.step {
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: var(--s5);
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s;
}

.step:hover .step-num {
  background: rgba(255, 0, 72, 0.1);
  border-color: rgba(255, 0, 72, 0.35);
}

.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: var(--s2);
}

.step-desc {
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.65;
}

.audience-section {
  padding: var(--s8) var(--s4);
  max-width: 1200px;
  margin: 0 auto;
}

.audience-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  align-items: center;
  padding: var(--s7) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.audience-row:last-child {
  border-bottom: none;
}

.audience-row.reverse .audience-visual {
  order: 0;
}

.audience-visual {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--s5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.mock-phone {
  width: min(100%, 220px);
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: 20px;
  padding: var(--s4);
  box-shadow: var(--shadow-lg);
}

.mock-bar {
  height: 6px;
  border-radius: 3px;
  margin-bottom: var(--s3);
}

.mock-bar.brand {
  background: var(--brand);
  width: 60%;
}

.mock-bar.muted {
  background: var(--border-default);
}

.mock-bar.short {
  width: 40%;
}

.mock-bar.card {
  height: 52px;
  border-radius: var(--r-md);
}

.mock-bar.card-large {
  height: 60px;
  border-radius: var(--r-md);
}

.mock-bar.action {
  height: 32px;
  width: 100%;
  border-radius: var(--r-full);
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--electric-500));
  margin-bottom: var(--s3);
}

.mock-header {
  display: flex;
  gap: 6px;
  margin-bottom: var(--s3);
}

.mock-header-bar {
  height: 28px;
  border-radius: var(--r-full);
  flex: 1;
}

.mock-header-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  flex-shrink: 0;
}

.mock-row {
  display: flex;
  gap: 4px;
}

.mock-row .mock-bar {
  flex: 1;
}

.mock-chip {
  display: inline-flex;
  font-size: 8px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: var(--r-full);
  margin: 2px;
  border: 1px solid;
}

.mock-chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.mock-chip-row .mock-chip {
  margin: 0;
}

.mock-chip.red {
  border-color: rgba(255, 0, 72, 0.3);
  color: var(--crimson-400);
  background: rgba(255, 0, 72, 0.06);
}

.mock-chip.green {
  border-color: rgba(0, 229, 122, 0.3);
  color: var(--emerald-500);
  background: rgba(0, 229, 122, 0.06);
}

.mock-chip.sky {
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--sky-500);
  background: rgba(0, 212, 255, 0.06);
}

.audience-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}

.audience-tag.artist {
  color: var(--brand);
}

.audience-tag.client {
  color: var(--emerald-500);
}

.audience-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.5px;
  margin-bottom: var(--s5);
}

.audience-title-primary {
  color: var(--fg-primary);
}

.accent-green {
  color: var(--emerald-500);
}

.audience-body {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.75;
  margin-bottom: var(--s6);
}

.audience-body strong {
  color: var(--fg-primary);
  font-weight: 600;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

.pill {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  border: 1px solid;
}

.pill.brand {
  border-color: rgba(255, 0, 72, 0.25);
  color: var(--crimson-400);
  background: rgba(255, 0, 72, 0.06);
}

.pill.green {
  border-color: rgba(0, 229, 122, 0.25);
  color: var(--emerald-500);
  background: rgba(0, 229, 122, 0.06);
}

.contact-section {
  padding: var(--s8) var(--s4);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 0, 72, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
}

.contact-eyebrow::before,
.contact-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 72, 0.4));
}

.contact-eyebrow::after {
  background: linear-gradient(90deg, rgba(255, 0, 72, 0.4), transparent);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 76px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 1px;
  margin-bottom: var(--s6);
}

.contact-title em {
  font-style: normal;
  color: var(--brand);
}

.contact-body {
  font-size: 16px;
  color: var(--fg-secondary);
  line-height: 1.75;
  margin-bottom: var(--s8);
}

.contact-body strong {
  color: var(--fg-primary);
  font-weight: 600;
}

.cta-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  width: min(100%, 100%);
  max-width: 100%;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--fg-primary);
  text-decoration: none;
  padding: var(--s4) var(--s5);
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-default);
  background: var(--bg-surface);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  word-break: break-word;
}

.cta-email::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 0, 72, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.cta-email:hover {
  border-color: rgba(255, 0, 72, 0.4);
  color: var(--brand);
  box-shadow: 0 0 32px rgba(255, 0, 72, 0.15);
  transform: translateY(-2px);
}

.cta-email:hover::before {
  opacity: 1;
}

.cta-email svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.cta-email:hover svg {
  transform: translateX(3px);
}

.contact-sub {
  margin-top: var(--s6);
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--s6) var(--s7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--fg-muted);
}

.spacer-xs {
  height: 4px;
}

.spacer-sm {
  height: var(--s2);
}

.spacer-md {
  height: var(--s3);
}

.spacer-bottom {
  margin-bottom: var(--s3);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.hero-eyebrow {
  animation: fadeUp 0.6s ease both 0.1s;
}

.hero-title {
  animation: fadeUp 0.8s ease both 0.25s;
}

.hero-needle {
  animation: fadeUp 0.5s ease both 0.45s;
}

.hero-sub {
  animation: fadeUp 0.6s ease both 0.5s;
}

.hero-coming-soon {
  animation: fadeUp 0.6s ease both 0.65s;
}

.hero-form.submitted input {
  display: none;
}

.hero-form.submitted button {
  border-radius: var(--r-xl);
  padding: 14px 32px;
  background: var(--emerald-600);
  cursor: default;
  pointer-events: none;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 641px) {
  .topbar {
    padding: 0 var(--s5);
  }

  .topbar-tag {
    display: inline-flex;
  }

  .hero {
    padding: calc(56px + var(--s9)) var(--s5) var(--s9);
  }

  .hero-form {
    flex-direction: row;
    border-radius: var(--r-full);
  }

  .hero-form button {
    width: auto;
    padding: 14px 24px;
  }

  .hero-form.submitted button {
    border-radius: var(--r-full);
  }

  .scroll-indicator {
    display: flex;
  }

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

  .step {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: var(--s6);
  }

}

@media (min-width: 861px) {
  .topbar {
    padding: 0 var(--s7);
  }

  .topbar-nav {
    display: flex;
  }

  .topbar-cta {
    font-size: 12px;
    padding: 8px 18px;
  }

  .section,
  .section-full,
  .audience-section,
  .contact-section {
    padding-left: var(--s5);
    padding-right: var(--s5);
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s7);
    margin-top: var(--s8);
  }

  .about-card {
    padding: var(--s7);
  }

  .card-number {
    font-size: 80px;
    right: var(--s5);
  }

  .sides-wrap {
    grid-template-columns: 1fr 1px 1fr;
    gap: var(--s8);
    margin-top: var(--s8);
  }

  .sides-divider {
    display: block;
  }

  .audience-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
    padding: var(--s8) 0;
  }

  .audience-row.reverse .audience-visual {
    order: -1;
  }

  .audience-visual {
    padding: var(--s8);
    min-height: 260px;
  }

  .mock-phone {
    width: 180px;
  }

}

@media (min-width: 1025px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid::before {
    display: block;
  }
}

@media (max-width: 420px) {
  .topbar-logo {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .topbar-cta {
    padding: 8px 12px;
    font-size: 10px;
  }

  .hero-title {
    font-size: clamp(56px, 22vw, 72px);
  }

  .section-title {
    font-size: 32px;
  }

  .audience-title {
    font-size: 28px;
  }

  .contact-title {
    font-size: 32px;
  }
}
