:root {
  --primary: #0f172a;
  --primary-deep: #080d18;
  --secondary: #1d4ed8;
  --gold: #f59e0b;
  --bg: #f8fafc;
  --surface: #ffffff;
  --heading: #111827;
  --body: #475569;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --success: #15803d;
  --danger: #b91c1c;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --font: "Inter", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

main,
.site-footer,
.site-header,
.buy-page-shell,
.policy-page {
  width: min(1120px, calc(100% - 32px));
  max-width: calc(100vw - 32px);
  margin: 0 auto;
}

.site-header {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 74px;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.brand-logo {
  width: 220px;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.brand-title,
.brand-tag {
  margin: 0;
}

.brand-title {
  color: var(--heading);
  font-weight: 900;
  font-size: 18px;
}

.brand-tag {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.top-nav,
.footer-links,
.hero-actions,
.card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.top-nav {
  justify-content: flex-end;
  gap: 16px;
  margin-left: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
}

.top-nav a {
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
}

.top-nav a:hover {
  color: var(--secondary);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.26);
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--heading);
  cursor: pointer;
  font-weight: 900;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -5px;
}

.nav-toggle-icon::after {
  top: 5px;
}

.hero-banner {
  width: 100vw;
  max-width: 100vw;
  min-height: 470px;
  margin: 0 calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--primary);
  box-shadow: var(--shadow);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 36px max(24px, calc((100vw - 1120px) / 2));
  z-index: 1;
  pointer-events: none;
}

.hero-brand-watermark {
  width: min(620px, 52vw);
  min-height: 300px;
  display: grid;
  place-content: center;
  gap: 10px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.26);
  text-align: center;
  transform: rotate(-4deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-brand-watermark img {
  width: min(320px, 74%);
  display: block;
  margin: 0 auto 6px;
  border-radius: 12px;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero-brand-watermark span {
  color: rgba(255, 255, 255, 0.28);
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-brand-watermark small {
  color: rgba(245, 158, 11, 0.42);
  font-size: clamp(18px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(100deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9) 54%, rgba(55, 25, 11, 0.92)),
    linear-gradient(135deg, rgba(29, 78, 216, 0.28), rgba(245, 158, 11, 0.16));
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 470px;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.hero-copy-block {
  max-width: 640px;
  min-width: 0;
}

.eyebrow {
  margin: 0;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-banner .eyebrow {
  color: #93c5fd;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--heading);
}

.hero-copy-block h1 {
  margin: 14px 0 16px;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy-block p:not(.eyebrow) {
  margin: 0;
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.8;
  max-width: 610px;
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: #111827;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 13px 28px rgba(245, 158, 11, 0.24);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.3);
}

.btn.secondary,
.btn.outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.btn.outline {
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn.small {
  min-height: 38px;
  padding: 9px 15px;
  font-size: 13px;
}

.btn:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.mentor-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.38), rgba(255, 255, 255, 0.09));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 38px rgba(0, 0, 0, 0.18);
  color: #e2e8f0;
}

.mentor-photo {
  width: min(220px, 100%);
  aspect-ratio: 1;
  display: block;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.mentor-label {
  margin: 0 0 12px;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mentor-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
}

.mentor-bio {
  margin: 0 0 18px;
  color: #dbeafe;
  line-height: 1.7;
}

.mentor-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mentor-card li {
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  font-weight: 800;
}

.trust-strip {
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.trust-strip article,
.note-card,
.video-card,
.about-section,
.trust-cards article,
.faq-list details,
.contact-section,
.buy-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-strip article {
  padding: 22px 24px;
}

.trust-strip span {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.trust-strip h2 {
  margin: 9px 0 8px;
  font-size: 20px;
}

.trust-strip p,
.section-heading p,
.note-card p,
.about-section p,
.trust-cards p,
.faq-list p,
.contact-copy p,
.buy-summary,
.form-note,
.buy-benefits li,
.buy-meta-item {
  color: var(--body);
  line-height: 1.7;
}

.trust-strip p {
  margin: 0;
}

.section-block,
.about-section,
.reviews-section,
.contact-section {
  margin-top: 72px;
}

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

.compact-heading {
  max-width: 620px;
}

.section-heading h2,
.about-section h2,
.contact-copy h2 {
  margin: 10px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading p,
.about-section p,
.contact-copy p {
  margin: 0;
  font-size: 16px;
}

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

.note-card {
  padding: 24px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
}

.note-kicker {
  margin: 0 0 13px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.note-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.note-card p:not(.note-kicker) {
  margin: 0;
}

.note-price {
  margin-top: auto;
  padding-top: 18px;
  color: var(--heading);
  font-weight: 900;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 900;
}

.old-price {
  color: #94a3b8;
  font-size: 16px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.current-price {
  color: var(--heading);
  font-size: 24px;
  font-weight: 900;
}

.card-actions {
  gap: 10px;
  margin-top: 18px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
}

.video-card {
  overflow: hidden;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e2e8f0;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin: 0;
  padding: 18px 20px 20px;
  font-size: 19px;
}

.video-cta {
  min-height: 230px;
  padding: 24px;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #eef4ff);
}

.video-cta h3 {
  padding: 0;
  margin: 10px 0 18px;
  font-size: 25px;
}

.about-section {
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: start;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-cards article {
  padding: 18px;
  box-shadow: none;
}

.trust-cards h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.trust-cards p {
  margin: 0;
  font-size: 14px;
}

.reviews-section {
  padding: 0;
}

.reviews-scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 2px 2px 14px;
  scrollbar-color: var(--border-strong) transparent;
}

.reviews-scroller::-webkit-scrollbar {
  height: 10px;
}

.reviews-scroller::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-scroller::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--border-strong);
}

.review-card {
  position: relative;
  flex: 0 0 min(360px, 88vw);
  min-height: 285px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 92px;
  right: 18px;
  color: rgba(29, 78, 216, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.review-top {
  margin: -6px -6px 16px;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  background: #f8fbff;
}

.review-image {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.review-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.featured-review {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.review-rating {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.reviews-scroller .review-quote {
  margin: 16px 0 22px;
  position: relative;
  z-index: 1;
  color: var(--heading);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.72;
}

.review-person {
  min-width: 0;
}

.review-person strong,
.review-person span {
  display: block;
}

.review-person strong {
  color: var(--heading);
  font-size: 16px;
  line-height: 1.2;
}

.review-person span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.review-tag {
  width: fit-content;
  margin-top: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--heading);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact-section {
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: start;
}

.contact-form,
.buy-form-grid {
  display: grid;
  gap: 16px;
}

.form-grid,
.buy-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.label {
  color: var(--heading);
  font-size: 14px;
  font-weight: 900;
}

.input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: #ffffff;
  color: var(--heading);
  padding: 12px 14px;
  resize: vertical;
}

.input::placeholder {
  color: #94a3b8;
}

.input:focus {
  outline: 3px solid rgba(29, 78, 216, 0.16);
  border-color: var(--secondary);
}

.contact-status,
.status-banner {
  margin: 0;
  min-height: 23px;
  font-size: 15px;
}

.contact-status.success,
.status-banner.success {
  color: var(--success);
}

.contact-status.error,
.status-banner.error {
  color: var(--danger);
}

.site-footer {
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  gap: 18px;
  font-weight: 800;
}

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

body:not(.buy-flow-body) .site-header {
  min-height: 62px;
  padding-top: 9px;
  padding-bottom: 9px;
}

body:not(.buy-flow-body) .brand-logo {
  width: 180px;
}

body:not(.buy-flow-body) .top-nav {
  gap: 13px;
}

body:not(.buy-flow-body) .nav-cta {
  padding: 9px 14px;
}

body:not(.buy-flow-body) .hero-banner {
  min-height: 360px;
}

body:not(.buy-flow-body) .hero-inner {
  min-height: 360px;
  padding: 28px 32px;
  gap: 30px;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
}

body:not(.buy-flow-body) .hero-copy-block h1 {
  margin: 10px 0 12px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.06;
}

body:not(.buy-flow-body) .hero-copy-block p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.55;
}

body:not(.buy-flow-body) .hero-actions {
  margin-top: 20px;
}

body:not(.buy-flow-body) .hero-brand-watermark {
  width: min(500px, 45vw);
  min-height: 230px;
  margin-right: min(120px, 20vw);
}

body:not(.buy-flow-body) .hero-brand-watermark img {
  width: min(260px, 70%);
}

body:not(.buy-flow-body) .hero-brand-watermark span {
  font-size: clamp(42px, 5.8vw, 82px);
}

body:not(.buy-flow-body) .mentor-card {
  padding: 20px;
  display: block;
  text-align: left;
}

body:not(.buy-flow-body) .mentor-photo {
  width: 118px;
  margin: 0 auto 12px;
}

body:not(.buy-flow-body) .mentor-label {
  margin-bottom: 9px;
  padding: 6px 9px;
}

body:not(.buy-flow-body) .mentor-card h2 {
  margin-bottom: 4px;
  font-size: 19px;
}

body:not(.buy-flow-body) .mentor-bio {
  margin-bottom: 2px;
  line-height: 1.55;
  /* font-size: 13px; */
}

body:not(.buy-flow-body) .mentor-card ul {
  grid-template-columns: 1fr;
  gap: 7px;
}

body:not(.buy-flow-body) .mentor-card li {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}

body:not(.buy-flow-body) .trust-strip {
  margin-top: 16px;
  gap: 14px;
}

body:not(.buy-flow-body) .trust-strip article {
  padding: 16px 18px;
}

body:not(.buy-flow-body) .trust-strip h2 {
  margin: 6px 0 5px;
  font-size: 18px;
}

body:not(.buy-flow-body) .trust-strip p,
body:not(.buy-flow-body) .section-heading p,
body:not(.buy-flow-body) .note-card p,
body:not(.buy-flow-body) .about-section p,
body:not(.buy-flow-body) .trust-cards p,
body:not(.buy-flow-body) .faq-list p,
body:not(.buy-flow-body) .contact-copy p {
  line-height: 1.55;
}

body:not(.buy-flow-body) .section-block,
body:not(.buy-flow-body) .about-section,
body:not(.buy-flow-body) .reviews-section,
body:not(.buy-flow-body) .contact-section {
  margin-top: 42px;
}

body:not(.buy-flow-body) .section-heading {
  margin-bottom: 16px;
}

body:not(.buy-flow-body) .section-heading h2,
body:not(.buy-flow-body) .about-section h2,
body:not(.buy-flow-body) .contact-copy h2 {
  margin: 7px 0 7px;
  font-size: clamp(24px, 2.5vw, 32px);
}

body:not(.buy-flow-body) .notes-grid,
body:not(.buy-flow-body) .video-grid {
  gap: 14px;
}

body:not(.buy-flow-body) .note-card {
  min-height: 235px;
  padding: 18px;
}

body:not(.buy-flow-body) .note-kicker {
  margin-bottom: 8px;
}

body:not(.buy-flow-body) .note-card h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

body:not(.buy-flow-body) .note-price {
  padding-top: 12px;
}

body:not(.buy-flow-body) .current-price {
  font-size: 21px;
}

body:not(.buy-flow-body) .card-actions {
  margin-top: 12px;
}

body:not(.buy-flow-body) .video-card h3 {
  padding: 12px 16px 14px;
  font-size: 17px;
}

body:not(.buy-flow-body) .video-cta {
  min-height: 190px;
  padding: 18px;
}

body:not(.buy-flow-body) .video-cta h3 {
  margin: 7px 0 12px;
  font-size: 21px;
}

body:not(.buy-flow-body) .about-section,
body:not(.buy-flow-body) .contact-section {
  padding: 22px;
  gap: 20px;
}

body:not(.buy-flow-body) .trust-cards {
  gap: 10px;
}

body:not(.buy-flow-body) .trust-cards article {
  padding: 14px;
}

body:not(.buy-flow-body) .trust-cards h3 {
  margin-bottom: 5px;
}

body:not(.buy-flow-body) .reviews-section {
  padding: 0;
}

body:not(.buy-flow-body) .reviews-scroller {
  gap: 12px;
}

body:not(.buy-flow-body) .review-card {
  min-height: 255px;
  padding: 18px;
}

body:not(.buy-flow-body) .review-image {
  width: 54px;
  height: 54px;
}

body:not(.buy-flow-body) .review-top {
  margin: -4px -4px 12px;
  padding: 9px;
  gap: 12px;
}

body:not(.buy-flow-body) .reviews-scroller .review-quote {
  margin: 12px 0 16px;
  line-height: 1.55;
}

body:not(.buy-flow-body) .faq-list {
  gap: 10px;
}

body:not(.buy-flow-body) .faq-list details {
  padding: 14px 16px;
}

body:not(.buy-flow-body) .contact-form,
body:not(.buy-flow-body) .form-grid {
  gap: 12px;
}

body:not(.buy-flow-body) .input {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 10px;
}

body:not(.buy-flow-body) textarea.input {
  min-height: 104px;
}

body:not(.buy-flow-body) .site-footer {
  padding: 24px 0;
}

.buy-page-shell {
  width: min(1280px, calc(100% - 24px));
  max-width: 1280px;
  padding-top: 24px;
  padding-bottom: 52px;
}

.policy-page {
  padding: 48px 0 64px;
}

.policy-hero {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fbff 60%, #eef4ff 100%);
  box-shadow: var(--shadow-soft);
}

.policy-hero h1 {
  margin: 12px 0 14px;
  max-width: 820px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
}

.policy-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}

.policy-date {
  margin-top: 18px !important;
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 900;
}

.policy-content {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.policy-content article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.policy-content h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.policy-content p {
  margin: 0;
  color: var(--body);
  line-height: 1.75;
}

.policy-content p + p {
  margin-top: 10px;
}

.buy-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.buy-back-link {
  color: var(--secondary);
  font-weight: 900;
}

.buy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.buy-card {
  padding: 26px;
}

.buy-card h2 {
  margin: 10px 0 10px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.18;
}

.buy-summary {
  margin: 0;
}

.buy-price-box,
.buy-select-panel {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f8fafc;
}

.price-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.buy-price-large {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 6px;
  color: var(--heading);
  font-weight: 900;
}

.buy-price-large .old-price {
  font-size: 18px;
}

.buy-price-large .current-price {
  font-size: 34px;
}

.buy-meta-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.buy-meta-item {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
}

.buy-meta-item strong {
  display: block;
  color: var(--heading);
}

.buy-benefits {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.buy-benefits li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.buy-benefits li:last-child {
  border-bottom: 0;
}

.buy-select-panel {
  margin-top: 0;
  display: grid;
  gap: 12px;
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.buy-flow-body {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 48%, #ffffff 100%);
}

.buy-flow {
  display: grid;
  gap: 24px;
}

.buy-flow-intro,
.buy-flow-section,
.checkout-dialog {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.buy-flow-intro {
  padding: 14px 18px;
  display: grid;
  grid-template-columns: minmax(175px, 0.3fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--gold);
  background:
    linear-gradient(100deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92) 58%, rgba(29, 78, 216, 0.9)),
    var(--primary);
}

.buy-flow-intro h1 {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.08;
}

.buy-flow-intro .eyebrow {
  color: #93c5fd;
}

.buy-help {
  display: grid;
  gap: 7px;
}

.buy-help > h2 {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.buy-help-points {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.buy-help-points li {
  min-height: 38px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.buy-help-points li span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  color: #111827;
  font-size: 12px;
  font-weight: 900;
}

.buy-flow-section {
  padding: 18px 20px;
}

.direct-buy-page[hidden],
.buy-flow-section[hidden] {
  display: none;
}

.direct-buy-page {
  display: grid;
  gap: 14px;
}

.direct-buy-hero,
.direct-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 12px;
}

.direct-note-hero,
.direct-trust-panel,
.direct-detail-panel,
.direct-related-section {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.direct-note-hero {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(29, 78, 216, 0.22);
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #eef4ff 100%);
}

.inline-back {
  width: fit-content;
  margin-bottom: 14px;
}

.direct-note-hero h2,
.direct-related-section h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.08;
}

.direct-note-hero p:not(.note-kicker),
.direct-detail-panel li,
.direct-trust-panel li {
  color: var(--body);
  line-height: 1.65;
}

.direct-note-hero > p:not(.note-kicker) {
  max-width: 680px;
  font-size: 15px;
}

.direct-actions,
.direct-related-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.direct-actions {
  margin-top: 0;
}

.direct-actions .btn.secondary,
.direct-related-actions .btn.secondary {
  color: var(--secondary);
  border-color: var(--secondary);
}

.direct-trust-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
  color: #e2e8f0;
}

.direct-trust-panel .eyebrow {
  color: #93c5fd;
}

.direct-trust-panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.18;
}

.direct-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.direct-buy-box {
  margin: 16px 0 0;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(29, 78, 216, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.direct-buy-box small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.direct-buy-box .btn {
  min-width: 180px;
}

.direct-buy-box + .direct-actions {
  margin-top: 10px;
}

.direct-trust-panel ul,
.direct-detail-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.direct-trust-panel li,
.direct-detail-panel li {
  position: relative;
  padding-left: 22px;
}

.direct-trust-panel li::before,
.direct-detail-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.direct-trust-panel li {
  color: #dbeafe;
}

.direct-detail-panel h3 {
  margin: 6px 0 10px;
  font-size: 19px;
  line-height: 1.2;
}

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

.direct-related-card .btn {
  width: auto;
}

.direct-related-card {
  min-height: 250px;
  padding: 18px;
  background: #fbfdff;
}

.direct-related-card h3 {
  font-size: 19px;
}

.direct-related-actions .btn {
  flex: 1 1 130px;
}

.buy-section-heading {
  margin-bottom: 12px;
}

.buy-section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.buy-section-heading h2 {
  margin: 5px 0 5px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.12;
}

.buy-section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--body);
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.category-tile {
  min-height: 68px;
  padding: 12px 14px;
  display: grid;
  align-content: space-between;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.category-tile:hover,
.category-tile.active {
  border-color: var(--secondary);
  background: #eef4ff;
}

.category-tile:active,
.category-tile:focus {
  transform: none;
}

.category-tile:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.4);
  outline-offset: 2px;
}

.category-tile span {
  font-size: 15px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.category-tile strong {
  color: var(--muted);
  font-size: 12px;
}

.scroller-actions {
  display: flex;
  gap: 8px;
}

.icon-btn,
.modal-close {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: #ffffff;
  color: var(--heading);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}

.icon-btn:hover,
.modal-close:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.pdf-scroller {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
  overflow: hidden;
  padding: 0;
}

.pdf-card {
  min-height: 320px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.pdf-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.pdf-card p:not(.note-kicker) {
  margin: 0;
  color: var(--body);
  line-height: 1.65;
}

.pdf-description {
  min-height: 78px;
}

.description-toggle {
  width: fit-content;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--secondary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  text-align: left;
}

.description-toggle:hover,
.description-toggle:focus-visible {
  text-decoration: underline;
}

.pdf-card .btn {
  width: 100%;
  margin-top: 18px;
}

.compact-catalog-section {
  margin-bottom: -12px;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(120deg, rgba(29, 78, 216, 0.1), rgba(21, 128, 61, 0.1)),
    #ffffff;
}

.compact-notes-section {
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.compact-catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.compact-catalog-heading > p {
  max-width: 390px;
  font-size: 14px;
}

.buy-flow-body .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.buy-flow-body .category-tile {
  min-height: 34px;
  width: auto;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  box-shadow: none;
}

.buy-flow-body .category-tile span {
  font-size: 13px;
}

.buy-flow-body .category-tile strong {
  padding-left: 8px;
  border-left: 1px solid rgba(100, 116, 139, 0.25);
  white-space: nowrap;
}

.buy-flow-body .category-tile.active {
  background: var(--primary);
  color: #ffffff;
}

.buy-flow-body .category-tile.active strong {
  color: #cbd5e1;
  border-left-color: rgba(255, 255, 255, 0.22);
}

.buy-flow-body .pdf-scroller {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  padding: 2px 2px 12px;
  scrollbar-color: var(--border-strong) transparent;
}

.buy-flow-body .pdf-scroller::-webkit-scrollbar {
  height: 9px;
}

.buy-flow-body .pdf-scroller::-webkit-scrollbar-track {
  background: transparent;
}

.buy-flow-body .pdf-scroller::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--border-strong);
}

.buy-flow-body .pdf-card {
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 230px;
  min-height: 265px;
  padding: 14px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  scroll-snap-align: start;
}

.pdf-card-top {
  min-height: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.pdf-card-top .note-kicker {
  margin-bottom: 0;
}

.buy-flow-body .pdf-card h3 {
  min-height: 44px;
  margin: 8px 0 8px;
  font-size: 17px;
  line-height: 1.28;
}

.buy-flow-body .pdf-card p:not(.note-kicker) {
  font-size: 13px;
  line-height: 1.45;
}

.buy-flow-body .pdf-description {
  min-height: 58px;
}

.buy-flow-body .note-price {
  padding-top: 12px;
}

.buy-flow-body .old-price {
  font-size: 13px;
}

.buy-flow-body .current-price {
  font-size: 21px;
}

.buy-flow-body .discount-badge {
  min-height: 21px;
  padding: 3px 7px;
  font-size: 11px;
}

.buy-flow-body .pdf-card .btn {
  min-height: 36px;
  margin-top: 12px;
  border-radius: 8px;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
}

.checkout-modal.is-open {
  display: grid;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
}

.checkout-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(780px, calc(100vh - 36px));
  overflow: auto;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  font-size: 22px;
}

.checkout-summary {
  min-width: 0;
  padding-right: 6px;
}

.checkout-summary h2 {
  margin: 10px 0 10px;
  font-size: 28px;
  line-height: 1.16;
}

.checkout-summary p:not(.eyebrow) {
  margin: 0;
  color: var(--body);
  line-height: 1.65;
}

.checkout-price-row {
  margin-top: 20px;
  padding: 16px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.checkout-price-row small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 800;
}

.checkout-price-row strong {
  color: var(--heading);
}

.checkout-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header,
  .buy-page-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .top-nav {
    justify-content: flex-start;
    gap: 12px 16px;
    margin-left: 0;
    width: 100%;
    order: 4;
  }

  .hero-inner,
  .trust-strip,
  .notes-grid,
  .about-section,
  .reviews-scroller,
  .contact-section,
  .buy-layout {
    grid-template-columns: 1fr;
  }

  .reviews-scroller {
    display: flex;
    grid-template-columns: none !important;
    padding-inline: 4px;
  }

  .review-card {
    flex-basis: min(360px, 88vw);
  }

  .hero-inner {
    gap: 20px;
    padding: 24px;
  }

  body:not(.buy-flow-body) .hero-banner,
  body:not(.buy-flow-body) .hero-inner {
    min-height: auto;
  }

  body:not(.buy-flow-body) .hero-inner {
    grid-template-columns: 1fr;
  }

  body:not(.buy-flow-body) .mentor-card li {
    white-space: nowrap;
  }

  .buy-flow-intro,
  .checkout-dialog {
    grid-template-columns: 1fr;
  }

  .direct-buy-hero,
  .direct-detail-grid,
  .direct-related-grid {
    grid-template-columns: 1fr;
  }

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

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

  .pdf-scroller {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    overflow: hidden;
  }

  .pdf-card {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  main,
  .site-footer,
  .site-header,
  .buy-page-shell,
  .policy-page {
    width: min(1120px, calc(100% - 24px));
    max-width: calc(100vw - 24px);
  }

  .site-header {
    width: 100%;
    max-width: 100%;
    padding-inline: 12px;
  }

  .brand-tag {
    display: none;
  }

  .brand-logo {
    width: 136px;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 58px;
  }

  .top-nav {
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .top-nav.is-open {
    display: grid;
  }

  .top-nav a {
    min-width: 0;
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 14px;
    text-align: left;
  }

  .top-nav a:hover {
    background: #f1f5f9;
  }

  .header-actions {
    gap: 6px;
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    width: 42px;
    padding-inline: 0;
  }

  .nav-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 42px;
    padding: 11px 13px;
    font-size: 13px;
  }

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

  .hero-media {
    align-items: flex-start;
    justify-content: center;
    padding: 18px 12px;
  }

  .hero-brand-watermark {
    width: min(360px, 92vw);
    min-height: 190px;
    opacity: 0.78;
  }

  .hero-brand-watermark img {
    width: min(230px, 78%);
  }

  .hero-brand-watermark span {
    font-size: 44px;
  }

  .hero-brand-watermark small {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .hero-inner {
    width: min(1120px, calc(100% - 24px));
    min-height: auto;
    padding: 22px 18px;
  }

  .hero-copy-block h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-copy-block p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mentor-card,
  .note-card,
  .about-section,
  .reviews-section,
  .contact-section,
  .buy-card {
    padding: 18px;
  }

  .section-block,
  .about-section,
  .reviews-section,
  .contact-section {
    margin-top: 34px;
  }

  body:not(.buy-flow-body) .reviews-scroller {
    gap: 14px;
    padding-inline: 2px;
  }

  body:not(.buy-flow-body) .review-card {
    flex-basis: calc(100vw - 48px);
  }

  body:not(.buy-flow-body) .trust-strip {
    gap: 10px;
    margin-top: 12px;
  }

  body:not(.buy-flow-body) .trust-strip article {
    padding: 14px;
  }

  body:not(.buy-flow-body) .mentor-card {
    display: block;
  }

  body:not(.buy-flow-body) .mentor-photo {
    width: 116px;
    margin: 0 auto 10px;
  }

  body:not(.buy-flow-body) .mentor-card ul {
    grid-template-columns: 1fr;
  }

  body:not(.buy-flow-body) .mentor-card li {
    font-size: 14px;
  }

  body:not(.buy-flow-body) .section-heading {
    margin-bottom: 12px;
  }

  body:not(.buy-flow-body) .section-heading h2,
  body:not(.buy-flow-body) .about-section h2,
  body:not(.buy-flow-body) .contact-copy h2 {
    font-size: 25px;
  }

  body:not(.buy-flow-body) .note-card {
    min-height: 0;
  }

  body:not(.buy-flow-body) .video-cta {
    min-height: 0;
  }

  .video-grid,
  .trust-cards,
  .form-grid,
  .buy-form-row,
  .buy-meta-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .buy-flow-intro,
  .buy-flow-section,
  .checkout-dialog {
    padding: 16px;
  }

  .buy-flow-intro h1 {
    font-size: 29px;
  }

  .pdf-scroller {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  .pdf-card {
    min-width: 0;
    width: 100%;
  }

  .direct-note-hero,
  .direct-trust-panel,
  .direct-detail-panel,
  .direct-related-section {
    padding: 18px;
  }

  .direct-note-hero {
    min-height: 0;
  }

  .direct-buy-box {
    grid-template-columns: 1fr;
  }

  .direct-buy-box .btn {
    width: 100%;
    min-width: 0;
  }

  .buy-help-points {
    grid-template-columns: 1fr;
  }

  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .buy-help-points li,
  .category-tile {
    min-height: 0;
  }

  .category-tile {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 9px 10px;
    align-content: center;
  }

  .category-tile:hover,
  .category-tile.active {
    transform: none;
    box-shadow: none;
  }

  .buy-section-heading.split {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .scroller-actions {
    width: auto;
    display: flex;
    gap: 10px;
  }

  .icon-btn {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .pdf-scroller {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  .pdf-card {
    min-width: 0;
    width: 100%;
  }

  .checkout-modal {
    padding: 12px;
    place-items: end center;
  }

  .checkout-dialog {
    max-height: calc(100vh - 24px);
  }
}

@media (max-width: 980px) {
  .compact-catalog-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .buy-flow-body .category-grid {
    display: flex;
    grid-template-columns: none;
  }
}

@media (max-width: 720px) {
  .buy-page-shell {
    padding-top: 12px;
    padding-bottom: 28px;
  }

  .buy-flow {
    gap: 14px;
  }

  .buy-flow-body .category-grid {
    display: flex;
    grid-template-columns: none;
    gap: 7px;
  }

  .buy-flow-body .category-tile {
    width: auto;
    min-height: 34px;
    padding: 8px 11px;
  }

  .buy-flow-body .category-tile span {
    font-size: 12px;
  }

  .buy-flow-body .pdf-card {
    min-height: 0;
    padding: 14px;
  }

  .buy-flow-body .pdf-card h3 {
    min-height: 0;
  }
}

.buy-flow-body .buy-page-shell {
  padding-top: 10px;
}

.buy-flow-body .buy-page-header {
  min-height: 54px;
  margin-bottom: 14px;
  padding: 0;
  align-items: center;
}

.buy-flow-body .brand-logo {
  width: 180px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.buy-flow-body .buy-back-link {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 980px) {
  .buy-flow-body .buy-page-header {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .buy-flow-body .buy-page-shell {
    padding-top: 8px;
  }

  .buy-flow-body .buy-page-header {
    min-height: 44px;
    margin-bottom: 10px;
  }

  .buy-flow-body .brand-logo {
    width: 136px;
  }

  .buy-flow-body .buy-back-link {
    font-size: 13px;
  }
}

.buy-flow-body .buy-flow-intro {
  min-height: 0;
  padding: 10px 14px;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  border-left-width: 4px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.buy-flow-body .buy-flow-intro .eyebrow {
  font-size: 10px;
}

.buy-flow-body .buy-flow-intro h1 {
  margin-top: 3px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.12;
}

.buy-flow-body .buy-help {
  gap: 5px;
}

.buy-flow-body .buy-help > h2 {
  font-size: 13px;
}

.buy-flow-body .buy-help-points {
  gap: 6px;
}

.buy-flow-body .buy-help-points li {
  min-height: 30px;
  padding: 6px 8px;
  gap: 6px;
  font-size: 12px;
  line-height: 1.18;
}

.buy-flow-body .buy-help-points li span {
  width: 20px;
  height: 20px;
  font-size: 11px;
}

@media (max-width: 980px) {
  .buy-flow-body .buy-flow-intro {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .buy-flow-body .buy-help-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .buy-flow-body .buy-flow-intro {
    padding: 10px 12px;
  }

  .buy-flow-body .buy-flow-intro h1 {
    font-size: 20px;
  }

  .buy-flow-body .buy-help-points {
    grid-template-columns: 1fr;
  }

  .buy-flow-body .buy-help-points li {
    min-height: 28px;
  }
}

.buy-flow-body .compact-catalog-section {
  padding: 10px 14px;
  margin-bottom: -10px;
}

.buy-flow-body .compact-catalog-heading {
  margin-bottom: 8px;
  gap: 12px;
}

.buy-flow-body .compact-catalog-heading .eyebrow {
  font-size: 10px;
}

.buy-flow-body .compact-catalog-heading h2 {
  margin: 3px 0 0;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.15;
}

.buy-flow-body .compact-catalog-heading > p {
  max-width: 330px;
  font-size: 13px;
  line-height: 1.35;
}

.buy-flow-body .compact-catalog-section .category-grid {
  gap: 6px;
}

.buy-flow-body .compact-catalog-section .category-tile {
  min-height: 30px;
  padding: 6px 11px;
}

@media (max-width: 720px) {
  .buy-flow-body .compact-catalog-section {
    padding: 10px 12px;
  }

  .buy-flow-body .compact-catalog-heading {
    gap: 5px;
  }

  .buy-flow-body .compact-catalog-heading h2 {
    font-size: 19px;
  }
}

@media (max-width: 980px) {
  .buy-flow-body .pdf-scroller {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .buy-flow-body .pdf-card {
    flex-basis: calc((100% - 12px) / 2);
    min-width: 240px;
  }
}

@media (max-width: 720px) {
  .buy-flow-body .pdf-scroller {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    margin: 0;
    padding: 2px 2px 12px;
  }

  .buy-flow-body .pdf-card {
    flex: 0 0 min(292px, calc(100vw - 58px));
    min-width: 0;
    width: auto;
  }
}

.buy-flow-body .compact-notes-section {
  overflow: hidden;
}

.buy-flow-body .compact-notes-section .pdf-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 4);
  grid-template-columns: none;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0;
  padding: 2px 2px 12px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
}

.buy-flow-body .compact-notes-section .pdf-card {
  width: auto;
  min-width: 0;
  flex: initial;
  scroll-snap-align: start;
}

@media (max-width: 980px) {
  .buy-flow-body .compact-notes-section .pdf-scroller {
    grid-auto-columns: calc((100% - 12px) / 2);
  }
}

@media (max-width: 720px) {
  .buy-flow-body .compact-notes-section .pdf-scroller {
    grid-auto-columns: min(292px, calc(100vw - 58px));
    gap: 10px;
  }
}
