:root {
  --bg: #f4f0ff;
  --ink: #18143b;
  --muted: #66617f;
  --panel: #ffffff;
  --panel-soft: #f8f5ff;
  --line: #e4dcff;
  --accent: #635bff;
  --hero: #221c4f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand-name {
  font-size: 28px;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 48px;
  padding: 56px;
  border-radius: 56px;
  background: var(--hero);
  color: white;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.65;
  max-width: 24rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-points div {
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  font-size: 22px;
  line-height: 1.1;
}

.hero-points span {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-shell {
  width: min(100%, 620px);
  padding: 24px;
  border-radius: 56px;
  background: #221c4f;
}

.phone-screen {
  padding: 22px;
  border-radius: 42px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

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

.phone-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #e4dcff;
  color: #4d45d6;
  font-weight: 700;
}

.shot-placeholder {
  min-height: 220px;
  border-radius: 32px;
  border: 2px dashed #cec4ff;
  background: white;
  color: #6d61dc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 24px;
  font-weight: 800;
}

.shot-large {
  min-height: 420px;
}

.shot-meta {
  margin-top: 18px;
}

.line {
  height: 14px;
  border-radius: 999px;
  background: #ddd4ff;
}

.line + .line {
  margin-top: 10px;
}

.line.long {
  width: 100%;
}

.line.medium {
  width: 68%;
}

.section,
.footer-card {
  margin-top: 36px;
  max-width: 760px;
}

h2 {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.body-copy {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.body-copy a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

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

.screen-card {
  padding: 24px;
  border-radius: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.screen-card h3 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.08;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .hero-points,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}
