:root {
  --bg: #f3ebdf;
  --bg-deep: #e7dccb;
  --surface: rgba(255, 249, 242, 0.84);
  --surface-strong: rgba(255, 253, 249, 0.94);
  --line: rgba(18, 25, 23, 0.11);
  --ink: #16211e;
  --muted: #58655e;
  --clay: #c86737;
  --pine: #234d45;
  --gold: #dfb867;
  --chalk: #fffaf3;
  --shadow: 0 24px 70px rgba(20, 27, 25, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 103, 55, 0.22), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(35, 77, 69, 0.18), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, #f8f3ec 52%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 18px,
      rgba(255, 255, 255, 0.18) 18px,
      rgba(255, 255, 255, 0.18) 19px
    );
  opacity: 0.28;
  pointer-events: none;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

.site-header,
.site-footer,
.hero,
.section,
.download-band {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--clay), #eb9d47);
  color: #fff;
  font-family: "Space Grotesk", "Avenir Next Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(200, 103, 55, 0.26);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Space Grotesk", "Avenir Next Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.hero,
.section,
.download-band {
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
  padding: 36px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255, 253, 249, 0.9), rgba(248, 238, 225, 0.68));
}

.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 184, 103, 0.34), rgba(223, 184, 103, 0));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(35, 77, 69, 0.09);
  color: var(--pine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.download-band h2,
.feature-card h3,
.inside-card h3,
.panel-title {
  font-family: "Space Grotesk", "Avenir Next Condensed", sans-serif;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  max-width: 700px;
}

.hero-text,
.section-lead,
.feature-card p,
.inside-card p,
.download-band p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  margin: 0;
  max-width: 640px;
  font-size: 1.05rem;
}

.cta-row,
.download-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-row {
  margin: 28px 0 16px;
}

.store-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 210px;
  min-height: 68px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(22, 33, 30, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(22, 33, 30, 0.22);
}

.store-button.play {
  background: var(--pine);
}

.store-button.is-disabled,
.store-button.is-disabled:hover {
  background: #d7d1c8;
  color: #5c5750;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.store-overline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  opacity: 0.74;
  text-transform: uppercase;
}

.store-label {
  margin-top: 4px;
  font-size: 1.14rem;
  font-weight: 800;
}

.support-note {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

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

.hero-list article {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.hero-list strong {
  font-size: 0.98rem;
}

.hero-list span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 620px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.orb-one {
  right: 8%;
  top: 3%;
  width: 110px;
  height: 110px;
  background: rgba(200, 103, 55, 0.2);
}

.orb-two {
  left: 2%;
  bottom: 5%;
  width: 170px;
  height: 170px;
  background: rgba(35, 77, 69, 0.16);
}

.phone-frame {
  width: min(360px, 100%);
  margin: auto 0;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(180deg, #1e2725 0%, #090f0e 100%);
  box-shadow: 0 34px 80px rgba(16, 22, 20, 0.28);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 590px;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(200, 103, 55, 0.16), transparent 24%),
    linear-gradient(180deg, #fff4e8 0%, #efe1d3 100%);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.screen-label,
.panel-kicker,
.stat-name,
.inside-number {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-label,
.stat-name {
  color: var(--muted);
}

.screen-title {
  margin-top: 4px;
  font-size: 1.18rem;
  font-weight: 800;
}

.score-block {
  text-align: right;
}

.score-value {
  font-family: "Space Grotesk", "Avenir Next Condensed", sans-serif;
  font-size: 3rem;
  line-height: 0.95;
}

.score-copy {
  color: var(--pine);
  font-weight: 800;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat-card,
.mini-panel,
.inside-card {
  border-radius: 22px;
  border: 1px solid rgba(18, 25, 23, 0.09);
}

.stat-card {
  padding: 12px;
  background: rgba(255, 255, 255, 0.65);
}

.stat-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.1rem;
}

.mini-panel {
  padding: 16px;
  background: rgba(255, 253, 249, 0.82);
}

.accent-panel {
  background: linear-gradient(160deg, rgba(255, 251, 246, 0.96), rgba(255, 235, 214, 0.82));
}

.panel-kicker {
  color: var(--clay);
}

.mini-panel h2 {
  margin: 10px 0 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.panel-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.panel-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(35, 77, 69, 0.1);
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 700;
}

.assistant-bubble {
  margin: 12px 0 0;
  padding: 16px;
  border-radius: 18px 18px 18px 6px;
  background: rgba(35, 77, 69, 0.1);
  color: #25423c;
  line-height: 1.6;
}

.compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.section,
.download-band {
  margin-top: 28px;
  padding: 32px;
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-header h2,
.download-band h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
}

.section-lead {
  margin: 0;
  font-size: 1rem;
}

.split {
  align-items: start;
}

.feature-grid,
.inside-grid {
  display: grid;
  gap: 16px;
}

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

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

.feature-card,
.inside-card {
  padding: 20px;
  background: var(--surface-strong);
}

.feature-card h3,
.inside-card h3 {
  margin: 14px 0 10px;
  font-size: 1.32rem;
}

.feature-kicker,
.inside-number {
  color: var(--clay);
}

.feature-card p,
.inside-card p {
  margin: 0;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(145deg, rgba(22, 33, 30, 0.96), rgba(35, 77, 69, 0.94));
  color: #fff;
}

.download-band .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.download-band p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 560px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 8px 6px 0;
}

.site-footer p {
  margin: 6px 0 0;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-meta {
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero,
  .download-band,
  .section-header,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .inside-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-meta {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px 14px 48px;
  }

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

  .hero,
  .section,
  .download-band {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-list,
  .feature-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
  }

  .phone-frame {
    width: 100%;
  }

  .store-button {
    width: 100%;
  }
}
