:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f6368;
  --paper: #fbfaf7;
  --line: #ded9ce;
  --panel: #ffffff;
  --accent: #0f7b63;
  --accent-strong: #074d40;
  --warm: #f1bd5a;
  --cool: #d9edf5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header,
.site-footer {
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--warm);
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
}

.phone {
  border: 1px solid var(--ink);
  border-radius: 28px;
  padding: 18px;
  background: #222222;
  box-shadow: 18px 18px 0 var(--cool);
}

.screen {
  min-height: 520px;
  border-radius: 18px;
  background: #f8f6ef;
  overflow: hidden;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  color: #ffffff;
  background: var(--accent);
  font-weight: 800;
}

.creator-card {
  margin: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.creator-card strong {
  display: block;
  font-size: 1.2rem;
}

.creator-card span {
  color: var(--muted);
}

.tip-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.band {
  padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

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

.tile {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.tile h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.tile p {
  margin: 0;
  color: var(--muted);
}

.legal {
  max-width: 860px;
  padding: clamp(40px, 7vw, 76px) clamp(20px, 5vw, 72px);
}

.legal h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .phone {
    max-width: 420px;
  }

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