:root {
  --bg: #ffffff;
  --text: #101722;
  --muted: #5d6a7c;
  --line: #dbeef2;
  --soft: #effcff;
  --soft-2: #f7fdfe;
  --teal: #00a9bf;
  --teal-dark: #00899d;
  --teal-soft: #dff9fd;
  --blue: #147bd1;
  --amber: #f6a400;
  --shadow: 0 22px 70px rgba(12, 83, 96, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand strong,
.app-head strong {
  color: var(--teal);
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.2vw, 52px);
  color: #111927;
  font-size: 17px;
}

.nav a {
  position: relative;
  padding: 30px 0 27px;
}

.nav a:first-child {
  color: var(--teal-dark);
  font-weight: 700;
}

.nav a:first-child::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: var(--teal);
  content: "";
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(300px, 380px);
  gap: clamp(38px, 6vw, 90px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 82px) 5vw clamp(42px, 5vw, 66px);
}

.hero-copy {
  max-width: 820px;
}

.limited {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 28px;
  color: #0b1220;
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 850;
  line-height: 1.08;
}

.lead {
  max-width: 620px;
  margin-bottom: 22px;
  color: #526074;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.55;
}

.trial-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: baseline;
  margin-bottom: 24px;
  color: #526074;
  font-size: 20px;
  line-height: 1.45;
}

.trial-line span:first-child {
  color: var(--teal-dark);
  font-size: 25px;
  font-weight: 850;
}

.honest {
  position: relative;
  max-width: 560px;
  min-height: 54px;
  margin-bottom: 34px;
  padding: 3px 0 0 66px;
  color: #101722;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.45;
}

.honest::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--amber);
  border-radius: 50%;
  color: var(--amber);
  content: "!";
  font-size: 26px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 38px;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button span {
  margin-right: 16px;
  font-size: 32px;
  line-height: 1;
}

.button.primary {
  min-width: 292px;
  background: linear-gradient(135deg, #08b9cc, #0098ae);
  box-shadow: 0 16px 30px rgba(0, 169, 191, 0.24);
  color: #fff;
}

.button.secondary {
  min-width: 260px;
  background: #fff;
  color: var(--teal-dark);
}

.button.compact {
  min-height: 58px;
  min-width: 230px;
  padding: 0 26px;
  font-size: 17px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 137, 157, 0.18);
}

.access-note {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.phone-wrap {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.phone {
  position: relative;
  width: min(332px, 100%);
  padding: 22px 22px 28px;
  border: 8px solid #101010;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow), inset 0 0 0 1px #27303a;
}

.phone::before {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #111;
  content: "";
}

.phone-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #05080d;
  font-size: 13px;
  font-weight: 700;
}

.phone-dots {
  color: #0b1220;
  font-size: 10px;
  letter-spacing: 2px;
}

.app-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 850;
}

.app-head img {
  width: 30px;
  height: 30px;
}

.access-card,
.mini-card {
  border: 1px solid #d2eef4;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f2fcff, #e8f9fc);
}

.access-card {
  position: relative;
  min-height: 248px;
  margin-bottom: 14px;
  padding: 28px 24px;
  text-align: center;
}

