@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #000000;
  --bg2: #0b0b0b;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.065);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.68);
  --yellow: #d4af37;
  --red: #7a1f2b;
  --green: #2f8f5b;
  --glow: rgba(212, 175, 55, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: rgba(255,255,255,0.02);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  animation: orb-drift 14s ease-in-out infinite alternate;
  z-index: 0;
}
.orb-1 { width: 560px; height: 560px; background: var(--red); top: -160px; left: -140px; }
.orb-2 { width: 460px; height: 460px; background: var(--yellow); bottom: -120px; right: -120px; animation-delay: -4s; }
.orb-3 { width: 320px; height: 320px; background: var(--green); top: 42%; left: 58%; animation-delay: -7s; }

@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(28px, -18px) scale(1.06); }
  100% { transform: translate(-18px, 22px) scale(0.96); }
}

main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 52px;
  text-align: center;
}

.badge,
.logo,
.headline,
.sub,
.hero-showcase,
.marketing,
.form-wrap,
.countdown-label,
.countdown,
.features,
.progress-section,
.social {
  opacity: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fade-up 0.8s 0.2s ease forwards;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.75); opacity: 0.55; }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  animation: fade-up 0.8s 0.35s ease forwards;
}
.logo-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.logo-icon svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  fill: #000000;
}
.logo-text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

.headline {
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  max-width: 860px;
  animation: fade-up 0.8s 0.55s ease forwards;
}
.headline .grad {
  color: var(--yellow);
}

.sub {
  font-size: clamp(16px, 2.1vw, 20px);
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 42px;
  font-weight: 400;
  animation: fade-up 0.8s 0.75s ease forwards;
}

.teaser-video {
  width: 100%;
  max-width: 1120px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: #050505;
  margin: 0 auto 22px;
  opacity: 0;
  animation: fade-up 0.8s 0.86s ease forwards;
}
.teaser-video.small {
  margin-top: 10px;
}
.teaser-video video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.teaser-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0));
}
.teaser-overlay span {
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.teaser-overlay h2 {
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.ticker-wrap {
  width: 100%;
  max-width: 1120px;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.12);
  margin: 0 auto 20px;
  opacity: 0;
  animation: fade-up 0.8s 0.95s ease forwards;
}
.ticker-track {
  white-space: nowrap;
  display: inline-block;
  padding: 11px 0;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: ticker-scroll 22s linear infinite;
}

.mood-wall {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto 22px;
  opacity: 0;
  animation: fade-up 0.8s 1s ease forwards;
}
.mood-wall img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, border-color 0.2s ease;
}
.mood-wall img:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.35);
}

.proof-strip {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 24px;
  opacity: 0;
  animation: fade-up 0.8s 0.82s ease forwards;
}
.proof-item {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
  text-align: left;
}
.proof-item strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--yellow);
  margin-bottom: 4px;
}
.proof-item span {
  font-size: 12px;
  color: var(--muted);
}

.hero-showcase {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.95fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 auto 22px;
  animation: fade-up 0.8s 0.9s ease forwards;
}
.hero-visual,
.stack-card,
.marketing-card,
.feat,
.progress-track,
.form-wrap input,
.form-wrap button,
.social-link {
  backdrop-filter: blur(14px);
}
.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a0a0a;
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
  text-align: left;
}
.hero-visual::before {
  content: none;
}
.hero-visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-chip svg,
.feat-icon svg,
.social-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-visual-copy {
  max-width: 480px;
}
.hero-kicker,
.marketing-head .eyebrow,
.stack-card-content .mini-label {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-kicker {
  color: var(--yellow);
}
.hero-visual h2 {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}
.hero-visual p {
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.74;
  font-size: 15px;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.hero-stat {
  padding: 14px 12px;
  border-radius: 16px;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stack {
  display: grid;
  gap: 16px;
}
.stack-card {
  position: relative;
  min-height: 202px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 36px rgba(0,0,0,0.24);
}
.stack-card::after {
  content: none;
}
.stack-card.one {
  background: #0e0e0e;
}
.stack-card.two {
  background: #060606;
}
.stack-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.stack-card-content .mini-label {
  color: var(--green);
}
.stack-card-content h3 {
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 8px;
}
.stack-card-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.marketing {
  width: 100%;
  max-width: 1120px;
  margin-bottom: 58px;
  animation: fade-up 0.8s 1s ease forwards;
}

.media-hype {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 18px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fade-up 0.8s 0.96s ease forwards;
}
.video-card {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 16px;
  text-align: left;
}
.media-tag {
  display: inline-flex;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 10px;
}
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 10px;
}
.video-card p {
  font-size: 13px;
  color: var(--muted);
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.image-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-zone {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 34px;
  opacity: 0;
  animation: fade-up 0.8s 1.02s ease forwards;
}
.testimonial-head {
  text-align: left;
  margin-bottom: 16px;
}
.testimonial-head span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--yellow);
}
.testimonial-head h2 {
  font-size: clamp(24px, 3.8vw, 38px);
  letter-spacing: -0.03em;
  margin-top: 6px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.quote-card {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
}
.quote-card img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.16);
}
.quote-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.quote-card strong {
  font-size: 12px;
  color: var(--text);
}

