:root {
  --wine: #541b2c;
  --wine-deep: #35101d;
  --wine-soft: #7a344b;
  --cream: #f7f1e8;
  --paper: #fffdf9;
  --gold: #c99b52;
  --gold-deep: #9b6d2c;
  --gold-light: #ead9bb;
  --ink: #201b1d;
  --muted: #6d6264;
  --line: rgba(84, 27, 44, 0.14);
  --shadow: 0 24px 70px rgba(53, 16, 29, 0.17);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--wine);
  transform: translateY(-150%);
}

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

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

.narrow {
  max-width: 810px;
}

.center {
  text-align: center;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(84, 27, 44, 0.08);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--wine);
  color: var(--gold-light);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.header-login {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.header-login:hover {
  color: var(--wine-soft);
}

.header-login {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 25%, rgba(201, 155, 82, 0.15), transparent 24%),
    linear-gradient(125deg, var(--wine-deep), var(--wine) 58%, #68263b);
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 78px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding-bottom: 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.section-kicker.light {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6vw, 86px);
}

h1 em,
h2 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
}

.pain-section h2 em,
.inside-section h2 em,
.audience-section h2 em,
.steps-section h2 em,
.faq-section h2 em {
  color: var(--wine);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 253, 249, 0.84);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: var(--wine-deep);
  box-shadow: 0 15px 35px rgba(21, 5, 12, 0.22);
}

.button-gold:hover {
  background: #d7aa63;
  box-shadow: 0 18px 40px rgba(21, 5, 12, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--paper);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 253, 249, 0.72);
  font-size: 13px;
}

.hero-trust span {
  color: var(--gold);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 510px;
  justify-self: end;
  align-self: center;
  padding: 45px 30px;
}

.product-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  margin-inline: auto;
  overflow: hidden;
  border: 10px solid rgba(255, 253, 249, 0.9);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 36px 90px rgba(23, 4, 11, 0.46);
  transform: rotate(2.5deg);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(84, 27, 44, 0.08);
  pointer-events: none;
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  padding: 13px 15px;
  border: 1px solid rgba(201, 155, 82, 0.34);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.95);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(21, 5, 12, 0.24);
}

.floating-note-top {
  top: 8px;
  right: 0;
}

.floating-note-bottom {
  bottom: 22px;
  left: 0;
}

.note-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--gold-light);
  font-weight: 900;
}

.floating-note div {
  display: grid;
  line-height: 1.25;
}

.floating-note strong {
  color: var(--wine);
  font-size: 13px;
}

.floating-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(234, 217, 187, 0.15);
  border-radius: 50%;
}

.orbit-one {
  width: 610px;
  height: 610px;
  right: -160px;
  top: -70px;
}

.orbit-two {
  width: 390px;
  height: 390px;
  right: -48px;
  top: 40px;
}

.stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stats div {
  display: grid;
  gap: 3px;
  padding: 27px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
}

.stats span {
  color: rgba(255, 253, 249, 0.65);
  font-size: 12px;
}

.pain-section {
  background: var(--paper);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 55px;
}

.pain-grid article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(53, 16, 29, 0.055);
}

.card-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pain-grid h3,
.modules-grid h3,
.steps-grid h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.15;
}

.pain-grid p,
.modules-grid p,
.steps-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.solution-section {
  overflow: hidden;
  color: var(--paper);
  background: var(--wine-deep);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 95px;
}

.solution-copy > p:not(.section-kicker) {
  max-width: 700px;
  margin-bottom: 40px;
  color: rgba(255, 253, 249, 0.74);
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list > li > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.feature-list p {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.65);
  font-size: 16px;
}

.phone-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 680px;
}

.phone-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(201, 155, 82, 0.17);
  filter: blur(30px);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(315px, 78vw);
  height: 640px;
  overflow: hidden;
  border: 10px solid #171116;
  border-radius: 42px;
  background: #171116;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 31px;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  width: 76px;
  height: 17px;
  border-radius: 999px;
  background: #171116;
  transform: translateX(-50%);
}

.screen-caption {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: 72px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--wine-deep);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-weight: 750;
}