.status-dot {
  display: inline-block;
  width: 86px;
  height: 86px;
  margin: 12px auto 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 42%, #111 0 10px, transparent 11px),
    radial-gradient(circle at 62% 40%, #08b9cc 0 10px, transparent 11px),
    radial-gradient(circle at 39% 67%, #111 0 10px, transparent 11px),
    radial-gradient(circle at 61% 67%, #111 0 10px, transparent 11px),
    #dff7fb;
}

.access-card h2 {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 22px;
}

.access-card p {
  margin-bottom: 18px;
  color: #263246;
  font-size: 15px;
}

.access-card strong {
  color: var(--teal-dark);
  font-size: 16px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding: 16px 18px;
  color: #263246;
}

.mini-card span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.mini-card strong {
  font-size: 15px;
}

.mini-card.pale {
  background: var(--soft-2);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 72px);
  max-width: 1480px;
  margin: 0 auto;
  padding: 42px 5vw 60px;
  border-top: 1px solid var(--line);
}

.panel {
  min-width: 0;
}

.section-heading p {
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 18px;
  color: #0b1220;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.16;
}

.platform-list {
  display: grid;
  gap: 14px;
}

.platform-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid #cfe3e8;
  border-radius: var(--radius);
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.platform-card:hover {
  transform: translateY(-2px);
  border-color: #91dbe6;
  background: #f6fcfd;
  box-shadow: 0 16px 34px rgba(12, 83, 96, 0.1);
}

.platform-card.current {
  border-color: #93dfe8;
  background: linear-gradient(135deg, #f4fdff, #ffffff);
}

.platform-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 24px;
  font-weight: 850;
}

.platform-copy {
  display: grid;
  gap: 6px;
}

.platform-copy strong {
  color: #0b1220;
  font-size: 23px;
  font-weight: 850;
}

.platform-copy small {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.download-icon {
  justify-self: end;
  color: var(--teal-dark);
  font-size: 30px;
  font-weight: 800;
}

.reason-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.reason-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 850;
}

.reason-list strong {
  display: block;
  margin-bottom: 5px;
  color: #121927;
  font-size: 19px;
}

.reason-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.pricing-band {
  max-width: 1480px;
  margin: 0 auto;
  padding: 10px 5vw 70px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid #93dfe8;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eefcff 0%, #ffffff 62%);
  box-shadow: 0 22px 52px rgba(12, 83, 96, 0.12);
}

.price-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.price-row strong {
  color: #07111f;
  font-size: clamp(54px, 7vw, 82px);
  font-weight: 900;
  line-height: 0.95;
}

.price-row span {
  color: var(--muted);
  font-size: 20px;
  font-weight: 750;
}

.price-card p {
  max-width: 500px;
  margin: 0 0 28px;
  color: #42506a;
  font-size: 19px;
  line-height: 1.5;
}

.pricing-notes {
  display: grid;
  gap: 14px;
}

.pricing-notes div {
  display: grid;
  align-content: center;
  min-height: 98px;
  padding: 22px 24px;
  border: 1px solid #d5edf2;
  border-radius: var(--radius);
  background: #fff;
}

.pricing-notes strong {
  margin-bottom: 7px;
  color: #111827;
  font-size: 20px;
}

.pricing-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.install-band {
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 5vw 68px;
}

.store-band {
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 5vw 72px;
  border-top: 1px solid var(--line);
}

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

.store-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #d5edf2;
  border-radius: var(--radius);
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.store-card:hover {
  transform: translateY(-2px);
  border-color: #91dbe6;
  box-shadow: 0 18px 34px rgba(12, 83, 96, 0.1);
}

.store-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 850;
}

.store-card strong {
  margin-bottom: 10px;
  color: #0b1220;
  font-size: 20px;
  line-height: 1.2;
}

.store-card p,
.store-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.store-notes div {
  padding: 18px 20px;
  border: 1px solid #d5edf2;
  border-radius: var(--radius);
  background: var(--soft-2);
}

.store-notes strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  min-height: 168px;
  padding: 24px;
  border: 1px solid #d5edf2;
  border-radius: var(--radius);
  background: var(--soft-2);
}

.step span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 850;
}

.step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.faq {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  max-width: 1480px;
  margin: 0 auto 64px;
  padding: 32px 5vw;
  border-top: 1px solid var(--line);
}

.faq h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.faq p {
  max-width: 770px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 1480px;
  margin: 0 auto;
  padding: 30px 5vw 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-links a {
  color: var(--teal-dark);
  font-weight: 750;
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 5vw 70px;
}

.legal-hero {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-weight: 800;
}

.legal-hero h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 58px);
}

.legal-hero p,
.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(25px, 3vw, 32px);
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.legal-callout {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid #d5edf2;
  border-radius: var(--radius);
  background: var(--soft-2);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.muted-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 72px;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .hero-copy {
    max-width: none;
  }

  .phone-wrap {
    justify-content: flex-start;
  }

  .section-grid,
  .pricing-layout,
  .steps,
  .store-grid,
  .store-notes {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 0 22px;
  }

  .brand {
    gap: 10px;
    font-size: 28px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    gap: 32px;
    padding: 38px 22px 34px;
  }

  .limited {
    margin-bottom: 15px;
    font-size: 12px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(40px, 12vw, 56px);
  }

  .lead {
    font-size: 21px;
  }

  .trial-line {
    font-size: 18px;
  }

  .trial-line span:first-child {
    font-size: 22px;
  }

  .honest {
    min-height: 0;
    margin-bottom: 28px;
    padding-left: 42px;
    font-size: 18px;
  }

  .honest::before {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 14px;
  }

  .button {
    width: 100%;
    min-height: 70px;
    padding: 0 24px;
    font-size: 24px;
  }

  .button.secondary {
    min-height: 58px;
    border: 0;
    background: transparent;
    justify-content: flex-start;
    padding: 0;
    color: var(--teal-dark);
    text-decoration: underline;
  }

  .button.secondary span {
    display: none;
  }

  .access-note {
    font-size: 17px;
  }

  .phone {
    width: 100%;
    max-width: 370px;
    border-width: 0;
    border-radius: var(--radius);
    box-shadow: none;
    background: #ecfbfe;
  }

  .phone::before,
  .phone-top {
    display: none;
  }

  .section-grid,
  .pricing-band,
  .install-band,
  .store-band,
  .faq,
  .site-footer,
  .legal-main {
    padding-right: 22px;
    padding-left: 22px;
  }

  .platform-card {
    grid-template-columns: 46px minmax(0, 1fr) 28px;
    gap: 12px;
    min-height: 106px;
    padding: 18px;
  }

  .platform-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .platform-copy strong {
    font-size: 20px;
  }

  .download-icon {
    font-size: 27px;
  }

  .reason-list li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .reason-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .store-card {
    min-height: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
