:root {
  --cream: #fffaf3;
  --cream-2: #fff4e6;
  --paper: #ffffff;
  --ink: #07111b;
  --muted: #59616b;
  --orange: #ff5607;
  --orange-2: #ff7b15;
  --orange-soft: #fff0df;
  --gold: #ffb12b;
  --purple: #8b5cf6;
  --green: #36b56d;
  --line: rgba(255, 105, 20, .20);
  --line-dark: rgba(7, 17, 27, .10);
  --shadow: 0 22px 70px rgba(113, 62, 18, .13);
  --shadow-small: 0 12px 34px rgba(113, 62, 18, .10);
  --radius-xl: 38px;
  --radius-lg: 27px;
  --radius-md: 19px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -2%, rgba(255, 173, 62, .15), transparent 30rem),
    radial-gradient(circle at 96% 8%, rgba(255, 86, 7, .09), transparent 28rem),
    var(--cream);
  font-family: "Avenir Next", "Arial Rounded MT Bold", Inter, ui-sans-serif,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 243, .88);
  border-bottom: 1px solid rgba(255, 105, 20, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.035em;
}

.brand-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), #ff3610);
  box-shadow: 0 10px 24px rgba(255, 86, 7, .28);
}

.brand-icon svg { width: 37px; height: 37px; }

.brand-copy {
  font-size: 19px;
  white-space: nowrap;
}

.brand-copy span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 5px 18px rgba(70, 44, 20, .07);
}

.hero {
  position: relative;
  padding: 76px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 62px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(3px);
}

.hero::before {
  width: 260px;
  height: 260px;
  right: -60px;
  top: 110px;
  background: rgba(255, 178, 43, .12);
}

.hero::after {
  width: 140px;
  height: 140px;
  left: -80px;
  bottom: 40px;
  background: rgba(139, 92, 246, .08);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 86, 7, .20);
  border-radius: 999px;
  color: #ca3f00;
  background: var(--orange-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 86, 7, .12);
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.06;
  letter-spacing: -.048em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(54px, 7.1vw, 91px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 58px);
}

h3 {
  margin-bottom: 9px;
  font-size: 22px;
}

.orange { color: var(--orange); }

.lead {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 17px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff3210);
  box-shadow: 0 14px 30px rgba(255, 86, 7, .25);
}

.button-primary:hover {
  box-shadow: 0 17px 36px rgba(255, 86, 7, .32);
}

.button-secondary {
  border-color: rgba(7,17,27,.09);
  background: rgba(255,255,255,.86);
  box-shadow: 0 9px 26px rgba(69,45,22,.07);
}

.store-note {
  margin-top: 15px;
  color: #8a654a;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 685px;
  display: grid;
  place-items: center;
}

.poster-shell {
  position: relative;
  width: min(100%, 435px);
  padding: 9px;
  border-radius: 34px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 38px 90px rgba(108, 61, 21, .22);
  transform: rotate(2deg);
}

.poster-shell::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255,86,7,.18), rgba(255,177,43,.07));
  transform: rotate(-5deg);
}

.poster-shell img {
  width: 100%;
  border-radius: 27px;
}

.sparkle {
  position: absolute;
  color: var(--gold);
  font-size: 34px;
  filter: drop-shadow(0 8px 8px rgba(255,177,43,.25));
}

.sparkle.one { top: 60px; right: -5px; }
.sparkle.two { bottom: 80px; left: 0; font-size: 24px; color: var(--purple); }
.sparkle.three { top: 160px; left: 5px; font-size: 20px; }

.mini-score {
  position: absolute;
  left: -12px;
  top: 110px;
  width: 135px;
  padding: 17px;
  border: 1px solid rgba(255,86,7,.18);
  border-radius: 23px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-small);
  transform: rotate(-7deg);
}

.score-ring {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 50%, #ffe4c2 50% 100%);
  position: relative;
  font-weight: 900;
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fff;
}

.score-ring span { position: relative; z-index: 1; }
.mini-score small { color: var(--muted); font-weight: 800; }

.trust-strip {
  padding: 0 0 30px;
}

.trust-panel {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  border: 1px solid rgba(255,86,7,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 26px rgba(72, 44, 19, .05);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #444b53;
  font-size: 14px;
  font-weight: 850;
}

.trust-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--orange-soft);
}

.section { padding: 88px 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.feature-card {
  min-height: 270px;
  padding: 29px;
  border: 1px solid rgba(255, 86, 7, .14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow-small);
}

.feature-card:nth-child(2) { transform: translateY(18px); }

.feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 23px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 27px;
  background: var(--orange-soft);
}

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

.feedback-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 10%, rgba(255,177,43,.15), transparent 28rem),
    linear-gradient(180deg, rgba(255,245,230,.45), rgba(255,250,243,0));
}

.feedback-grid {
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 76px;
}

.phone-poster {
  position: relative;
  justify-self: center;
  width: min(100%, 465px);
  padding: 9px;
  border-radius: 35px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(99, 54, 17, .19);
  transform: rotate(-2.4deg);
}

.phone-poster img { border-radius: 28px; }