.screen-caption span {
  margin-right: 6px;
  color: #337a64;
}

.inside-section {
  background: var(--cream);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 60px;
}

.section-heading-row > p {
  max-width: 420px;
  margin-bottom: 24px;
  color: var(--muted);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.modules-grid article {
  position: relative;
  grid-column: span 2;
  min-height: 250px;
  padding: 27px;
  border: 1px solid rgba(84, 27, 44, 0.12);
  border-radius: 22px;
  background: var(--paper);
}

.modules-grid article:nth-child(4),
.modules-grid article:nth-child(5) {
  grid-column: span 3;
}

.modules-grid article > span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modules-grid .module-highlight {
  overflow: hidden;
  color: var(--paper);
  background: var(--wine);
}

.module-highlight h3 {
  color: var(--gold-light);
}

.modules-grid .module-highlight p {
  max-width: 75%;
  color: rgba(255, 253, 249, 0.7);
}

.module-highlight .module-arrow {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(234, 217, 187, 0.22);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 1;
}

.audience-section {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 95px;
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.audience-list span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  font-weight: 900;
}

.audience-list p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.creator-section {
  padding-top: 0;
  background: var(--paper);
}

.creator-card {
  display: grid;
  grid-template-columns: 0.56fr 1.44fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--wine);
  box-shadow: var(--shadow);
}

.creator-monogram {
  min-height: 480px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 155, 82, 0.2), transparent 35%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 70px, rgba(234, 217, 187, 0.12) 71px 72px),
    var(--wine-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(90px, 12vw, 150px);
  letter-spacing: -0.08em;
}

.creator-copy {
  padding: 64px;
}

.creator-copy h2 {
  font-size: clamp(40px, 4.5vw, 62px);
}

.creator-copy p {
  max-width: 700px;
  color: rgba(255, 253, 249, 0.73);
}

.creator-signature {
  display: block;
  margin-top: 28px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
}

.creator-copy > span {
  color: rgba(255, 253, 249, 0.56);
  font-size: 12px;
}

.steps-section {
  background: var(--cream);
}

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

.steps-grid article {
  padding: 30px;
  border-left: 1px solid rgba(84, 27, 44, 0.16);
}

.steps-grid article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 20px;
}

.offer-section {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(135deg, var(--wine-deep), var(--wine));
}

.offer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 88px;
}

.offer-copy > p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 253, 249, 0.73);
  font-size: 18px;
}

