:root {
  color-scheme: light;
  --ink: #092638;
  --muted: #58707a;
  --teal: #009aa6;
  --teal-dark: #08727e;
  --foam: #e7fbfb;
  --sand: #ffe4b8;
  --coral: #ff7f50;
  --paper: #fffdf8;
  --line: rgba(9, 38, 56, 0.14);
  --shadow: 0 22px 55px rgba(9, 38, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #d8fbfb 0%, #fff8e8 58%, #fffdf8 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

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

.shell {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  box-shadow: 0 10px 22px rgba(9, 38, 56, 0.22);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-weight: 750;
  font-size: 14px;
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: 42px;
  padding: 28px 0 46px;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(0, 154, 166, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal-dark);
  font-weight: 850;
  font-size: 13px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin-top: 18px;
  font-size: clamp(48px, 10vw, 116px);
}

h2 {
  font-size: clamp(30px, 5vw, 54px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: #284c5a;
  font-size: clamp(18px, 2.5vw, 24px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.store-badge {
  display: inline-flex;
  min-width: 210px;
  min-height: 64px;
  flex-direction: column;
  justify-content: center;
  border-radius: 11px;
  padding: 10px 18px;
  background: #050505;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.store-badge span {
  font-size: 13px;
  line-height: 1;
}

.store-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 25px;
  line-height: 1;
}

.store-badge.disabled {
  cursor: default;
}

.play-note {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-weight: 800;
}

.hero-card {
  justify-self: center;
  width: min(100%, 360px);
  position: relative;
}

.hero-card img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.score-chip {
  position: absolute;
  right: -4px;
  bottom: 22px;
  width: min(78%, 250px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 35px rgba(9, 38, 56, 0.18);
  font-weight: 850;
}

section {
  padding: 58px 0;
}

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

.section-head p {
  margin: 16px 0 0;
  color: #315465;
  font-size: 19px;
}

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

.feature {
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.feature .mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--sand);
  color: #8d3f1b;
  font-weight: 950;
}

.feature h3 {
  margin-top: 16px;
}

.feature p {
  margin: 8px 0 0;
  color: var(--muted);
}

.showcase {
  border-block: 1px solid rgba(9, 38, 56, 0.1);
  background: rgba(255, 255, 255, 0.46);
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.screen {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(9, 38, 56, 0.13);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 228, 184, 0.9), transparent 34%),
    linear-gradient(145deg, #0b8d9e, #0d3550 74%);
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(9, 38, 56, 0.13);
}

.legal main {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 38px rgba(9, 38, 56, 0.09);
}

.legal h1 {
  font-size: clamp(34px, 7vw, 58px);
}

.legal h2 {
  margin-top: 34px;
  font-size: 27px;
}

.meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: white;
  font-size: 15px;
}

th,
td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--foam);
}

footer {
  padding: 34px 0 42px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

@media (max-width: 760px) {
  .shell,
  .legal main {
    width: min(100% - 22px, 1120px);
  }

  .topbar,
  .hero {
    display: block;
  }

  .nav {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 12px;
  }

  .hero-card {
    margin-top: 34px;
    width: min(100%, 270px);
  }

  .feature-grid,
  .screen-row {
    grid-template-columns: 1fr;
  }

  .legal main {
    padding: 22px;
  }
}