.feedback-list {
  display: grid;
  gap: 14px;
  margin-top: 29px;
}

.feedback-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 86, 7, .12);
  border-radius: 20px;
  background: rgba(255,255,255,.77);
}

.feedback-item-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--orange-soft);
  font-size: 23px;
}

.feedback-item p {
  margin: 3px 0 0;
  color: var(--muted);
}

.how-panel {
  padding: clamp(35px, 6vw, 72px);
  border: 1px solid rgba(255, 86, 7, .13);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 177, 43, .18), transparent 24rem),
    #fff;
  box-shadow: var(--shadow);
}

.steps {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  position: relative;
  padding: 25px;
  border-radius: 23px;
  background: var(--cream);
  border: 1px solid rgba(255,86,7,.10);
}

.step-number {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

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

.cta {
  position: relative;
  overflow: hidden;
  margin: 75px auto 95px;
  padding: clamp(40px, 7vw, 78px);
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 196, 86, .38), transparent 22rem),
    linear-gradient(135deg, #ff5708, #ff3210 62%, #e9280c);
  box-shadow: 0 30px 80px rgba(214, 50, 10, .24);
}

.cta::after {
  content: "✦";
  position: absolute;
  right: 7%;
  bottom: -15px;
  color: rgba(255,255,255,.16);
  font-size: 180px;
  line-height: 1;
}

.cta p {
  max-width: 650px;
  margin: 0 0 25px;
  color: rgba(255,255,255,.84);
  font-size: 19px;
}

.cta .button-secondary {
  position: relative;
  z-index: 1;
  color: var(--ink);
  border: 0;
  background: #fff;
}

.legal-hero {
  padding: 70px 0 35px;
}

.legal-hero h1 {
  margin: 16px 0 17px;
  font-size: clamp(45px, 6vw, 72px);
}

.meta { color: #8e6b51; font-size: 14px; }

.legal-layout {
  padding: 25px 0 90px;
  display: grid;
  grid-template-columns: 245px minmax(0, 800px);
  gap: 48px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 105px;
  padding: 19px;
  border: 1px solid rgba(255,86,7,.13);
  border-radius: 21px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-small);
}

.toc strong { display: block; margin-bottom: 8px; }

.toc a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.toc a:hover { color: var(--orange); }

.legal-content {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(255,86,7,.12);
  border-radius: 29px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-small);
}

.legal-content section {
  padding: 0 0 31px;
  scroll-margin-top: 110px;
}

.legal-content section:last-child { padding-bottom: 0; }

.legal-content h2 {
  margin-bottom: 13px;
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 19px;
}

.legal-content p,
.legal-content li {
  color: #474f58;
}

.legal-content ul,
.legal-content ol { padding-left: 22px; }

.legal-content a {
  color: #cf4404;
  font-weight: 800;
}

.notice {
  margin-top: 19px;
  padding: 18px 20px;
  border: 1px solid rgba(255,177,43,.35);
  border-radius: 17px;
  background: #fff5df;
  color: #6d4c22;
}

.support-grid {
  padding: 25px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 25px;
  align-items: start;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255,86,7,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 23px rgba(83,49,18,.05);
}

summary {
  cursor: pointer;
  padding: 20px 21px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

details > p,
details > div {
  margin: 0;
  padding: 0 21px 21px;
  color: var(--muted);
}

.contact-card {
  position: sticky;
  top: 105px;
  padding: 29px;
  overflow: hidden;
  border-radius: 27px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 7%, rgba(255,204,106,.38), transparent 14rem),
    linear-gradient(140deg, var(--orange), #f13a0d);
  box-shadow: 0 22px 55px rgba(212,61,11,.21);
}

.contact-card a {
  display: inline-flex;
  margin-top: 9px;
  color: #fff;
  font-weight: 900;
  word-break: break-word;
}

.site-footer {
  padding: 33px 0 48px;
  border-top: 1px solid rgba(255,86,7,.11);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: #7f6857;
  font-size: 14px;
}

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

.footer-links a { text-decoration: none; font-weight: 750; }
.footer-links a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .hero {
    padding-top: 58px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 620px; }
  .mini-score { left: 2%; }

  .features { grid-template-columns: 1fr; }
  .feature-card:nth-child(2) { transform: none; }

  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .feedback-copy { order: -1; }

  .legal-layout,
  .support-grid { grid-template-columns: 1fr; }

  .toc { display: none; }
  .contact-card { position: static; }
}

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

  .nav { min-height: 69px; }
  .brand-icon { width: 42px; height: 42px; border-radius: 13px; }
  .brand-copy { font-size: 15px; }

  .nav-links a:not([aria-current="page"]) { display: none; }

  h1 { font-size: 49px; }

  .hero { padding-top: 45px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 510px; }

  .poster-shell { width: min(90vw, 370px); }
  .mini-score {
    width: 112px;
    left: -3px;
    top: 80px;
    padding: 13px;
  }
  .score-ring { width: 55px; height: 55px; }

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

  .section { padding: 70px 0; }

  .footer-inner { flex-direction: column; }
}