.guarantee-card {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 590px;
  margin-top: 40px;
  padding: 20px;
  border: 1px solid rgba(234, 217, 187, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.guarantee-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 28px;
}

.guarantee-card strong {
  color: var(--gold-light);
}

.guarantee-card p {
  margin: 3px 0 0;
  color: rgba(255, 253, 249, 0.65);
  font-size: 13px;
}

.price-card {
  padding: 38px;
  border-radius: 26px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 38px 90px rgba(21, 5, 12, 0.35);
}

.price-label {
  margin-bottom: 4px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 25px;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 34px;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0 0 26px;
  border-bottom: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}

.price-card li span {
  margin-right: 8px;
  color: var(--wine);
  font-weight: 900;
}

.price-block {
  display: grid;
  padding: 23px 0;
}

.price-block > span {
  color: var(--muted);
  font-size: 13px;
}

.price-block strong {
  color: var(--wine-deep);
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1;
}

.price-block small {
  font-family: Inter, sans-serif;
  font-size: 17px;
}

.button-full {
  width: 100%;
}

.secure-note,
.currency-note {
  text-align: center;
}

.secure-note {
  margin: 15px 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.currency-note {
  margin-bottom: 0;
  color: #908588;
  font-size: 10px;
  line-height: 1.4;
}

.offer-orbit {
  position: absolute;
  width: 620px;
  height: 620px;
  left: -210px;
  bottom: -280px;
  border: 1px solid rgba(234, 217, 187, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(234, 217, 187, 0.035), 0 0 0 165px rgba(234, 217, 187, 0.025);
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 750;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 17px;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  padding: 0 35px 22px 0;
  color: var(--muted);
  font-size: 16px;
}

.final-cta {
  padding: 80px 0;
  color: var(--paper);
  background: var(--wine);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.2vw, 58px);
}

.final-cta .button {
  flex: 0 0 auto;
}

footer {
  padding: 55px 0 115px;
  background: var(--wine-deep);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.25fr;
  align-items: start;
  gap: 55px;
}

.footer-brand .brand-mark {
  background: transparent;
}

.footer-brand .brand-copy small {
  color: rgba(255, 253, 249, 0.5);
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(255, 253, 249, 0.65);
  font-size: 13px;
}

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

.footer-note {
  color: rgba(255, 253, 249, 0.48);
  font-size: 11px;
  line-height: 1.55;
}

.footer-note p:last-child {
  margin-bottom: 0;
}

.mobile-buy-bar {
  display: none;
}

.notice {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  width: min(390px, calc(100% - 32px));
  padding: 20px 48px 20px 20px;
  border: 1px solid rgba(201, 155, 82, 0.38);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: notice-in 220ms ease both;
}

.notice button {
  position: absolute;
  top: 9px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
}

.notice strong {
  color: var(--wine);
}

.notice p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@keyframes notice-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .solution-grid,
  .offer-grid,
  .faq-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    justify-self: center;
  }

  .solution-grid,
  .offer-grid,
  .faq-grid,
  .audience-grid {
    gap: 55px;
  }

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

  .pain-grid article:last-child {
    grid-column: 1 / -1;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .modules-grid article,
  .modules-grid article:nth-child(4),
  .modules-grid article:nth-child(5) {
    grid-column: span 3;
  }

  .creator-card {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .creator-copy {
    padding: 45px;
  }

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

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 30px, 1160px);
  }

  .section-pad {
    padding: 78px 0;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .header-login {
    padding: 8px 11px;
    font-size: 11px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    min-height: auto;
  }

  h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  h2 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 7px;
  }

  .hero-visual {
    margin-top: 35px;
    padding: 38px 20px 58px;
  }

  .product-card {
    width: 84%;
    border-width: 7px;
  }

  .floating-note {
    min-width: 170px;
    padding: 10px 12px;
  }

  .floating-note-top {
    right: -5px;
  }

  .floating-note-bottom {
    bottom: 18px;
  }

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

  .stats div:nth-child(2) {
    border-right: 0;
  }

  .stats div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .pain-grid article:last-child {
    grid-column: auto;
  }

  .pain-grid article {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .phone-showcase {
    min-height: 610px;
  }

  .phone-frame {
    height: 570px;
  }

  .screen-caption {
    right: 0;
    bottom: 38px;
  }

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

  .modules-grid article,
  .modules-grid article:nth-child(4),
  .modules-grid article:nth-child(5) {
    grid-column: auto;
    min-height: 220px;
  }

  .creator-card {
    grid-template-columns: 1fr;
  }

  .creator-monogram {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .creator-copy {
    padding: 34px 25px 40px;
  }

  .steps-grid {
    gap: 8px;
  }

  .steps-grid article {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 16px;
    padding: 23px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(84, 27, 44, 0.14);
  }

  .steps-grid article > span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .steps-grid h3,
  .steps-grid p {
    grid-column: 2;
  }

  .price-card {
    padding: 28px 22px;
  }

  .price-block strong {
    font-size: 55px;
  }

  .faq-grid {
    gap: 25px;
  }

  .final-cta {
    padding: 68px 0 105px;
  }

  .final-cta-inner {
    display: grid;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-note {
    grid-column: auto;
  }

  .mobile-buy-bar {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(84, 27, 44, 0.13);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 -10px 30px rgba(53, 16, 29, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-buy-bar > div {
    display: grid;
    line-height: 1.15;
  }

  .mobile-buy-bar span {
    color: var(--muted);
    font-size: 10px;
  }

  .mobile-buy-bar strong {
    color: var(--wine);
    font-family: Georgia, serif;
    font-size: 22px;
  }

  .mobile-buy-bar .button {
    min-height: 44px;
    padding: 11px 15px;
    font-size: 13px;
  }

  .notice {
    right: 16px;
    bottom: 84px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
