:root {
  color-scheme: light;
  --ink: #111114;
  --text: #252333;
  --muted: #666174;
  --subtle: #817b8c;
  --primary: #4b2cf5;
  --primary-pressed: #3517d4;
  --primary-soft: #ece8ff;
  --lavender: #b9aef5;
  --amber: #ffb800;
  --canvas: #f7f6ff;
  --surface: #ffffff;
  --surface-muted: #fbfaff;
  --border: #ded9f0;
  --border-strong: #cac3df;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(236, 232, 255, 0.78), rgba(255, 255, 255, 0.94) 46%, rgba(255, 184, 0, 0.2)),
    var(--canvas);
  color: var(--text);
}

img {
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 76px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: 78vh;
  padding: clamp(28px, 5vw, 60px) clamp(20px, 5vw, 48px) 36px;
}

.brand {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 12px;
  margin-bottom: clamp(54px, 8vh, 88px);
  text-decoration: none;
}

.brand-mark {
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.wordmark {
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.wordmark strong {
  color: var(--primary);
}

.eyebrow {
  background: var(--amber);
  color: var(--ink);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
  padding: 8px 12px;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 880px;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 720px;
}

.status-strip {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-strip span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 12px;
}

.preview-panel {
  justify-self: center;
  width: min(100%, 380px);
}

.phone-frame {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(37, 35, 51, 0.18);
  padding: 20px;
}

.phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.phone-title {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.count-pill,
.rank {
  align-items: center;
  background: var(--amber);
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 34px;
  min-width: 44px;
  padding: 7px 10px;
}

.watch-card {
  align-items: flex-start;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
  margin-top: 12px;
  padding: 14px;
}

.watch-card-top {
  border-left: 4px solid var(--amber);
}

.rank-muted {
  background: var(--primary-soft);
  color: var(--primary-pressed);
}

.watch-card h2 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 5px;
}

.watch-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.intent {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intent div {
  background: rgba(255, 255, 255, 0.04);
  min-height: 190px;
  padding: clamp(28px, 5vw, 54px);
}

.intent h2 {
  font-size: clamp(1.28rem, 2.4vw, 2rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.intent p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 560px;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand {
    margin-bottom: 52px;
  }

  .preview-panel {
    justify-self: stretch;
    margin: 0 auto;
  }

  .intent {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 22px 16px 32px;
  }

  .brand-mark {
    height: 46px;
    width: 46px;
  }

  .wordmark {
    font-size: 1.72rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .status-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .status-strip span {
    width: 100%;
  }
}
