:root {
  --bg: #f7f3e7;
  --bg-soft: #fff9ef;
  --surface: rgba(255, 252, 244, 0.86);
  --surface-strong: #fffdf8;
  --ink: #223f60;
  --ink-muted: #4a6178;
  --line: rgba(34, 63, 96, 0.12);
  --green: #8bb131;
  --green-dark: #6f9425;
  --blue: #77bde2;
  --blue-dark: #4f9bc5;
  --beige: #f4f1de;
  --brown: #ae866d;
  --orange: #eac569;
  --pink: #f4d7d3;
  --white: #ffffff;
  --shadow-soft: 0 24px 80px rgba(34, 63, 96, 0.12);
  --shadow-card: 0 18px 40px rgba(34, 63, 96, 0.1);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 40px));
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(139, 177, 49, 0.15), transparent 24rem),
    radial-gradient(circle at top right, rgba(119, 189, 226, 0.18), transparent 30rem),
    linear-gradient(180deg, #fbf7ed 0%, #f6efe2 48%, #f9f5ea 100%);
  font-family: "Nunito", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

main {
  display: block;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 237, 0.78);
  border-bottom: 1px solid rgba(34, 63, 96, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  height: 44px;
  width: auto;
}

.brand__mark {
  width: 44px;
  height: 44px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(34, 63, 96, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(34, 63, 96, 0.08);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a,
.site-nav span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-muted);
  font-weight: 800;
  font-size: 0.96rem;
  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: 48px 0 24px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(34, 63, 96, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 0 6px rgba(139, 177, 49, 0.14);
}

.hero h1,
.section-heading h2,
.story__copy h2,
.cta-banner h2,
.legal-hero h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 7vw, 5.6rem);
}

.hero__summary,
.section-heading p,
.story__copy p,
.cta-banner p,
.legal-hero p,
.legal-summary,
.legal-article p,
.legal-article li,
.footer-note,
.hero__subnote {
  color: var(--ink-muted);
}

.hero__summary {
  max-width: 32rem;
  margin-top: 22px;
  font-size: 1.14rem;
}

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

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 198px;
  min-height: 62px;
  line-height: 1;
  padding: 12px 16px;
  border: 2px solid rgba(34, 63, 96, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(34, 63, 96, 0.07);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(34, 63, 96, 0.18);
  box-shadow: 0 18px 34px rgba(34, 63, 96, 0.12);
}

.store-button:focus-visible {
  outline: 3px solid rgba(119, 189, 226, 0.42);
  outline-offset: 6px;
}

.store-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #505b65;
  flex: 0 0 auto;
}

.store-button__icon-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.store-button__icon-image--apple {
  width: 16px;
  height: 20px;
}

.store-button__icon-image--google {
  width: 29px;
  height: 22px;
}

.store-button__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.store-button__eyebrow {
  display: block;
  color: #5f6873;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: none;
}

.store-button__title {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__meta span,
.mini-pill,
.legal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(34, 63, 96, 0.08);
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--ink);
}

.hero__meta span::before,
.mini-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero__subnote {
  margin-top: 18px;
  max-width: 33rem;
  font-size: 0.94rem;
}

.hero__art {
  position: relative;
  min-height: 560px;
}

.hero__art::before,
.hero__art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.hero__art::before {
  inset: auto auto 54px -12px;
  width: 220px;
  height: 220px;
  background: rgba(139, 177, 49, 0.18);
}

.hero__art::after {
  top: 18px;
  right: 8px;
  width: 160px;
  height: 160px;
  background: rgba(119, 189, 226, 0.22);
}

.art-card {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(34, 63, 96, 0.08);
  box-shadow: var(--shadow-card);
}

.art-card--warm {
  top: 30px;
  right: 0;
}

.art-card--cool {
  bottom: 28px;
  left: 0;
}

.art-card--tiny {
  right: 32px;
  bottom: 122px;
  max-width: 180px;
}

.art-card__title,
.feature-card__title,
.micro-card__title,
.review-card__title,
.footer-links__heading,
.legal-article h2,
.legal-article h3,
.legal-toc__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.art-card__title {
  font-size: 1.08rem;
}

.art-card p {
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.hero-figure {
  position: absolute;
  inset: 72px 34px 48px 34px;
  padding: 24px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(119, 189, 226, 0.18), rgba(255, 255, 255, 0.82) 48%, rgba(244, 241, 222, 0.92) 100%);
  border: 1px solid rgba(34, 63, 96, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-figure__halo {
  position: absolute;
  inset: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(139, 177, 49, 0.12), rgba(119, 189, 226, 0));
}

.hero-figure img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.highlight-strip {
  padding: 24px 0 16px;
}

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

.highlight-card,
.feature-card,
.micro-card,
.review-card,
.legal-toc,
.legal-article,
.legal-callout,
.cta-banner,
.story-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(34, 63, 96, 0.08);
  box-shadow: var(--shadow-card);
}

.highlight-card {
  padding: 24px;
  border-radius: 26px;
}

.highlight-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  font-weight: 900;
}

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

.section {
  padding: 44px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.section-heading p {
  margin-top: 14px;
  font-size: 1.08rem;
}

.feature-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.review-card {
  padding: 24px;
  border-radius: 28px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -36px -44px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  opacity: 0.22;
}

.feature-card--green::before {
  background: var(--green);
}

.feature-card--blue::before {
  background: var(--blue);
}

.feature-card--orange::before {
  background: var(--orange);
}

.feature-card--brown::before {
  background: var(--brown);
}

.feature-card--pink::before {
  background: #e8a6af;
}

.feature-card--beige::before {
  background: #d7cfb4;
}

.feature-card__tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: rgba(34, 63, 96, 0.06);
}

