:root {
  --color-black: #0d0d0f;
  --color-white: #ffffff;
  --color-red: #ef2f35;
  --color-red-deep: #d11e25;
  --color-gold: #d7b35e;
  --color-text: #1d1b1b;
  --color-muted: #4e4643;
  --color-soft: #f6f3ef;
  --color-soft-gray: #ece9e6;
  --color-blush: #fff2ef;
  --shadow-soft: 0 12px 22px rgba(20, 17, 17, 0.10);
  --shadow-cta: 0 10px 18px rgba(209, 30, 37, 0.32);
  --radius-card: 20px;
  --transition: 180ms ease;
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --font-script: "Brush Script MT", "Lucida Handwriting", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(215, 179, 94, 0.05), transparent 22%),
    linear-gradient(180deg, #fdfcf9 0%, #f7f4ef 100%);
  line-height: 1.45;
}

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

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), 1120px);
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.98);
  border-bottom: 2px solid rgba(215, 179, 94, 0.8);
}

.top-accent {
  display: none;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
  padding: 0.45rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-white);
}

.brand-logo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  object-fit: cover;
}

.brand-text {
  font-size: 1.35rem;
  font-family: var(--font-script);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  transform: translateY(1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--color-gold);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--color-white);
  border-radius: 999px;
}

.hero-section,
.shop-section,
.steps-section,
.final-cta-section,
.content-section {
  padding: 3rem 0;
}

.hero-section {
  padding-top: 1.4rem;
  padding-bottom: 1.7rem;
}

.hero-grid,
.story-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 430px);
  gap: 1.6rem;
  align-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0.2rem;
}

.hero-kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 700;
  color: #182033;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--color-red);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
}

h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  max-width: 12ch;
  text-align: center;
  line-height: 1.02;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  text-align: center;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

p {
  margin-top: 0;
}

.hero-text,
.section-heading p,
.story-copy p,
.content-card p,
.page-hero p,
.article-card p,
.supporting-line,
.footer-copy {
  color: var(--color-muted);
  font-size: 1.02rem;
}

.hero-text {
  max-width: 30rem;
  margin-bottom: 1.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #282221;
}

.app-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-panel {
  display: grid;
  gap: 0.65rem;
}

.app-heading {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
  line-height: 1;
}

.app-buttons {
  display: grid;
  gap: 0.75rem;
}

.store-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.store-button {
  width: 100%;
  min-width: 0;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(180deg, #ff4047 0%, var(--color-red-deep) 100%);
  color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-cta);
}

.store-button-label {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.store-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 46px;
  padding: 0 0.55rem;
  border-radius: 10px;
  background: rgba(13, 13, 15, 0.96);
  color: var(--color-white);
  position: relative;
}

.icon-apple,
.icon-android {
  position: relative;
  display: inline-block;
}

.icon-apple {
  width: 26px;
  height: 28px;
}

.apple-body {
  position: absolute;
  left: 4px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border-radius: 45% 45% 48% 48%;
  box-shadow:
    -7px 2px 0 0 var(--color-white),
    7px 2px 0 0 var(--color-white);
}

.apple-leaf {
  position: absolute;
  right: 4px;
  top: 0;
  width: 8px;
  height: 8px;
  background: var(--color-white);
  border-radius: 0 90% 0 90%;
  transform: rotate(35deg);
}

.icon-android {
  width: 30px;
  height: 30px;
}

.android-head {
  position: absolute;
  left: 5px;
  top: 1px;
  width: 20px;
  height: 11px;
  background: var(--color-white);
  border-radius: 10px 10px 4px 4px;
}

.android-head::before,
.android-head::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 2px;
  height: 6px;
  background: var(--color-white);
}

.android-head::before {
  left: 4px;
  transform: rotate(-25deg);
}

.android-head::after {
  right: 4px;
  transform: rotate(25deg);
}

.android-body {
  position: absolute;
  left: 4px;
  top: 12px;
  width: 22px;
  height: 13px;
  background: var(--color-white);
  border-radius: 0 0 4px 4px;
}

.android-body::before,
.android-body::after,
.android-leg::before,
.android-leg::after {
  content: "";
  position: absolute;
  background: var(--color-white);
}

.android-body::before {
  left: -4px;
  top: 1px;
  width: 3px;
  height: 12px;
  border-radius: 2px;
}

.android-body::after {
  right: -4px;
  top: 1px;
  width: 3px;
  height: 12px;
  border-radius: 2px;
}

.android-leg {
  position: absolute;
  top: 24px;
  width: 4px;
  height: 8px;
  background: var(--color-white);
  border-radius: 2px;
}

.android-leg-left {
  left: 10px;
}

.android-leg-right {
  right: 10px;
}

.store-button:hover,
.store-button:focus-visible,
.button:hover,
.button:focus-visible,
.shop-card:hover,
.shop-card:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
}

.badge-free {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ff4656 0%, #df1d27 65%);
  color: var(--color-white);
  border: 5px solid var(--color-white);
  box-shadow: 0 10px 20px rgba(209, 30, 37, 0.24);
  font-weight: 900;
  line-height: 1;
}

.badge-free span:first-child {
  font-size: 1.1rem;
}

.badge-free span:last-child {
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.10));
}

.hero-glow {
  position: absolute;
  right: 5%;
  top: 8%;
  width: 52%;
  height: 60%;
  background: radial-gradient(circle, rgba(239, 47, 53, 0.12) 0%, rgba(239, 47, 53, 0) 72%);
  pointer-events: none;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: min(100%, 360px);
  height: 2px;
  margin: 0.65rem auto 0;
  background: rgba(215, 179, 94, 0.95);
}

