:root {
  --ink: #101827;
  --muted: #5c6678;
  --line: #e7e9ee;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --navy: #111b35;
  --blue: #3259e8;
  --blue-dark: #2444bd;
  --gold: #ffc54d;
  --green: #0b9f6e;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(20, 31, 57, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus { top: 16px; }

.preview-notice {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  color: #5a4300;
  background: #fff5cc;
  border-bottom: 1px solid #f3dfa0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.preview-notice span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef9f00;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(224, 228, 236, .8);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}
.brand img {
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px #dfe4ef;
}
.brand span { display: flex; flex-direction: column; }
.brand strong { font-size: 14px; line-height: 1.3; }
.brand small { color: #70798a; font-size: 11px; margin-top: 2px; }
nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
nav a {
  color: #4d5667;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
nav a:hover { color: var(--blue); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; border-radius: 12px; }
.button-dark { color: #fff; background: var(--ink); }
.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 13px 30px rgba(50, 89, 232, .25);
}
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 16px 34px rgba(50, 89, 232, .33); }
.button-outline { color: var(--ink); background: #fff; border: 1.5px solid #ccd2df; }
.button-disabled { width: 100%; color: #7b8494; background: #edf0f5; cursor: not-allowed; }
.button-disabled:hover { transform: none; }
.text-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 98px;
  background:
    radial-gradient(circle at 18% 14%, rgba(60, 95, 231, .08), transparent 28%),
    linear-gradient(180deg, #f9faff 0%, #fff 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 450px; height: 450px; right: -170px; top: 40px; background: rgba(255, 197, 77, .14); }
.hero-glow-two { width: 300px; height: 300px; left: -170px; bottom: -100px; background: rgba(50, 89, 232, .1); }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 68px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4f5a6e;
  font-size: 13px;
  font-weight: 750;
}
.eyebrow span {
  padding: 7px 10px;
  color: #2341a9;
  background: #e9eeff;
  border-radius: 999px;
}
h1 {
  max-width: 680px;
  margin: 22px 0 22px;
  font-size: clamp(43px, 5.2vw, 70px);
  line-height: 1.02;
  letter-spacing: -.052em;
}
.hero-lead {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 24px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-size: 19px; letter-spacing: -.02em; }
.trust-row span { margin-top: 4px; color: #7a8394; font-size: 11px; }
.book-stage { position: relative; min-height: 590px; display: grid; place-items: center; perspective: 1200px; }
.book {
  position: relative;
  z-index: 2;
  width: min(405px, 84%);
  overflow: hidden;
  border-radius: 5px 20px 20px 5px;
  transform: rotateY(-10deg) rotateX(2deg) rotateZ(1deg);
  box-shadow: -18px 22px 35px rgba(10, 18, 40, .18), 25px 38px 70px rgba(17, 27, 53, .22);
}
.book::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 20px;
  background: linear-gradient(90deg, rgba(0,0,0,.34), rgba(255,255,255,.18), transparent);
}
.book-shadow {
  position: absolute;
  width: 400px;
  height: 80px;
  bottom: 42px;
  border-radius: 50%;
  background: rgba(18, 28, 52, .19);
  filter: blur(24px);
  transform: rotate(-3deg);
}
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 185px;
  padding: 13px 16px;
  color: #475166;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(224, 228, 237, .9);
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(26, 38, 68, .14);
  font-size: 12px;
}
.floating-card strong { display: block; color: var(--ink); font-size: 13px; }
.card-top { right: -4px; top: 104px; }
.card-bottom { left: -20px; bottom: 104px; }
.mini-icon, .check-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 11px;
  color: #2448c9;
  background: #e9eeff;
  font-weight: 900;
}
.check-icon { color: #047852; background: #dff8ed; font-size: 19px; }

section { padding: 105px 0; }
.problem-section { background: var(--navy); color: #fff; }
.section-heading { max-width: 680px; margin-bottom: 48px; }
.section-heading.centered { margin: 0 auto 54px; text-align: center; }
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.problem-section .section-kicker { color: #89a2ff; }
.section-heading h2, .inside-copy h2, .routine-copy h2, .fit-card h2, .offer-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 49px);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.section-heading p, .routine-copy > p, .offer-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.problem-section .section-heading p { color: #aeb8ce; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  min-height: 280px;
  padding: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
}
.feature-card h3 { margin: 25px 0 11px; font-size: 19px; }
.feature-card p { margin: 0; color: #aab4ca; font-size: 14px; line-height: 1.7; }
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
}
.icon-blue { color: #9badff; background: rgba(59,96,244,.2); }
.icon-violet { color: #c6a3ff; background: rgba(143,83,255,.18); font-size: 13px; }
.icon-green { color: #76e0b8; background: rgba(27,179,121,.16); font-size: 12px; }
.icon-orange { color: #ffc768; background: rgba(255,171,41,.16); }

.inside-section { overflow: hidden; }
.inside-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.inside-copy h2 { margin-bottom: 35px; }
.check-list { display: grid; gap: 20px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 16px; align-items: flex-start; }
.check-list li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  color: var(--blue);
  background: #edf1ff;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 900;
}
.check-list div { display: flex; flex-direction: column; gap: 5px; }
.check-list strong { font-size: 15px; }
.check-list small { color: var(--muted); font-size: 13px; line-height: 1.55; }
.sample-sheet {
  padding: 20px;
  background: #f7f8fb;
  border: 1px solid #e5e8ef;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.sheet-top { display: flex; justify-content: space-between; align-items: center; padding: 2px 4px 18px; color: #8a93a4; }
.sheet-top > div { display: flex; gap: 5px; }
.sheet-top > div span { width: 8px; height: 8px; border-radius: 50%; background: #d5d9e2; }
.sheet-top small { font-size: 10px; }
.word-row {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px 10px;
  padding: 18px 18px;
  margin-bottom: 10px;
  background: #fff;
  border-left: 4px solid;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(21,31,54,.05);
}
.word-number { color: #8b94a5; font-size: 11px; padding-top: 5px; }
.word-main { display: flex; align-items: center; gap: 9px; }
.word-main strong { font-size: 18px; }
.word-main em { color: var(--blue); font-size: 12px; }
.word-main b { padding: 4px 6px; color: #fff; border-radius: 5px; font-size: 9px; }
.meaning { color: #0b8c62; font-size: 12px; font-weight: 800; padding-top: 4px; }
.word-row small { grid-column: 2 / -1; color: #687185; font-size: 11px; }
.verb { border-color: #2c73ee; }
.verb .word-main b { background: #2c73ee; }
.prep { border-color: #7b8496; }
.prep .word-main b { background: #7b8496; }
.adj { border-color: #ef781e; }
.adj .word-main b { background: #ef781e; }
.sheet-note { padding: 14px 8px 2px; color: #717b8e; font-size: 11px; text-align: center; }

.preview-section { background: var(--soft); }
.preview-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.preview-card {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid #e2e6ef;
  border-radius: 23px;
  box-shadow: 0 16px 50px rgba(22,34,64,.08);
  cursor: zoom-in;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}
.preview-card:hover { transform: translateY(-5px); box-shadow: 0 25px 65px rgba(22,34,64,.13); }
.preview-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.preview-card > span { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; }
.preview-card strong { font-size: 15px; }
.preview-card small { color: #7c8596; font-size: 11px; }

.routine-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.routine-visual { padding: 50px; border-radius: 30px; background: linear-gradient(145deg, #edf1ff, #fff7e5); }
.calendar-card { padding: 28px; background: #fff; border: 1px solid #e7e9ef; border-radius: 20px; box-shadow: var(--shadow); transform: rotate(-2deg); }
.calendar-head { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.calendar-head span { font-weight: 850; }
.calendar-head strong { color: var(--blue); font-size: 13px; }
.calendar-days { display: grid; gap: 10px; padding: 18px 0; }
.calendar-days div { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; padding: 12px; background: #f7f8fb; border-radius: 10px; }
.calendar-days span { color: #737d8f; font-size: 11px; }
.calendar-days strong { font-size: 13px; }
.calendar-days small { color: #8a93a3; font-size: 10px; }
.progress-line { height: 7px; overflow: hidden; background: #e8ebf1; border-radius: 99px; }
.progress-line span { display: block; width: 42%; height: 100%; background: var(--blue); border-radius: 99px; }
.calendar-foot { display: block; margin-top: 15px; color: #7e8798; line-height: 1.5; }
.routine-copy h2 { margin-bottom: 20px; }
.plain-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.plain-badges span { padding: 9px 12px; color: #41506a; background: #f2f4f8; border-radius: 9px; font-size: 11px; font-weight: 750; }

.fit-section { padding-top: 0; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-card { padding: 46px; border: 1px solid; border-radius: 28px; }
.fit-yes { background: #f0fbf6; border-color: #c9eddd; }
.fit-no { background: #f8f8fa; border-color: #e4e5ea; }
.fit-label { display: inline-block; padding: 7px 10px; border-radius: 99px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.fit-yes .fit-label { color: #087550; background: #d5f3e6; }
.fit-no .fit-label { color: #626b7b; background: #e9ebef; }
.fit-card h2 { margin: 20px 0 25px; font-size: 31px; }
.fit-card ul { display: grid; gap: 14px; margin: 0; padding-left: 20px; color: #4f596b; font-size: 14px; line-height: 1.55; }

.creator-section { padding-top: 0; }
.creator-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px;
  color: #fff;
  background: var(--navy);
  border-radius: 30px;
}
.creator-card > img { border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,255,255,.1); }
.creator-card h2 { margin: 0; font-size: 28px; letter-spacing: -.03em; }
.creator-card p { max-width: 680px; margin: 12px 0 15px; color: #aeb8cc; font-size: 14px; line-height: 1.65; }
.creator-card .section-kicker { color: #91a8ff; }
.creator-card .text-link { color: #fff; }
.creator-stat { min-width: 150px; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; text-align: center; }
.creator-stat strong { display: block; font-size: 31px; }
.creator-stat span { color: #9faac0; font-size: 11px; }
.arrow-link span { text-decoration: none; }

.offer-section { color: #fff; background: linear-gradient(145deg, #111b35, #1a2850); }
.offer-grid { display: grid; grid-template-columns: 1fr 440px; align-items: center; gap: 100px; }
.offer-copy .section-kicker { color: #91a8ff; }
.offer-copy > p { color: #aeb8cc; }
.offer-list { display: grid; gap: 15px; margin: 30px 0 0; padding: 0; list-style: none; color: #e2e6ef; font-size: 14px; }
.offer-list span { display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 9px; color: #0a694b; background: #77e0b8; border-radius: 50%; font-size: 11px; font-weight: 900; }
.price-card { padding: 34px; color: var(--ink); background: #fff; border-radius: 26px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.price-label { color: #70798b; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.price { display: flex; align-items: flex-start; margin: 9px 0 3px; }
.price strong { font-size: 52px; line-height: 1; letter-spacing: -.05em; }
.price span { margin: 5px 0 0 5px; font-size: 20px; font-weight: 900; }
.price-card > p { margin: 0 0 25px; color: #727b8c; font-size: 12px; }
.price-card .button { width: 100%; }
.price-card > small { display: block; margin-top: 14px; color: #7b8494; font-size: 10px; line-height: 1.55; text-align: center; }
.or-divider { display: flex; align-items: center; gap: 10px; margin: 15px 0; color: #9aa1ae; font-size: 10px; }
.or-divider::before, .or-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.secure-line { margin-top: 20px; padding-top: 18px; color: #626c7e; border-top: 1px solid var(--line); font-size: 11px; text-align: center; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--blue); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion p { margin: -6px 45px 22px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

footer { padding: 42px 0 105px; background: #f6f7fa; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.footer-brand { grid-row: span 2; }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; }
.footer-links a { color: #596375; font-size: 12px; font-weight: 700; }
footer p { margin: 0; color: #8a92a1; font-size: 11px; text-align: right; }

.mobile-bar { display: none; }
.lightbox {
  width: min(900px, calc(100% - 30px));
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}
.lightbox::backdrop { background: rgba(8, 13, 25, .88); backdrop-filter: blur(8px); }
.lightbox img { max-height: 90vh; margin: auto; border-radius: 18px; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -15px;
  right: -10px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #1d2638;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
}

.checkout-dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(900px, calc(100vh - 28px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 35px 110px rgba(5, 12, 28, .45);
}
.checkout-dialog::backdrop { background: rgba(8, 13, 25, .74); backdrop-filter: blur(7px); }
.dialog-close {
  position: sticky;
  z-index: 3;
  top: 14px;
  float: right;
  width: 38px;
  height: 38px;
  margin: 14px 14px -52px 0;
  color: #5d6677;
  background: #eef1f5;
  border: 0;
  border-radius: 50%;
  font-size: 23px;
  cursor: pointer;
}
.checkout-step { padding: 42px; }
.checkout-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.checkout-step h2 { margin: 0; font-size: 31px; letter-spacing: -.035em; }
.checkout-step > p { margin: 10px 45px 25px 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
#checkout-form { display: grid; gap: 17px; }
#checkout-form > label { display: grid; gap: 7px; font-size: 12px; font-weight: 800; }
#checkout-form label small { color: #8a93a3; font-weight: 500; }
#checkout-form input[type="text"], #checkout-form input[type="email"] {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ccd2de;
  border-radius: 11px;
  outline: 0;
  font: inherit;
  font-size: 14px;
}
#checkout-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(50, 89, 232, .12); }
#checkout-form .consent-row { display: flex; grid-template-columns: none; gap: 10px; align-items: flex-start; color: #626c7d; font-size: 11px; font-weight: 500; line-height: 1.55; }
.consent-row input { margin-top: 2px; }
.consent-row a { color: var(--blue); font-weight: 700; }
#checkout-form .button { width: 100%; }
.form-error { min-height: 18px; margin: -6px 0 0; color: #c02e2e; font-size: 12px; }
.qr-layout { display: grid; grid-template-columns: 270px 1fr; gap: 25px; align-items: center; margin-top: 25px; }
.qr-frame { overflow: hidden; min-height: 270px; display: grid; place-items: center; background: #f6f7fa; border: 1px solid var(--line); border-radius: 18px; }
.qr-frame img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.payment-details { display: grid; margin: 0; }
.payment-details > div { padding: 10px 0; border-bottom: 1px solid var(--line); }
.payment-details dt { color: #818a9a; font-size: 10px; }
.payment-details dd { margin: 4px 0 0; font-size: 14px; font-weight: 850; overflow-wrap: anywhere; }
.payment-details button {
  margin-left: 6px;
  padding: 4px 7px;
  color: var(--blue);
  background: #edf1ff;
  border: 0;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
.payment-details .important { padding: 12px; margin-top: 8px; background: #fff5cf; border: 1px solid #f0dc8d; border-radius: 10px; }
.payment-details .important dd { color: #7a5400; font-size: 17px; letter-spacing: .04em; }
.payment-warning { margin: 18px 0; padding: 12px; color: #744f00; background: #fff8dc; border-radius: 10px; font-size: 11px; text-align: center; }
.checkout-step > .button { width: 100%; }
.checkout-note { margin: 12px 0 0 !important; color: #7d8696 !important; font-size: 10px !important; text-align: center; }
.status-step { text-align: center; }
.status-step .checkout-kicker { margin-top: 15px; }
.status-step > p { margin: 12px auto 24px; max-width: 510px; }
.status-step .button { margin-top: 12px; }
.status-spinner {
  width: 58px;
  height: 58px;
  margin: 5px auto 24px;
  border: 5px solid #e8ecf5;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.order-reference { display: inline-block; margin: 5px 0 12px; padding: 10px 14px; color: #5e687a; background: #f2f4f8; border-radius: 9px; font-size: 12px; }
@keyframes spin { to { transform: rotate(360deg); } }

.legal-page { min-height: 100vh; background: #f7f8fb; }
.legal-main { padding: 70px 0 100px; }
.legal-card { width: min(820px, 100%); padding: 48px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 60px rgba(22,34,64,.07); }
.legal-card h1 { margin: 0 0 12px; font-size: 42px; }
.legal-card .updated { color: #7c8596; font-size: 12px; }
.legal-card h2 { margin: 35px 0 10px; font-size: 20px; }
.legal-card p, .legal-card li { color: #525d70; font-size: 14px; line-height: 1.75; }
.legal-card a { color: var(--blue); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-one { transition-delay: .08s; }
.delay-two { transition-delay: .16s; }
.delay-three { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .preview-card { transition: none; }
}

@media (max-width: 980px) {
  nav { display: none; }
  .hero-grid, .inside-grid, .routine-grid, .offer-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 25px; }
  .hero { padding-top: 65px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin: 0 auto; }
  .hero-actions, .eyebrow { justify-content: center; }
  .trust-row { justify-content: center; }
  .book-stage { min-height: 550px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .inside-grid, .routine-grid { gap: 55px; }
  .offer-grid { gap: 50px; }
  .price-card { width: min(470px, 100%); }
  .faq-grid { gap: 30px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .preview-notice { font-size: 11px; }
  .nav-wrap { min-height: 66px; }
  .brand small { display: none; }
  .site-header .button-small { display: none; }
  .hero { padding: 52px 0 65px; }
  h1 { font-size: clamp(39px, 11vw, 44px); }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 18px; text-align: center; }
  .book-stage { min-height: 440px; }
  .book { width: 72%; }
  .book-shadow { width: 70%; bottom: 34px; }
  .floating-card { min-width: 155px; padding: 10px; }
  .card-top { right: -5px; top: 80px; }
  .card-bottom { left: -4px; bottom: 70px; }
  section { padding: 76px 0; }
  .section-heading h2, .inside-copy h2, .routine-copy h2, .fit-card h2, .offer-copy h2 { font-size: 34px; }
  .feature-grid, .preview-gallery, .fit-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .inside-grid { gap: 45px; }
  .sample-sheet { padding: 12px; margin: 0 -5px; }
  .word-row { grid-template-columns: 22px 1fr; padding: 14px 10px; }
  .meaning { grid-column: 2; }
  .word-row small { grid-column: 2; }
  .preview-card > span { align-items: flex-start; flex-direction: column; gap: 5px; }
  .routine-visual { padding: 22px 12px; }
  .calendar-card { padding: 18px; }
  .calendar-days div { grid-template-columns: 58px 1fr; }
  .calendar-days small { grid-column: 2; margin-top: 3px; }
  .fit-card { padding: 30px 24px; }
  .creator-card { grid-template-columns: auto 1fr; padding: 28px 23px; }
  .creator-card > img { width: 75px; }
  .creator-stat { grid-column: 1 / -1; }
  .price-card { padding: 28px 22px; }
  .faq-section { padding-bottom: 110px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-row: auto; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  footer p { text-align: left; }
  .mobile-bar {
    position: fixed;
    z-index: 45;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 10px 10px 17px;
    background: rgba(16,24,39,.96);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
  }
  .mobile-bar div { display: flex; flex-direction: column; color: #fff; }
  .mobile-bar small { color: #9fa9bc; font-size: 9px; }
  .mobile-bar strong { font-size: 16px; }
  .mobile-bar .button { min-height: 44px; padding: 0 16px; font-size: 12px; }
  .legal-main { padding: 35px 0 100px; }
  .legal-card { padding: 30px 22px; }
  .legal-card h1 { font-size: 34px; }
  .checkout-step { padding: 32px 20px 24px; }
  .checkout-step h2 { font-size: 27px; padding-right: 35px; }
  .checkout-step > p { margin-right: 25px; }
  .qr-layout { grid-template-columns: 1fr; gap: 13px; }
  .qr-frame { width: min(280px, 100%); min-height: auto; margin: 0 auto; }
}
