:root {
  --bg: #fbfaf4;
  --bg-mint: #eef8ee;
  --bg-cream: #fff4e5;
  --text: #1d1220;
  --muted: #6f5f72;
  --card: #ffffff;
  --line: rgba(29, 18, 32, 0.12);
  --hot: #f70d68;
  --purple: #8a1fff;
  --shadow: 0 24px 60px rgba(61, 15, 58, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 13, 104, 0.14), transparent 28rem),
    linear-gradient(135deg, var(--bg-mint), var(--bg) 46%, var(--bg-cream));
  color: var(--text);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 244, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover { color: var(--text); }

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  min-height: calc(100vh - 78px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  color: var(--hot);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 8.2vw, 7.25rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
  text-wrap: balance;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  text-wrap: balance;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--muted);
  max-width: 620px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--purple));
  box-shadow: 0 12px 30px rgba(247, 13, 104, 0.28);
}

.secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.phone-card {
  display: grid;
  justify-items: center;
}

.phone {
  width: min(350px, 85vw);
  aspect-ratio: 9 / 18.5;
  background: #1d1220;
  border-radius: 48px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.screen {
  height: 100%;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px;
  color: white;
  background: linear-gradient(160deg, #f70d68, #8a1fff);
}

.timer-label {
  font-weight: 900;
  letter-spacing: 0.14em;
}

.timer-time {
  font-size: clamp(4rem, 12vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  margin: 28px 0 12px;
}

.timer-subtitle { opacity: 0.82; }

.controls {
  display: flex;
  gap: 10px;
  margin-top: 42px;
}

.controls span {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

.caption {
  color: var(--muted);
  margin-top: 14px;
  font-size: 0.9rem;
}

.narrow { max-width: 980px; }
.narrow > p, .split p, .legal p { color: var(--muted); font-size: 1.05rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.cards article, .callout, .legal {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cards article { padding: 24px; }
.cards p { color: var(--muted); margin-bottom: 0; }

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 700;
}

.callout {
  text-align: center;
  padding-top: clamp(44px, 7vw, 72px);
  padding-bottom: clamp(44px, 7vw, 72px);
}

.legal {
  padding-top: clamp(36px, 6vw, 56px);
  padding-bottom: clamp(36px, 6vw, 56px);
  margin-top: 26px;
}

.legal p { max-width: 820px; }
.legal a { color: var(--hot); font-weight: 800; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p { margin: 0; }

@media (max-width: 900px) {
  .hero, .split { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: auto; }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  h1 {
    font-size: clamp(2.85rem, 12vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.035em;
  }
}