.feature-card__media {
  display: grid;
  gap: 10px;
  max-width: 190px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(34, 63, 96, 0.08);
}

.feature-card__media span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(34, 63, 96, 0.12);
}

.feature-card__media span:nth-child(1) {
  width: 72%;
}

.feature-card__media span:nth-child(2) {
  width: 92%;
}

.feature-card__media span:nth-child(3) {
  width: 56%;
}

.feature-card__title {
  margin-top: 18px;
  font-size: 1.3rem;
}

.feature-card p,
.review-card blockquote,
.micro-card p {
  margin-top: 10px;
  color: var(--ink-muted);
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding: 28px;
  border-radius: 34px;
}

.story__copy h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

.story__copy p {
  max-width: 34rem;
  margin-top: 16px;
  font-size: 1.05rem;
}

.story__visual {
  position: relative;
  margin-top: 24px;
  padding: 22px 22px 0;
  min-height: 260px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(139, 177, 49, 0.2), transparent 10rem),
    linear-gradient(180deg, rgba(119, 189, 226, 0.18), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(34, 63, 96, 0.08);
  overflow: hidden;
}

.story__visual img {
  width: min(280px, 100%);
  margin: 44px auto 0;
}

.story__visual-label,
.story__visual-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 63, 96, 0.08);
  box-shadow: 0 12px 24px rgba(34, 63, 96, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--ink);
}

.story__visual-label {
  top: 16px;
  left: 16px;
}

.story__visual-badge--one {
  right: 18px;
  top: 64px;
}

.story__visual-badge--two {
  left: 26px;
  bottom: 24px;
}

.story__list {
  display: grid;
  gap: 16px;
}

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

.micro-card__kicker {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.micro-card__title {
  margin-top: 8px;
  font-size: 1.08rem;
}

.review-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.review-badge {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(139, 177, 49, 0.14);
  color: var(--green-dark);
  font-weight: 900;
}

.review-card__title {
  font-size: 1.08rem;
}

.review-card blockquote {
  padding: 0;
  border: 0;
  font-size: 1rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(119, 189, 226, 0.28), transparent 22rem),
    radial-gradient(circle at bottom left, rgba(139, 177, 49, 0.22), transparent 18rem),
    rgba(255, 255, 255, 0.82);
}

.cta-banner h2 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.cta-banner p {
  max-width: 34rem;
  margin-top: 14px;
  font-size: 1.08rem;
}

.site-footer {
  padding: 44px 0 64px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(34, 63, 96, 0.1);
}

.site-footer .brand {
  margin-bottom: 14px;
}

.footer-note {
  max-width: 34rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-links__heading {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  margin-top: 10px;
  list-style: none;
  padding: 0;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: var(--ink-muted);
  font-weight: 700;
}

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

.legal-shell {
  padding: 40px 0 72px;
}

.legal-hero {
  max-width: 52rem;
  margin-bottom: 28px;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.legal-hero p {
  margin-top: 14px;
  font-size: 1.05rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: 20px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 108px;
  padding: 22px;
  border-radius: 28px;
}

.legal-toc__title {
  font-size: 1rem;
}

.legal-toc ul {
  margin-top: 14px;
  list-style: none;
  padding: 0;
}

.legal-toc li + li {
  margin-top: 10px;
}

.legal-toc a {
  color: var(--ink-muted);
  font-weight: 800;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--ink);
}

.legal-article {
  padding: 28px;
  border-radius: 32px;
}

.legal-article section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(34, 63, 96, 0.08);
}

.legal-article h2 {
  font-size: 1.5rem;
}

.legal-article h3 {
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.legal-summary,
.legal-callout {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(139, 177, 49, 0.12), rgba(119, 189, 226, 0.08));
  border: 1px solid rgba(34, 63, 96, 0.08);
}

.legal-summary strong,
.legal-callout strong {
  color: var(--ink);
}

.legal-article p + p,
.legal-article ul + p,
.legal-article p + ul,
.legal-article ul + ul {
  margin-top: 14px;
}

.legal-article li + li {
  margin-top: 8px;
}

.legal-callout {
  margin-top: 18px;
  background: rgba(244, 241, 222, 0.95);
}

.legal-footer {
  margin-top: 22px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

@media (max-width: 1024px) {
  .hero__layout,
  .story-panel,
  .site-footer__inner,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero__art {
    min-height: 520px;
  }

  .highlight-strip__inner,
  .feature-grid,
  .review-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 24px;
  }

  .highlight-strip__inner,
  .feature-grid,
  .review-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .story-panel,
  .legal-article,
  .legal-toc {
    padding: 22px;
  }

  .cta-row {
    align-items: flex-start;
  }

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

  .store-button__title {
    font-size: 1.04rem;
  }

  .story__visual {
    min-height: 220px;
    padding: 18px 18px 0;
  }

  .story__visual img {
    width: min(220px, 100%);
    margin-top: 56px;
  }

  .story__visual-badge--one {
    right: 12px;
  }

  .story__visual-badge--two {
    left: 16px;
    bottom: 18px;
  }

  .hero__art {
    min-height: 460px;
  }

  .hero-figure {
    inset: 64px 12px 24px;
  }

  .art-card {
    max-width: 180px;
    padding: 16px;
  }

  .art-card--warm {
    right: 6px;
  }

  .art-card--cool {
    left: 6px;
  }

  .art-card--tiny {
    right: 18px;
    bottom: 94px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
