:root {
  color-scheme: light;
  --ink: #1d1917;
  --muted: #6a625d;
  --line: #ded8d2;
  --paper: #f7f3ee;
  --white: #fffaf5;
  --green: #0f6b4f;
  --blue: #17456b;
  --orange: #e85d22;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: min(760px, 88vh);
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 84px) 92px;
  background:
    linear-gradient(112deg, rgba(247, 243, 238, 0.98) 0%, rgba(247, 243, 238, 0.92) 43%, rgba(247, 243, 238, 0.42) 72%, rgba(247, 243, 238, 0.84) 100%),
    linear-gradient(142deg, #fffaf5 0%, #dfeae3 48%, #f0d0bd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(16px, 9vw, 132px) -180px auto;
  width: min(340px, 42vw);
  aspect-ratio: 368 / 800;
  background: url("/assets/breakup-ios-preview.jpg") center / cover no-repeat;
  border: 1px solid rgba(29, 25, 23, 0.12);
  border-radius: 34px;
  box-shadow: 0 38px 90px rgba(29, 25, 23, 0.26);
  transform: rotate(3deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #3f3935;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.42;
}

.availability {
  margin-top: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.band.white {
  background: var(--white);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 20px;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

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

.tile h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.tile p,
.legal p,
.legal li {
  color: var(--muted);
}

.tile p {
  margin: 0;
}

.legal {
  max-width: 860px;
  padding: 128px clamp(20px, 6vw, 84px) 80px;
}

.legal h1 {
  font-size: clamp(40px, 6vw, 68px);
}

.legal h2 {
  margin-top: 44px;
  font-size: clamp(24px, 3vw, 34px);
}

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

.fine-print {
  color: var(--muted);
  font-size: 14px;
}

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

.site-footer nav {
  display: flex;
  gap: 16px;
}

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

  .hero {
    min-height: 760px;
    padding-top: 118px;
  }

  .hero::after {
    right: 22px;
    bottom: -150px;
    width: 230px;
  }

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