:root {
  color-scheme: light;
  --bg: #f4faf7;
  --bg-warm: #fffaf0;
  --surface: #ffffff;
  --surface-soft: #eef8f4;
  --surface-tint: #f8fcfa;
  --ink: #10201d;
  --ink-soft: #243c37;
  --muted: #64736f;
  --line: #dce9e4;
  --line-strong: #c7d9d3;
  --brand: #0c8a7b;
  --brand-dark: #05534d;
  --brand-deep: #073d39;
  --brand-soft: #dff6ef;
  --gold: #d9a430;
  --gold-soft: #fff1c8;
  --plum: #6f3c5f;
  --danger: #b42318;
  --shadow-sm: 0 10px 24px rgba(9, 45, 40, 0.08);
  --shadow: 0 24px 70px rgba(9, 45, 40, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(12, 138, 123, 0.08), transparent 34rem),
    linear-gradient(225deg, rgba(217, 164, 48, 0.1), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8fcfa 34%, var(--bg) 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a:not(.button):not(.brand):not(.nav-links a):not(.footer-links a):hover {
  color: var(--brand-dark);
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 233, 228, 0.82);
  background: rgba(250, 253, 251, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-weight: 850;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(12, 138, 123, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
  background: rgba(223, 246, 239, 0.75);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.25rem;
}

.hero {
  padding: 74px 0 54px;
  overflow: hidden;
}

.product-hero {
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.hero-center {
  text-align: center;
}

.hero-center .eyebrow,
.hero-center .store-buttons {
  margin-left: auto;
  margin-right: auto;
}

.hero-center h1,
.hero-center .lead,
.hero-center .store-note {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(12, 138, 123, 0.22);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(223, 246, 239, 0.72);
  font-size: 0.84rem;
  font-weight: 820;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7.2vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  font-weight: 880;
}

h3 {
  font-size: 1.12rem;
  font-weight: 820;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-row.compact {
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 16px 32px rgba(12, 138, 123, 0.26);
}

.button.secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 8px 20px rgba(9, 45, 40, 0.05);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.store-button {
  min-width: 184px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(16, 32, 29, 0.12);
  border-radius: 14px;
  color: #fff;
  background: #111816;
  box-shadow: 0 14px 34px rgba(9, 45, 40, 0.14);
  font-weight: 820;
  line-height: 1.1;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.store-button:hover {
  transform: translateY(-1px);
  background: #0a100f;
  box-shadow: 0 18px 40px rgba(9, 45, 40, 0.18);
}

.store-button small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 720;
}

.store-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-size: 1.05rem;
  font-weight: 900;
}

.store-button.light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.38);
}

.store-button.light small {
  color: var(--muted);
}

.store-note {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-app-preview {
  display: none;
}

.feature-graphic {
  margin: 42px auto 0;
  max-width: 1120px;
  overflow: hidden;
  border: 1px solid rgba(220, 233, 228, 0.96);
  border-radius: 24px;
  background: #062d2a;
  box-shadow: 0 38px 90px rgba(9, 45, 40, 0.18);
}

.feature-graphic img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 730px;
  margin: 26px auto 0;
}

.hero-points span {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(220, 233, 228, 0.95);
  border-radius: 8px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(9, 45, 40, 0.05);
  font-size: 0.94rem;
  font-weight: 760;
}

.phone-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: min(520px, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(12, 138, 123, 0.23), transparent 64%),
    radial-gradient(circle at 70% 68%, rgba(217, 164, 48, 0.18), transparent 36%);
  filter: blur(2px);
}

.splash-preview {
  position: absolute;
  right: 0;
  top: 6px;
  width: min(210px, 38vw);
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: var(--brand-deep);
  box-shadow: 0 30px 80px rgba(7, 61, 57, 0.22);
  transform: rotate(3deg);
}

.splash-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.94;
}

.phone {
  position: relative;
  width: min(360px, 88vw);
  margin: 0 auto;
  padding: 14px;
  border-radius: 40px;
  background: #17201d;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 94px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #17201d;
}

.screen {
  overflow: hidden;
  min-height: 600px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(223, 246, 239, 0.85), transparent 42%),
    #f8fbfa;
}

.app-top {
  padding: 42px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-weight: 880;
}

.flag-pill {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px #dfe8e5;
  font-size: 1.28rem;
}

.refresh-dot {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 900;
}

.counter-list {
  padding: 10px 18px 24px;
  display: grid;
  gap: 12px;
}

.counter-row {
  display: grid;
  grid-template-columns: 86px 20px 64px 20px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 13px;
  border: 1px solid #d9e7e3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(9, 45, 40, 0.04);
}