.testimonial-strip {
  padding: 0.4rem 0 2rem;
}

.centered-copy {
  text-align: center;
}

.testimonial-strip .centered-copy,
.final-cta-section .centered-copy {
  max-width: 52rem;
  margin: 0 auto;
}

.testimonial-strip .centered-copy {
  max-width: 34rem;
  padding: 1.15rem 1rem 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(235, 233, 231, 0.95) 100%);
  border-radius: 6px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.18rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
  font-size: 1.3rem;
}

blockquote {
  margin: 0 0 0.3rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.card-grid,
.steps-grid,
.article-grid {
  display: grid;
  gap: 1.15rem;
}

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

.shop-card,
.step-card,
.article-card,
.content-card {
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(78, 70, 67, 0.10);
  box-shadow: var(--shadow-soft);
}

.shop-card {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 1.1rem 0.85rem;
  text-align: center;
  box-shadow: 0 10px 18px rgba(18, 16, 16, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.shop-card:hover,
.shop-card:focus-visible {
  box-shadow: 0 15px 26px rgba(18, 16, 16, 0.15);
  border-color: rgba(239, 47, 53, 0.22);
}

.shop-card h3 {
  font-size: 1.18rem;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-link,
.text-link {
  color: var(--color-black);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.story-section {
  padding: 3.2rem 0;
  background:
    radial-gradient(circle at left center, rgba(239, 47, 53, 0.20) 0%, rgba(239, 47, 53, 0.08) 22%, transparent 56%),
    linear-gradient(90deg, #fff0ed 0%, #fff8f7 62%, #fff8f7 100%);
}

.story-grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: end;
}

.story-copy {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: end;
}

.image-frame-soft {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-image {
  width: min(100%, 255px);
}

.feature-image-story {
  width: min(100%, 320px);
  height: auto;
  border-radius: 0;
}

.feature-image-cutout {
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.08));
}

.button {
  border: none;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(180deg, #ff4047 0%, var(--color-red-deep) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-cta);
}

.button-secondary {
  background: transparent;
  color: var(--color-black);
  border: 1px solid rgba(78, 70, 67, 0.15);
}

.button-large {
  min-width: 220px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.steps-graphic-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps-graphic {
  width: min(100%, 1020px);
  height: auto;
  border-radius: 10px;
}

.step-card,
.article-card,
.content-card {
  padding: 1.8rem;
}

.step-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.step-illustration {
  width: min(100%, 120px);
  margin: 0 auto 0.6rem;
}

.step-card h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.final-cta-section {
  padding-top: 2.6rem;
  padding-bottom: 3.6rem;
}

.final-cta-section .centered-copy {
  padding: 0;
}

.supporting-line {
  margin-top: 0.9rem;
}

.page-hero {
  padding: 4rem 0 1.8rem;
}

.inner-page .page-hero {
  background:
    radial-gradient(circle at top right, rgba(215, 179, 94, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 245, 241, 0.24) 100%);
}

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

.article-card,
.content-card {
  padding: 1.8rem;
}

.article-meta {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(215, 179, 94, 0.16);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.84);
  border-top: 3px solid rgba(215, 179, 94, 0.85);
  padding-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.3rem;
}

.footer-brand {
  margin-bottom: 0.6rem;
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 1rem 0 1.35rem;
  font-size: 0.92rem;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(215, 179, 94, 0.95);
  outline-offset: 3px;
}

@media (min-width: 981px) and (max-width: 1120px) {
  .container {
    width: min(calc(100% - 1.75rem), 1120px);
  }

  .nav-wrap {
    min-height: 80px;
  }

  .brand-logo {
    width: 74px;
    height: 74px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    gap: 1.25rem;
  }

  .hero-kicker {
    font-size: 1.4rem;
  }

  h1 {
    font-size: clamp(2.35rem, 4.7vw, 3.8rem);
  }

  .hero-text {
    max-width: 26rem;
  }

  .hero-image {
    width: min(100%, 390px);
  }

  .story-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 1.25rem;
  }

  .feature-image-story {
    width: min(100%, 280px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .card-grid,
  .steps-grid,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .story-copy {
    text-align: center;
  }

  .app-row {
    justify-content: center;
  }

  .hero-section {
    padding-top: 2rem;
  }

  .brand {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.25rem), 1120px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand-text {
    font-size: 1.08rem;
    max-width: 10.5rem;
    white-space: normal;
    line-height: 1.1;
    transform: none;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .hero-kicker {
    font-size: 1.3rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0.625rem;
    right: 0.625rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(13, 13, 15, 0.98);
    border: 1px solid rgba(215, 179, 94, 0.15);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-section,
  .shop-section,
  .steps-section,
  .final-cta-section,
  .content-section,
  .story-section {
    padding: 2.7rem 0;
  }

  .app-row {
    flex-direction: column;
    gap: 0.85rem;
  }

  .app-panel {
    width: 100%;
    max-width: 18rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

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

  .badge-free {
    width: 88px;
    height: 88px;
  }

  .hero-image {
    width: min(100%, 355px);
  }

  .footer-links,
  .social-links {
    gap: 0.7rem;
  }

  .feature-image-story,
  .steps-graphic {
    width: 100%;
  }

  .feature-image-story {
    max-width: 260px;
  }

  .testimonial-strip .centered-copy {
    padding: 1rem 0.85rem 1.2rem;
  }
}
