:root {
  --teal: #163c43;
  --teal-2: #214e56;
  --teal-soft: #d7efe3;
  --blue: #5c9eb0;
  --blue-soft: #e8f4f6;
  --red: #c45a4c;
  --green: #21734c;
  --green-soft: #e6f3ec;
  --ink: #172528;
  --muted: #657679;
  --canvas: #f4f2ee;
  --surface: #fffcf8;
  --surface-alt: #f8f6f1;
  --border: #e0dcd3;
  --shadow: 0 22px 70px rgba(22, 60, 67, .16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .75rem 1rem;
}

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

.site-header {
  align-items: center;
  background: rgba(244, 242, 238, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(224, 220, 211, .8);
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: .85rem max(1rem, calc((100vw - var(--max)) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  font-weight: 850;
  gap: .65rem;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
}

.brand span {
  font-size: 1.35rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: .35rem;
}

.site-nav a {
  border-radius: 6px;
  color: var(--teal);
  font-size: .95rem;
  font-weight: 760;
  padding: .65rem .9rem;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(22, 60, 67, .08);
}

.site-nav .nav-cta {
  background: var(--teal);
  color: white;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 0;
  width: 44px;
}

.nav-toggle span:not(.visually-hidden) {
  background: var(--teal);
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 24px;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(25rem, 34rem) minmax(34rem, 1fr);
  margin: 0 auto;
  max-width: 1240px;
  min-height: auto;
  padding: clamp(4rem, 8vw, 6.5rem) 1rem clamp(3rem, 6vw, 5rem);
}

.hero-copy {
  align-self: center;
  min-width: 0;
  width: 100%;
}

.eyebrow {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0 0 .75rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 4.1vw, 4.25rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 1.25rem;
  max-width: 42rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  max-width: 34rem;
  width: 100%;
}

.hero-actions,
.availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  text-decoration: none;
}

.button.primary {
  background: var(--teal);
  color: white;
}

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

.hero-stats {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0 0;
  max-width: 34rem;
}

.hero-stats div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .9rem;
}

.hero-stats dt {
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-stats dd {
  color: var(--muted);
  margin: .1rem 0 0;
}

.hero-media {
  align-self: center;
  border: 1px solid rgba(224, 220, 211, .9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  justify-self: end;
  max-width: 680px;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.hero-media img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.proof-strip {
  background: var(--teal);
  color: white;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
}

.proof-strip p {
  background: rgba(255, 255, 255, .04);
  font-weight: 850;
  margin: 0;
  min-height: 72px;
  padding: 1.4rem 1rem;
  text-align: center;
}

.section,
.feature-grid,
.screens,
.privacy-band,
.availability,
.faq,
.site-footer {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(3rem, 7vw, 6rem) 1rem;
}

.intro-section {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr .85fr;
}

.intro-section p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

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

.feature-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 260px;
  padding: 1.25rem;
}

.feature-grid p {
  color: var(--muted);
}

.feature-icon {
  align-items: center;
  background: var(--teal-soft);
  border-radius: 7px;
  color: var(--teal);
  display: inline-flex;
  font-size: .85rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 1.25rem;
  min-width: 42px;
  padding: 0 .6rem;
}

.section-head {
  max-width: 720px;
}

.screen-showcase {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
}

figure {
  margin: 0;
}

.screen-main,
.screen-list figure {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.screen-main {
  box-shadow: var(--shadow);
}

.screen-main img,
.screen-list img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

figcaption {
  color: var(--muted);
  font-size: .95rem;
  padding: 1rem;
}

.screen-list {
  display: grid;
  gap: 1rem;
}

.privacy-band {
  align-items: start;
  background: var(--teal);
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: .85fr 1fr;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
}

.privacy-band .eyebrow {
  color: var(--teal-soft);
}

.privacy-copy p {
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
}

.text-link {
  color: white;
  font-weight: 850;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.availability-card {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1fr auto;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.availability-card > img {
  border-radius: 18px;
}

.availability-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.availability-card p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
}

.availability-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: .75rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.15rem;
}

summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 850;
}

details p {
  color: var(--muted);
  margin: .75rem 0 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.site-footer p {
  color: var(--muted);
  margin: .7rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.site-footer a {
  font-weight: 760;
}

@media (max-width: 1080px) {
  .site-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    left: 1rem;
    padding: .5rem;
    position: absolute;
    right: 1rem;
    top: calc(100% + .5rem);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero,
  .intro-section,
  .screen-showcase,
  .privacy-band,
  .availability-card {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 42rem;
  }

  .hero-media {
    justify-self: start;
    max-width: 760px;
  }

  .hero {
    min-height: auto;
  }

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

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

  .availability-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 1.6rem;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .hero-stats,
  .proof-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip p {
    min-height: 52px;
    padding: .95rem;
  }

  .feature-grid article {
    min-height: 0;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}