.note-art,
.coin-art {
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #10443f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent),
    linear-gradient(135deg, #c7f2e7, #5fc5ad);
  box-shadow: inset 0 0 0 1px rgba(12, 138, 123, 0.2);
  font-weight: 900;
}

.coin-art {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  color: #5f3a06;
  background: radial-gradient(circle at 35% 30%, #fff2a4, #e2ac2e 55%, #9d6d16);
}

.qty,
.row-total {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 900;
}

.qty {
  background: #fff;
  border: 1px solid #d7e4e0;
}

.row-total {
  color: #092421;
  background: #d6ebe8;
}

.math {
  text-align: center;
  color: #5d6c68;
  font-size: 1.42rem;
  font-weight: 950;
}

.total-card {
  margin: 4px 18px 22px;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 22px 48px rgba(12, 138, 123, 0.28);
}

.total-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.total-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.91rem;
}

.section {
  padding: 72px 0;
}

.section.alt {
  border-block: 1px solid rgba(220, 233, 228, 0.8);
  background: rgba(255, 255, 255, 0.58);
}

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

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 24px;
  border: 1px solid rgba(220, 233, 228, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.card h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(12, 138, 123, 0.16);
  border-radius: 8px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 1.28rem;
  font-weight: 850;
}

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

.value-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.value-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(220, 233, 228, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.value-card .icon,
.value-card .feature-icon {
  margin-bottom: 42px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(12, 138, 123, 0.16);
  border-radius: 14px;
  color: var(--brand-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), transparent),
    var(--brand-soft);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 1.35rem;
}

.value-card p {
  color: var(--muted);
}

.primary-value {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(217, 164, 48, 0.18), transparent 42%),
    linear-gradient(135deg, #073b37, #0c7c70);
}

.primary-value h3,
.primary-value p {
  color: #fff;
}

.primary-value p {
  color: rgba(255, 255, 255, 0.76);
}

.primary-value .icon,
.primary-value .feature-icon {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  max-width: none;
}

.split-head > p {
  margin: 0;
}

.screenshots-section {
  overflow: hidden;
}

.screenshot-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 240px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 0 22px;
  scrollbar-color: rgba(12, 138, 123, 0.38) transparent;
}

.screenshot-frame {
  scroll-snap-align: start;
  padding: 10px;
  border-radius: 30px;
  background: #111816;
  box-shadow: 0 24px 58px rgba(9, 45, 40, 0.16);
}

.screenshot-placeholder {
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 247, 0.9) 34%, rgba(12, 138, 123, 0.18)),
    #f8fcfa;
}

.screenshot-placeholder span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-weight: 900;
}

.screenshot-placeholder strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

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

.audience-card {
  min-height: 220px;
}

.audience-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(12, 138, 123, 0.16);
  border-radius: 14px;
  color: var(--brand-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), transparent),
    var(--brand-soft);
}

.audience-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-panel {
  padding: 34px;
  border: 1px solid rgba(220, 233, 228, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
}

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

.step-card {
  position: relative;
  min-height: 218px;
  padding: 22px;
  border: 1px solid rgba(220, 233, 228, 0.96);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.step-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-dark);
  font-weight: 900;
}

.step-card p {
  color: var(--muted);
}

.feature-story,
.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 30px;
  align-items: center;
}

.story-copy p,
.privacy-panel p {
  color: var(--muted);
  font-size: 1.06rem;
}

.record-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(220, 233, 228, 0.96);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(12, 138, 123, 0.08), transparent),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.record-panel div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.record-panel strong {
  font-size: 1.15rem;
}

.record-panel span {
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-panel {
  padding: 34px;
  border: 1px solid rgba(220, 233, 228, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(244, 250, 247, 0.74)),
    rgba(255, 255, 255, 0.66);
}

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

.privacy-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.privacy-list .icon {
  margin: 0;
}

.privacy-list p {
  margin: 0;
}

.privacy-list .button {
  justify-self: start;
}

.daily-panel {
  text-align: center;
}

.daily-panel .section-head {
  margin-left: auto;
  margin-right: auto;
}

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

.daily-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(220, 233, 228, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.daily-grid span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 1.25rem;
  font-weight: 900;
}

.daily-grid strong {
  max-width: 180px;
  line-height: 1.25;
}

.product-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(217, 164, 48, 0.2), transparent 36%),
    linear-gradient(135deg, #073b37, #0c7c70);
  box-shadow: var(--shadow);
}

.download-section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(220, 233, 228, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 247, 0.86)),
    linear-gradient(135deg, rgba(12, 138, 123, 0.14), transparent 42%);
  box-shadow: 0 28px 80px rgba(9, 45, 40, 0.12);
}

.download-panel::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -150px;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 48, 0.2), transparent 64%);
  pointer-events: none;
}

.download-copy,
.download-card {
  position: relative;
}

.download-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.download-app {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.download-app .eyebrow {
  margin-bottom: 12px;
}

.download-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.download-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 780;
}

.download-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(7, 61, 57, 0.96), rgba(12, 124, 112, 0.92)),
    var(--brand-deep);
  box-shadow: 0 24px 58px rgba(7, 61, 57, 0.2);
}

.download-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-downloads {
  justify-content: flex-start;
  margin-top: 18px;
}

.download-card .product-downloads {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.download-card .store-button {
  width: 100%;
  min-width: 0;
  min-height: 62px;
  border-color: rgba(255, 255, 255, 0.34);
}

.download-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.download-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.download-chips span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 760;
  text-align: center;
}

