:root {
  color-scheme: light;
  --paper: #f6f8fb;
  --surface: #ffffff;
  --ink: #121722;
  --muted: #566173;
  --line: #d7dfeb;
  --teal: #0b8f7a;
  --teal-dark: #075f54;
  --coral: #e85d4f;
  --gold: #f0b84b;
  --blue: #2867df;
  --shadow: 0 18px 48px rgba(18, 23, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

a {
  color: var(--teal-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--coral);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(215, 223, 235, 0.86);
  background: rgba(246, 248, 251, 0.92);
  padding: 0.8rem clamp(1rem, 5vw, 4rem);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.nav-links,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

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

section[id] {
  scroll-margin-top: 5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 32rem);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 680px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 44rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.06rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 40rem;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 7px;
  padding: 0.75rem 1rem;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
}

.button:hover {
  border-color: var(--coral);
  background: var(--coral);
  color: #ffffff;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f6f8fb;
  padding: 0.45rem 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.phone-stage {
  position: relative;
  min-height: 31rem;
}

.phone-shot {
  width: min(58vw, 18rem);
  border: 8px solid #172033;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.shot-main {
  position: relative;
  z-index: 2;
}

.shot-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateY(1.5rem);
}

.section-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.section-heading {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1.7rem;
}

.section-heading h2 {
  max-width: 54rem;
}

.feature-grid,
.url-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.url-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1.1rem;
}

.feature-card:nth-child(2n),
.url-card:nth-child(2n) {
  border-top: 4px solid var(--gold);
}

.feature-card:nth-child(2n + 1),
.url-card:nth-child(2n + 1) {
  border-top: 4px solid var(--teal);
}

.feature-card p,
.url-card p {
  margin: 0;
  color: var(--muted);
}

.url-card a {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.screenshot-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(16rem, 22rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  border-block: 1px solid var(--line);
  background: #eaf1f1;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 4rem);
}

.screenshot-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.settings-shot {
  width: min(100%, 20rem);
  justify-self: center;
  border: 8px solid #172033;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 4rem);
}

.legal-heading {
  align-self: start;
  position: sticky;
  top: 6rem;
}

.legal-heading p:not(.eyebrow) {
  color: var(--muted);
}

.legal-copy {
  max-width: 56rem;
}

.legal-copy h3 {
  margin-top: 1.65rem;
}

.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.support-section {
  border-bottom: 1px solid var(--line);
}

.deletion-panel {
  display: grid;
  gap: 1.1rem;
  max-width: 54rem;
  border-left: 6px solid var(--coral);
  background: var(--surface);
  padding: 1.3rem;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 5vw, 4rem);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.simple-page {
  min-height: 100vh;
  background: var(--paper);
}

.simple-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.simple-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(1.2rem, 4vw, 2.4rem);
}

.simple-card h1 {
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1;
}

.simple-card h2 {
  margin-top: 1.8rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.simple-card p,
.simple-card li {
  color: var(--muted);
}

.simple-card ul {
  padding-left: 1.2rem;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 940px) {
  .hero,
  .screenshot-band,
  .legal-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-stage {
    min-height: 25rem;
  }

  .phone-shot {
    width: min(46vw, 17rem);
  }

  .legal-heading {
    position: static;
  }

  .feature-grid,
  .url-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .phone-stage {
    min-height: 23rem;
  }

  .phone-shot {
    width: min(70vw, 15rem);
  }

  .shot-detail {
    right: 0.4rem;
    bottom: 1rem;
  }

  .feature-grid,
  .url-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
