:root {
  color-scheme: light;
  --ink: #111817;
  --muted: #596763;
  --line: #dce5df;
  --paper: #f8fbf8;
  --surface: #ffffff;
  --green: #1f9d73;
  --green-dark: #13795a;
  --blue: #1769e0;
  --coral: #ff6b4a;
  --yellow: #e4c14d;
  --shadow: 0 22px 70px rgba(19, 33, 30, 0.18);
  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);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(17, 24, 23, 0.08);
  background: rgba(248, 251, 248, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  color: var(--muted);
  font-weight: 700;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.language-select select {
  min-width: 9rem;
  max-width: 13rem;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 0 0.7rem;
  font: inherit;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: #e5f4ee;
  z-index: -2;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  width: auto;
  height: clamp(360px, 48vh, 520px);
  max-width: none;
  min-width: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-phone--1 {
  inset-inline-end: clamp(15rem, 16vw, 22rem);
  top: clamp(8rem, 19vh, 12rem);
  height: clamp(330px, 42vh, 450px);
  z-index: 2;
  transform: rotate(-7deg);
}

.hero-phone--2 {
  inset-inline-end: clamp(8rem, 10vw, 14rem);
  top: clamp(5rem, 12vh, 7.5rem);
  height: clamp(320px, 39vh, 430px);
  z-index: 1;
  transform: rotate(3deg);
}

.hero-phone--3 {
  inset-inline-end: clamp(1rem, 4vw, 5rem);
  top: clamp(7rem, 15vh, 9.5rem);
  z-index: 3;
  transform: rotate(4deg);
}

.hero-content {
  width: min(680px, 100%);
  padding-block: 2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

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

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lead {
  width: min(56rem, 100%);
  margin: 1.2rem 0 0;
  color: #263431;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 650;
}

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

.store-link,
.ios-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.store-link {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(17, 24, 23, 0.2);
}

.store-link:hover {
  background: #23312e;
}

.store-link--small {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
}

.store-link__icon {
  color: var(--green);
}

.ios-status {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.ios-status__icon {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(680px, 100%);
  margin: 2.2rem 0 0;
}

.proof-list div {
  border-top: 3px solid var(--green);
  padding-top: 0.75rem;
}

.proof-list dt {
  font-weight: 900;
}

.proof-list dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-band,
.screenshots-band,
.details-band {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.feature-band {
  background: white;
}

.section-copy {
  width: min(820px, 100%);
}

.section-copy p:not(.eyebrow),
.details-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy--center {
  margin-inline: auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(12rem, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.feature-tile {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #fbfdfb;
}

.feature-tile__number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
}

.screenshots-band {
  background: #edf7f2;
}

.screenshot-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  width: min(1180px, 100%);
  margin: 2.4rem auto 0;
}

.screenshot-frame {
  display: grid;
  grid-template-rows: auto minmax(3.2rem, auto);
  margin: 0;
  border: 1px solid rgba(17, 24, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.9rem;
  box-shadow: 0 18px 50px rgba(17, 24, 23, 0.1);
}

.screenshot-frame img {
  width: 100%;
  height: clamp(360px, 34vw, 520px);
  object-fit: contain;
  border-radius: 6px;
  background: #e5f4ee;
}

.screenshot-frame figcaption {
  min-height: 3.2rem;
  padding-top: 0.75rem;
  color: var(--ink);
  font-weight: 800;
}

.details-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  background: white;
}

.details-copy {
  max-width: 780px;
}

.premium-note {
  margin-top: 2rem;
  border-inline-start: 5px solid var(--yellow);
  padding: 0.2rem 0 0.2rem 1rem;
}

[dir="rtl"] .premium-note {
  padding: 0.2rem 1rem 0.2rem 0;
}

.details-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  padding: 1.2rem;
}

.details-list ul {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.details-list li {
  position: relative;
  padding-inline-start: 1.5rem;
  color: var(--muted);
  font-weight: 650;
}

.details-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem clamp(1rem, 5vw, 5rem);
  background: #101817;
  color: white;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-content {
    padding-top: min(36vw, 18rem);
  }

  .hero-phone {
    width: min(31vw, 270px);
    height: auto;
    min-width: 150px;
  }

  .hero-phone--1 {
    inset-inline-end: 8%;
    top: 1.2rem;
  }

  .hero-phone--2 {
    inset-inline-end: 34%;
    top: 4rem;
  }

  .hero-phone--3 {
    inset-inline-end: -2rem;
    top: 8.5rem;
    bottom: auto;
  }

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

  .screenshot-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-frame img {
    height: clamp(340px, 54vw, 520px);
  }
}

@media (max-width: 720px) {
  .brand span {
    font-size: 1rem;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.92rem;
  }

  .language-select {
    align-items: flex-start;
    flex-direction: column;
  }

  .language-select select {
    width: min(100%, 18rem);
  }

  .store-link--small {
    width: 100%;
  }

  .hero {
    padding-inline: 1rem;
    padding-top: 0;
  }

  .hero-media {
    position: relative;
    height: 330px;
    margin: 0 -1rem 1.75rem;
    overflow: hidden;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding-top: 0;
  }

  .hero-phone {
    width: 168px;
    height: auto;
    min-width: 0;
    border-radius: 18px;
  }

  .hero-phone--1 {
    inset-inline-start: 42%;
    inset-inline-end: auto;
    top: 1rem;
  }

  .hero-phone--2 {
    inset-inline-start: 4%;
    inset-inline-end: auto;
    top: 4rem;
  }

  .hero-phone--3 {
    inset-inline-end: -2rem;
    top: 5rem;
  }

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

  .feature-band,
  .screenshots-band,
  .details-band {
    padding-inline: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .screenshot-rail {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 1.6rem;
  }

  .screenshot-frame img {
    height: clamp(300px, 92vw, 520px);
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