.product-band h2 {
  color: #fff;
}

.product-band p {
  color: rgba(255, 255, 255, 0.76);
}

.app-icon-large {
  width: 148px;
  height: 148px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

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

.stat {
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 1.42rem;
  line-height: 1.1;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.page-hero {
  padding: 72px 0 42px;
}

.page-hero .lead {
  max-width: 800px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.toc a {
  display: block;
  padding: 9px 8px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 760;
}

.toc a:hover {
  color: var(--brand-dark);
  background: var(--surface-soft);
}

.legal-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-size: clamp(1.28rem, 2vw, 1.65rem);
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-card a,
.contact-method a {
  color: var(--brand-dark);
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(12, 138, 123, 0.32);
  text-underline-offset: 3px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
}

.contact-method {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-method p:last-child {
  margin-bottom: 0;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 760;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(12, 138, 123, 0.12);
  outline: none;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.notice {
  padding: 16px 18px;
  border: 1px solid #efd58f;
  border-radius: 8px;
  color: #75531a;
  background: #fff7e0;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(12, 138, 123, 0.16), transparent 46%),
    #071f1d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-grid .brand {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 740;
}

.footer-links a:hover {
  color: #fff;
}

.small {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 74px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .product-band,
  .download-panel,
  .split-head,
  .feature-story,
  .privacy-panel,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .product-hero {
    padding-top: 48px;
  }

  .phone-stage {
    min-height: 620px;
  }

  .splash-preview {
    right: 4%;
  }

  .grid.features,
  .grid.two,
  .value-grid,
  .audience-grid,
  .steps,
  .daily-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

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

  .download-card .product-downloads {
    grid-template-columns: repeat(2, minmax(0, 210px));
  }

  .split-head {
    align-items: start;
  }

  .screenshot-carousel {
    grid-auto-columns: minmax(190px, 220px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    max-width: calc(100vw - 100px);
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.8rem);
  }

  .hero {
    padding: 42px 0 40px;
  }

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

  .store-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 158px));
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .store-button {
    min-width: 0;
    width: 100%;
    min-height: 52px;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(9, 45, 40, 0.13);
    font-size: 0.9rem;
  }

  .store-button small {
    font-size: 0.64rem;
  }

  .store-icon {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    font-size: 0.92rem;
  }

  .product-downloads {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .product-downloads .store-button {
    max-width: 210px;
  }

  .hero-points,
  .stats,
  .value-grid,
  .audience-grid,
  .steps,
  .record-panel,
  .daily-grid,
  .grid.features,
  .grid.two,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .split-head {
    gap: 16px;
  }

  .screenshot-carousel {
    grid-auto-columns: minmax(178px, 72vw);
    gap: 14px;
  }

  .value-card,
  .audience-card,
  .step-card {
    min-height: auto;
  }

  .value-card .icon,
  .value-card .feature-icon,
  .step-card span {
    margin-bottom: 28px;
  }

  .how-panel,
  .privacy-panel {
    padding: 20px;
    border-radius: 18px;
  }

  .feature-story,
  .privacy-panel {
    gap: 22px;
  }

  .privacy-list .button {
    width: 100%;
  }

  .feature-graphic {
    width: calc(100% + 8px);
    margin-top: 28px;
    margin-left: -4px;
    border-radius: 16px;
  }

  .download-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .download-panel {
    gap: 22px;
    padding: 20px;
    border-radius: 18px;
  }

  .download-app {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .download-app .app-icon-large {
    width: 86px;
    height: 86px;
  }

  .download-copy {
    gap: 20px;
  }

  .download-copy p {
    font-size: 1rem;
  }

  .download-card {
    padding: 18px;
    border-radius: 16px;
  }

  .download-card .product-downloads {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .download-card .store-button {
    max-width: none;
    min-height: 56px;
  }

  .download-chips {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 570px;
    margin-top: 8px;
  }

  .splash-preview {
    top: 0;
    right: 0;
    width: min(160px, 42vw);
    height: 330px;
  }

  .phone {
    width: min(338px, 94vw);
  }

  .screen {
    min-height: 558px;
  }

  .counter-row {
    grid-template-columns: 70px 14px 50px 14px minmax(58px, 1fr);
    gap: 6px;
    padding: 10px;
  }

  .counter-list {
    padding-inline: 13px;
  }

  .note-art {
    height: 38px;
    font-size: 0.9rem;
  }

  .qty,
  .row-total {
    min-height: 42px;
    font-size: 0.94rem;
  }

  .math {
    font-size: 1.08rem;
  }

  .total-card {
    margin-inline: 13px;
  }

  .section {
    padding: 52px 0;
  }

  .page-hero {
    padding: 48px 0 24px;
  }

  .card,
  .legal-card,
  .product-band {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .store-buttons {
    grid-template-columns: minmax(0, 220px);
  }

  .store-button {
    min-height: 54px;
    padding: 9px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
