:root {
  color-scheme: light;
  --ink: #16181f;
  --muted: #5d6470;
  --paper: #fffdf8;
  --surface: #f4efe6;
  --surface-strong: #ebe1d1;
  --line: #ded2bf;
  --gold: #9f7938;
  --green: #2d6b57;
  --blue: #315f86;
  --wine: #7f3e4c;
  --shadow: 0 24px 80px rgba(34, 30, 24, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(22, 24, 31, 0.08);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

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

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero {
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(12, 14, 19, 0.82), rgba(12, 14, 19, 0.44), rgba(12, 14, 19, 0.18)),
    image-set(url("/assets/screenshot-today.png") 1x);
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 78px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #e7c987;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 800px;
  font-size: clamp(3rem, 9vw, 6.8rem);
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.section.compact {
  max-width: 840px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  color: var(--ink);
}

.section-title p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.feature strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature p,
.copy p,
.copy li {
  color: var(--muted);
  line-height: 1.78;
}

.screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.phone-shot {
  overflow: hidden;
  border: 1px solid rgba(22, 24, 31, 0.12);
  border-radius: 28px;
  background: #11141a;
  box-shadow: var(--shadow);
}

.phone-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top;
}

.band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.copy h2 {
  margin: 34px 0 10px;
  font-size: 1.7rem;
}

.copy ul {
  padding-left: 22px;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.contact-panel a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #12151b;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-inner a {
  color: white;
  margin-right: 16px;
  text-decoration: none;
}

.consent-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: min(420px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.consent-banner p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.consent-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 760px) {
  .site-nav {
    min-height: 66px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 66px);
  }

  .hero-inner {
    padding: 72px 0 56px;
  }

  .feature-grid,
  .screens,
  .split {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }
}