.launch-pulse {
  width: 100%;
  max-width: 1120px;
  background: #050505;
  border: 1px solid rgba(212,175,55,0.24);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  animation: fade-up 0.8s 1.08s ease forwards;
}
.launch-pulse p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.launch-pulse button {
  height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  cursor: pointer;
}
.marketing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  text-align: left;
}
.marketing-head .eyebrow {
  color: var(--yellow);
}
.marketing-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1.05;
  max-width: 11ch;
}
.marketing-head p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  text-align: right;
}
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.marketing-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 190px;
  padding: 18px;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.marketing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.32);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}
.marketing-card::before {
  content: none;
}
.marketing-card .card-no {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
.marketing-card h3 {
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.marketing-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.marketing-card .card-footer {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.marketing-card .spark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.form-wrap {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 56px;
  animation: fade-up 0.8s 1.05s ease forwards;
}
.form-wrap input {
  flex: 1;
  height: 52px;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 0 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-wrap input::placeholder { color: var(--muted); }
.form-wrap input:focus {
  border-color: rgba(212, 175, 55, 0.7);
  background: #080808;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}
.form-wrap button {
  height: 52px;
  padding: 0 28px;
  background: var(--yellow);
  border: none;
  border-radius: 12px;
  color: #000000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 0 24px rgba(212,175,55,0.12);
}
.form-wrap button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(212,175,55,0.16);
}
.form-wrap button:active { transform: scale(0.98); }

.success-msg {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 56px;
}

.countdown-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  animation: fade-up 0.8s 1.15s ease forwards;
}
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 72px;
  animation: fade-up 0.8s 1.25s ease forwards;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 70px;
}
.cd-num {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  display: block;
}
.cd-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cd-sep {
  font-size: 36px;
  font-weight: 900;
  color: rgba(245,240,232,0.18);
  align-self: flex-start;
  padding-top: 6px;
  line-height: 1;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 860px;
  width: 100%;
  margin-bottom: 60px;
  animation: fade-up 0.8s 1.35s ease forwards;
}
.feat {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: none;
}
.feat:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.32);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}
.feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
}
.feat-icon.purple { background: rgba(212, 175, 55, 0.12); }
.feat-icon.cyan { background: rgba(255, 255, 255, 0.08); }
.feat-icon.emerald { background: rgba(47, 143, 91, 0.16); }
.feat-icon.amber { background: rgba(122, 31, 43, 0.18); }
.feat h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.feat p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.progress-section {
  max-width: 480px;
  width: 100%;
  margin-bottom: 56px;
  animation: fade-up 0.8s 1.45s ease forwards;
}
.progress-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}
.progress-head span:first-child { color: var(--muted); font-weight: 600; }
.progress-head span:last-child { color: var(--yellow); font-weight: 700; }
.progress-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  border-radius: 100px;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1.6s;
  box-shadow: 0 0 10px rgba(212,175,55,0.14);
}

.social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fade-up 0.8s 1.6s ease forwards;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.social-link:hover {
  border-color: rgba(212,175,55,0.45);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}
.social-link svg { width: 16px; height: 16px; }

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.24);
}

.particle {
  position: fixed;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 0;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.75; }
  90% { opacity: 0.35; }
  100% { transform: translateY(-80px) scale(1.5); opacity: 0; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.feat:nth-child(1) { animation-delay: 0.05s; }
.feat:nth-child(2) { animation-delay: 0.1s; }
.feat:nth-child(3) { animation-delay: 0.15s; }
.feat:nth-child(4) { animation-delay: 0.2s; }

@media (max-width: 900px) {
  .mood-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-showcase {
    grid-template-columns: 1fr;
  }
  .media-hype {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .marketing-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .marketing-head p {
    text-align: left;
  }
  .marketing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  main { padding-inline: 18px; }
  .teaser-overlay {
    padding: 16px;
  }
  .mood-wall {
    grid-template-columns: 1fr;
  }
  .mood-wall img {
    height: 220px;
  }
  .proof-strip {
    grid-template-columns: 1fr;
  }
  .form-wrap {
    flex-direction: column;
  }
  .form-wrap button {
    width: 100%;
  }
  .countdown {
    gap: 10px;
    margin-bottom: 54px;
  }
  .cd-block {
    min-width: 56px;
  }
  .cd-sep {
    display: none;
  }
  .hero-visual {
    min-height: 360px;
  }
  .hero-stat-row,
  .marketing-grid {
    grid-template-columns: 1fr;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .launch-pulse {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-visual-content {
    padding: 20px;
  }
  .marketing-card {
    min-height: 176px;
  }
}
