﻿:root {
  --ink: #061936;
  --teal: #0758d6;
  --teal-2: #00a8ff;
  --coral: #ff7a35;
  --coral-dark: #e2601d;
  --mint: #d9f2ff;
  --line: #d5e4f4;
  --muted: #52677f;
  --soft: #f2f8ff;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(0, 47, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7fbff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(72px, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 10px clamp(20px, 4.5vw, 64px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

main {
  padding-bottom: 44px;
}

.refresh-container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.refresh-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #042c53;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.refresh-trust-bar span + span::before {
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.48);
  content: "·";
}

.refresh-hero {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.refresh-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

.refresh-eyebrow {
  display: inline-block;
  width: fit-content;
  margin: 0 0 20px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #faeeda;
  color: #633806;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.refresh-hero h1 {
  max-width: 620px;
  margin: 0 0 20px;
  color: #185fa5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.refresh-lead {
  max-width: 540px;
  margin: 0 0 22px;
  color: #314566;
  font-size: 18px;
  line-height: 1.52;
}

.refresh-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 28px;
  color: #52677f;
  font-size: 14px;
  font-weight: 700;
}

.refresh-benefits span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.refresh-benefits b {
  color: #639922;
  font-size: 16px;
}

.refresh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.refresh-guarantee {
  margin: 0;
  color: #52677f;
  font-size: 13px;
  font-weight: 700;
}

.refresh-hero-side {
  display: grid;
  gap: 20px;
}

.refresh-visual {
  position: relative;
  min-height: 280px;
}

.refresh-router-card {
  position: absolute;
  top: 30px;
  left: 0;
  display: flex;
  width: 58%;
  height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 12px;
  background: #1a1a2e;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 34px rgba(15, 31, 61, 0.16);
}

.refresh-router-icon {
  position: relative;
  display: block;
  width: 76px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #378add;
}

.refresh-router-icon::before,
.refresh-router-icon::after {
  position: absolute;
  bottom: 100%;
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: #9fc9f0;
  content: "";
}

.refresh-router-icon::before {
  left: 16px;
  transform: rotate(-12deg);
}

.refresh-router-icon::after {
  right: 16px;
  transform: rotate(12deg);
}

.refresh-router-card strong {
  font-size: 18px;
}

.refresh-router-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.refresh-ai-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  padding: 16px;
  border: 2px solid #185fa5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: -8px 8px 0 rgba(24, 95, 165, 0.1), 0 16px 32px rgba(15, 31, 61, 0.08);
}

.refresh-ai-card > span {
  display: block;
  margin-bottom: 10px;
  color: #185fa5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.refresh-bubble {
  margin: 0 0 7px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.3;
}

.refresh-bubble.user {
  background: #e6f1fb;
  color: #042c53;
}

.refresh-bubble.ai {
  background: #f1efe8;
  color: #2c2c2a;
}

.refresh-next {
  margin: 8px 4px 0;
  color: #6a7788;
  font-size: 11px;
  font-weight: 800;
}

.refresh-offer-card {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(15, 31, 61, 0.06);
}

.refresh-offer-tag,
.refresh-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.refresh-offer-tag {
  margin-bottom: 10px;
}

.refresh-offer-tag span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #e24b4a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.refresh-offer-tag small {
  color: #52677f;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.refresh-price span {
  color: #a0aec0;
  font-size: 18px;
  font-weight: 800;
  text-decoration: line-through;
}

.refresh-price strong {
  color: #185fa5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.refresh-price em {
  padding: 4px 8px;
  border-radius: 4px;
  background: #eaf3de;
  color: #3b6d11;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.refresh-offer-card p {
  margin: 6px 0 0;
  color: #52677f;
  font-size: 13px;
}

.refresh-offer-card p strong {
  color: #042c53;
}

.refresh-offer-card a {
  display: inline-flex;
  margin-top: 10px;
  color: #185fa5;
  font-size: 14px;
  font-weight: 900;
}

.router-strip {
  padding: 18px 0;
  border-top: 1px solid #dce8f6;
  border-bottom: 1px solid #dce8f6;
  background: #ffffff;
  text-align: center;
}

.router-strip p {
  margin: 0 0 10px;
  color: #8b9ab0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.router-strip div div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  justify-content: center;
  color: #52677f;
  font-size: 14px;
  font-weight: 800;
}

.refresh-reviews {
  position: relative;
  padding: 60px 0 62px;
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 107, 31, 0.09), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(24, 95, 165, 0.1), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.refresh-reviews h2 {
  margin: 0 0 30px;
  color: #185fa5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.1;
  text-align: center;
}

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

.refresh-review-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid #d7e7f8;
  border-top: 4px solid #f26b1f;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 31, 61, 0.08);
}

.review-stars {
  color: #ef9f27;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.refresh-review-grid p {
  margin: 0;
  color: #1a1a2e;
  font-size: 15px;
  line-height: 1.55;
}

.review-author {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.review-author > span {
  display: flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e6f1fb;
  color: #185fa5;
  font-size: 13px;
  font-weight: 900;
}

.refresh-review-grid article:nth-child(2) .review-author > span {
  background: #eaf3de;
  color: #3b6d11;
}

.refresh-review-grid article:nth-child(3) .review-author > span {
  background: #faece7;
  color: #993c1d;
}

.review-author strong {
  display: block;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.review-author small {
  display: block;
  margin-top: 2px;
  color: #718096;
  font-size: 12px;
  line-height: 1.2;
}

.refresh-help-built {
  padding: 50px 0;
  background: #f7fbff;
}

.refresh-help-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 28px;
  border-left: 4px solid #185fa5;
  border-radius: 8px;
  background: #e6f1fb;
}

.refresh-help-card h2 {
  margin: 0 0 18px;
  color: #042c53;
  font-size: 20px;
  line-height: 1.2;
}

.refresh-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.refresh-help-grid article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.refresh-help-grid article > span {
  display: flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 2px solid #185fa5;
  border-radius: 50%;
  background: #ffffff;
  color: #185fa5;
  font-weight: 900;
}

.refresh-help-grid h3 {
  margin: 0 0 4px;
  color: #042c53;
  font-size: 15px;
}

.refresh-help-grid p {
  margin: 0;
  color: #52677f;
  font-size: 13px;
  line-height: 1.5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 0.9;
}

.brand-logo {
  width: clamp(112px, 11vw, 150px);
  min-width: 112px;
}

.brand-logo img {
  display: block;
  width: 100%;
  max-height: 60px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
}

.brand-mark svg {
  width: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 10px 0;
  color: #0f1f3d;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  color: #1b3fa0;
}

.nav a.active::after,
.nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--teal);
  content: "";
}

.nav-divider {
  flex: 0 0 auto;
  width: 1px;
  height: 20px;
  margin: 0 12px;
  background: #d6deeb;
}

.nav-free-guide {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f26b1f !important;
}

.nav-free-guide span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 999px;
  background: #fff1e7;
  color: #b94712;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}

.nav .parent-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 2px solid #1b3fa0;
  border-radius: 8px;
  background: #1b3fa0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav .parent-login-link:hover,
.nav .parent-login-link.active {
  background: #163587;
  border-color: #163587;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(27, 63, 160, 0.25);
  transform: translateY(-1px);
}

.nav .parent-login-link::after,
.nav .parent-login-link:hover::after,
.nav .parent-login-link.active::after {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d6deeb;
  border-radius: 8px;
  background: #ffffff;
  color: #0f1f3d;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle {
  flex-direction: column;
  gap: 4px;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  border-color: #1b3fa0;
  box-shadow: 0 4px 12px rgba(27, 63, 160, 0.14);
  transform: translateY(-1px);
}

.cart-button {
  justify-self: end;
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 63, 77, 0.22);
  cursor: pointer;
}

.cart-button svg,
.email-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-button span {
  position: absolute;
  top: 9px;
  right: 10px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 63, 77, 0.16);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.bag-link span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
}

.hero {
  --hero-pad: clamp(24px, 3.2vw, 38px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  width: min(1120px, calc(100% - 44px));
  min-height: auto;
  margin: 22px auto 12px;
  padding: var(--hero-pad);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.96));
  box-shadow: 0 22px 60px rgba(7, 88, 214, 0.1);
}

.hero-copy {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: clamp(10px, 1.8vw, 22px) 0;
}

.hero h1,
.products-section h2,
.bundle-band h2,
.email-band h2 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.08;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 100px;
  background: #fff0e8;
  color: #b94712;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy > p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #253b5d;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.48;
}

.hero-copy > p + p {
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.hero-actions .button {
  padding: 16px 28px;
  font-size: 15px;
}

.hero-coupon {
  max-width: 560px;
  margin: 12px 0 0;
  color: #27415f;
  font-size: 15px;
  line-height: 1.4;
}

.hero-coupon strong {
  color: var(--teal);
  font-weight: 900;
}

.hero-proof {
  display: grid;
  gap: 14px;
  max-width: 620px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid #e4edf8;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: #f7faff;
}

.hero-proof strong {
  color: var(--teal);
  font-size: 17px;
}

.hero-proof span:not(.round-icon) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

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

.hero-help-grid div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

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

.hero-help-grid p strong {
  display: inline;
  color: var(--ink);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(239, 90, 63, 0.22);
}

.primary:hover {
  background: var(--coral-dark);
}

.secondary {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--white);
}

.dark {
  background: linear-gradient(135deg, #074bd6, #00a8ff);
  color: var(--white);
}

.full {
  width: 100%;
}

.trust-strip {
  grid-column: 1 / -1;
  margin: 0 calc(var(--hero-pad) * -1) calc(var(--hero-pad) * -1);
  padding: 28px 56px;
  border-radius: 0 0 8px 8px;
  background: #0f1f3d;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-row div {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.trust-row p {
  margin: 0;
  color: #c9d4e8;
  font-size: 14px;
  line-height: 1.35;
}

.trust-row strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.trust-row .round-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-color: #ffffff;
  border-radius: 50%;
  background: #ffffff;
  color: #1b3fa0;
  font-size: 15px;
  font-weight: 700;
}

.trust-row div:nth-child(2) .round-icon {
  border-color: #f26b1f;
  background: #f26b1f;
  color: #ffffff;
}

.round-icon {
  flex: 0 0 auto;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 900;
}

.hero-products {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  min-height: 0;
  padding-top: 0;
}

.hero-static-panel {
  grid-template-columns: minmax(130px, 0.82fr) minmax(190px, 1fr);
  gap: 18px;
  align-items: center;
  justify-self: stretch;
  padding: clamp(8px, 1.4vw, 16px);
}

.hero-static-panel .hero-logo-card {
  align-self: start;
  max-height: 180px;
  transform: rotate(-2deg);
}

.hero-static-panel .hero-module-card {
  align-self: center;
  max-height: 360px;
  object-fit: cover;
  transform: rotate(2deg);
}

.hero-static-panel .hero-ai-card {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: min(92%, 520px);
  margin: -10px auto 0;
}

.hero-static-panel .hero-ai-card p {
  margin: 0;
}

.hero-coupon {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  margin-top: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(242, 107, 31, 0.28);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.hero-coupon span {
  width: fit-content;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-coupon strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.hero-coupon a {
  width: fit-content;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

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

.hero-video-panel {
  gap: 12px;
  align-self: center;
  justify-self: center;
  width: min(100%, 300px);
  max-width: 300px;
  padding: clamp(14px, 1.8vw, 18px);
  border: 1px solid #b9d6f8;
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(0, 168, 255, 0.24), transparent 34%),
    linear-gradient(180deg, #08316f 0%, #061d42 100%);
  box-shadow: 0 8px 32px rgba(15, 31, 61, 0.15);
}

.hero-video-copy {
  display: grid;
  gap: 6px;
  color: var(--white);
  text-align: center;
}

.hero-video-copy strong {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.06;
}

.hero-video-copy span {
  color: #d9ebff;
  font-size: 14px;
  line-height: 1.45;
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 280px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  background: #010b1d;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

.hero-video-frame::before {
  display: none;
  padding-top: 0;
  content: "";
}

.hero-video,
.hero-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  opacity: 0;
}

.hero-video-poster {
  z-index: 1;
}

.hero-video-frame.has-started .hero-video {
  opacity: 1;
}

.hero-video-frame.has-started .hero-video-poster {
  opacity: 0;
  pointer-events: none;
}

.hero-video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
}

.hero-video-play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #ffffff;
}

.hero-video-frame.is-playing .hero-video-play,
.hero-video-frame.has-started .hero-video-play {
  opacity: 0;
  pointer-events: none;
}

.hero-video-note {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #d9ebff;
}

.hero-video-note span {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: 900;
}

.hero-video-note p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
}

.sample-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(360px, 1.32fr);
  gap: clamp(18px, 2.6vw, 30px);
  align-items: start;
  width: min(1120px, calc(100% - 44px));
  margin: 16px auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid #bcd5f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(7, 88, 214, 0.08);
}

.sample-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-copy h2 {
  max-width: 440px;
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.sample-copy p {
  max-width: 500px;
  margin: 16px 0 0;
  color: #314967;
  font-size: 16px;
  line-height: 1.5;
}

.sample-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sample-points li {
  position: relative;
  padding-left: 24px;
  color: #233b5d;
  font-size: 15px;
  line-height: 1.4;
}

.sample-points li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  content: "âœ“";
}

.sample-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sample-video {
  overflow: hidden;
  border: 1px solid #0b3a75;
  border-radius: 8px;
  background: #061d42;
  box-shadow: 0 20px 46px rgba(0, 35, 88, 0.18);
}

.sample-video-note {
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d9ebff;
  font-size: 13px;
  line-height: 1.45;
}

.sample-video-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.sample-video-bar span {
  color: #99d8ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-video-bar strong {
  font-size: 14px;
}

.sample-video-stage {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px;
  min-height: 300px;
  padding: 14px;
  background:
    radial-gradient(circle at bottom right, rgba(255, 122, 26, 0.24), transparent 28%),
    linear-gradient(135deg, #0b3a75 0%, #061d42 58%, #031329 100%);
}

.desk-visual {
  position: relative;
  min-height: 210px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 52%),
    linear-gradient(180deg, #0a356f 0%, #061d42 100%);
}

.desk-screen {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 106px;
  border: 7px solid #dceeff;
  border-bottom-width: 12px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(205, 230, 255, 0.94)),
    #dceeff;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
}

.desk-screen::after {
  position: absolute;
  right: 26%;
  bottom: -31px;
  left: 26%;
  height: 18px;
  border-radius: 0 0 5px 5px;
  background: #bdd4ef;
  box-shadow: 0 18px 0 -5px #dceeff;
  content: "";
}

.desk-screen::before {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 58%;
  height: 8px;
  border-radius: 999px;
  background: #0b58d6;
  box-shadow: 0 18px 0 #ff7a1a, 52px 18px 0 #ffffff;
  content: "";
}

.desk-keyboard {
  position: absolute;
  right: 16px;
  bottom: 36px;
  left: 16px;
  height: 36px;
  border-radius: 8px 8px 12px 12px;
  background:
    repeating-linear-gradient(90deg, #dbeaff 0 16px, #b7d3f2 16px 20px),
    #dbeaff;
  transform: perspective(120px) rotateX(8deg);
}

.desk-hand {
  position: absolute;
  bottom: 14px;
  width: 54px;
  height: 42px;
  border-radius: 999px 999px 14px 14px;
  background: #a6633f;
  opacity: 0.95;
  animation: typingTap 1.2s ease-in-out infinite;
}

.desk-hand.left {
  left: 28px;
}

.desk-hand.right {
  right: 34px;
  animation-delay: 0.25s;
}

.chat-preview {
  display: grid;
  align-content: center;
  gap: 6px;
  padding-bottom: 44px;
}

.chat-line {
  max-width: 92%;
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  color: #08213f;
  font-size: 13px;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(10px);
  animation: chatReveal 15s ease-in-out infinite;
}

.chat-line span {
  display: block;
  margin-bottom: 5px;
  color: #0b58d6;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-line.parent {
  justify-self: start;
  background: #ffffff;
}

.chat-line.ai {
  justify-self: end;
  background: #dff4ff;
  border-left: 4px solid #ff7a1a;
}

.chat-line.ai span {
  color: #b74c0b;
}

.chat-line:nth-child(2) {
  animation-delay: 3s;
}

.chat-line:nth-child(3) {
  animation-delay: 6.4s;
}

.chat-line:nth-child(4) {
  animation-delay: 9.4s;
}

.router-upload {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 4px 10px;
  width: min(92%, 260px);
  align-items: center;
}

.router-upload::before {
  grid-row: 1 / span 3;
  display: block;
  width: 46px;
  height: 38px;
  border: 1px solid #c3daf5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 88, 214, 0.18), transparent 42%),
    linear-gradient(90deg, #082857 0 34%, #ffffff 34% 100%);
  content: "";
}

.router-upload strong {
  color: #08213f;
  font-size: 12.5px;
  line-height: 1.1;
}

.router-upload small {
  color: #4d6684;
  font-size: 11.5px;
  line-height: 1.15;
}

.sample-fade {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(3, 19, 41, 0.72);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  animation: fadePreview 15s ease-in-out infinite;
}

.sample-card div {
  padding: 16px 18px;
  border: 1px solid #c3daf5;
  border-radius: 8px;
  background: #f5faff;
}

.sample-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-card p {
  margin: 0;
  color: #233b5d;
  font-size: 15px;
  line-height: 1.48;
}

.router-honesty-callout {
  grid-column: 1 / -1;
  margin-bottom: 24px;
  padding: 24px 28px;
  border-left: 4px solid #f26b1f;
  border-radius: 12px;
  background: #f8fafe;
}

.router-honesty-callout > span {
  display: block;
  margin-bottom: 8px;
  color: #1b3fa0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.router-honesty-callout h3 {
  margin: 0 0 10px;
  color: #1b3fa0;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}

.router-honesty-callout > p {
  margin: 0;
  color: #2c3e5c;
  font-size: 15px;
  line-height: 1.6;
}

.router-honesty-callout div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.router-honesty-callout div p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0;
  color: #0f1f3d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.router-honesty-callout strong {
  color: #f26b1f;
}

.sample-cta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #d3e3f5;
}

.sample-cta strong {
  color: var(--ink);
  font-size: 18px;
}

.sample-cta-note {
  margin: 8px 0 0;
  color: #5a6b85;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.ai-support-strip {
  display: grid;
  gap: 8px;
  width: min(1120px, calc(100% - 44px));
  margin: 18px auto;
  padding: 20px 24px;
  border: 1px solid #b7d3f2;
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(7, 88, 214, 0.08);
}

.ai-support-strip strong {
  color: var(--teal);
  font-size: 20px;
}

.ai-support-strip p {
  max-width: 900px;
  margin: 0;
  color: #314967;
  font-size: 15.5px;
  line-height: 1.5;
}

@keyframes chatReveal {
  0%,
  8% {
    opacity: 0;
    transform: translateY(10px);
  }

  13%,
  82% {
    opacity: 1;
    transform: translateY(0);
  }

  96%,
  100% {
    opacity: 0;
  }
}

@keyframes fadePreview {
  0%,
  76% {
    opacity: 0;
  }

  84%,
  94% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes typingTap {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(5px) rotate(-2deg);
  }
}

.hero-logo-card,
.hero-module-card {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(0, 47, 130, 0.16);
}

.hero-logo-card {
  grid-row: auto;
  padding: 14px;
  object-fit: contain;
}

.hero-ai-card {
  display: grid;
  gap: 14px;
  width: min(88%, 520px);
  margin: -24px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(0, 47, 130, 0.16);
}

.cover {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 3px;
  background: linear-gradient(180deg, #fffdfa 0%, #f8f2ea 78%, var(--teal) 78%);
  color: var(--teal);
  text-align: center;
  box-shadow: var(--shadow);
}

.cover::before {
  width: 24px;
  height: 24px;
  margin-top: 30px;
  border: 1.7px solid currentColor;
  border-radius: 6px;
  content: "";
  font-size: 14px;
  line-height: 20px;
}

.cover span {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cover h2 {
  margin: 22px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.92;
}

.cover p {
  max-width: 72%;
  margin: 0 auto;
  color: #173744;
  font-size: 13px;
  line-height: 1.35;
}

.cover strong {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 8px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tablet {
  width: min(42vw, 350px);
  height: 450px;
  transform: rotate(-2deg);
  border: 14px solid #141414;
  border-radius: 18px;
}

.standing {
  width: min(25vw, 218px);
  height: 360px;
  margin-left: -40px;
}

.screen {
  z-index: 2;
  background: linear-gradient(180deg, #d8eeee 0%, #eef8f8 78%, var(--teal-2) 78%);
}

.feelings {
  background: linear-gradient(180deg, #fbf5ef 0%, #fffdfa 78%, var(--coral) 78%);
}

.products-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-heading h2,
.bundle-band h2,
.email-band h2 {
  font-size: clamp(30px, 3vw, 38px);
}

.section-heading a {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 0;
  gap: 30px;
}

.complete-bundle {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.7fr) auto;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 34px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #bfd8f4;
  border-radius: 8px;
  background: linear-gradient(135deg, #062b68, #0a57d8 62%, #0aa7ff);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(0, 47, 130, 0.18);
}

.complete-bundle span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.18);
  color: #ffd9c0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.complete-bundle h2 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.2vw, 44px);
  line-height: 1;
}

.complete-bundle p {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.5;
}

.complete-bundle .bundle-offer {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-weight: 800;
}

.complete-bundle .bundle-offer b {
  color: #ffffff;
  letter-spacing: 0.03em;
}

.complete-bundle ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.complete-bundle li {
  position: relative;
  padding-left: 21px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.complete-bundle li::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.complete-bundle .button {
  justify-self: end;
  white-space: nowrap;
  background: var(--coral);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 47, 130, 0.08);
}

.product-image {
  width: 100%;
  height: auto;
  min-height: 210px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

.product-card:last-child {
  border-right: 1px solid var(--line);
  padding-right: 24px;
  padding-left: 24px;
}

.product-card:nth-child(2) {
  padding-left: 24px;
}

.mini-cover {
  width: 144px;
  height: 212px;
  transform: none;
  box-shadow: 0 14px 30px rgba(0, 47, 58, 0.12);
}

.mini-cover h2 {
  font-size: 24px;
}

.product-card h3 {
  margin: 7px 0 6px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.05;
}

.product-card .format,
.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 16px;
  color: var(--ink);
  font-size: 14px;
}

.best-for {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 820;
}

.included-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.included-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.price {
  font-size: 26px;
  font-weight: 900;
}

.add-button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.product-buy .button.secondary {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.bundle-band,
.email-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1180px, calc(100% - 44px));
  margin: 18px auto 0;
  padding: 30px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, var(--soft), #ffffff);
}

.bundle-band p,
.email-band p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 44px));
  margin: 16px auto 34px;
  padding: 42px;
  border-radius: 8px;
  background: radial-gradient(circle at top right, rgba(0, 168, 255, 0.28), transparent 34%), linear-gradient(135deg, #052f8f, #061936);
  color: var(--white);
}

.ai-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.ai-copy > p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.45;
}

.ai-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.ai-steps div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.ai-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
}

.ai-steps strong {
  display: block;
  margin-top: 14px;
  font-size: 17px;
}

.ai-steps p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.ai-support-note {
  width: fit-content;
  max-width: 720px;
  margin: 22px 0 0;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.ai-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.24);
}

.ai-message {
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.45;
}

.ai-message small {
  display: block;
  margin-bottom: 7px;
  color: currentColor;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.9px;
  line-height: 1;
  opacity: 0.72;
  text-transform: uppercase;
}

.ai-message.parent {
  justify-self: end;
  max-width: 86%;
  background: #eef8f8;
  color: var(--teal);
  font-weight: 800;
}

.ai-message.assistant {
  background: var(--soft);
  color: var(--ink);
}

.modules-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 24px;
}

.module-list-heading {
  max-width: 760px;
  margin-bottom: 20px;
}

.module-list-heading h2 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 38px);
}

.module-list-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.module-list-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(0, 47, 130, 0.06);
}

.module-list-item > span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.module-list-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.module-list-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.module-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 47, 130, 0.08);
}

.module-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.module-content {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.module-content span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.module-content h3 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.05;
}

.module-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.module-content ul {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.module-content li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.module-content li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.module-content strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.modules-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  width: min(1180px, calc(100% - 44px));
  margin: 28px auto 0;
  padding: clamp(34px, 4.6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.96)),
    radial-gradient(circle at top right, rgba(0, 168, 255, 0.24), transparent 34%);
  box-shadow: 0 22px 60px rgba(7, 88, 214, 0.1);
}

.modules-hero h1,
.all-modules-heading h2,
.modules-closing h2 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.modules-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.modules-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #253b5d;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
}

.module-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.modules-hero-panel {
  padding: 22px;
  border: 1px solid #bfd8f4;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 47, 130, 0.12);
}

.modules-hero-panel strong {
  display: block;
  color: var(--teal);
  font-size: 19px;
  line-height: 1.1;
}

.modules-hero-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.all-modules-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0 18px;
}

.all-modules-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.6fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.all-modules-heading h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
}

.all-modules-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.all-modules-list {
  display: grid;
  gap: 18px;
}

.included-layer-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 47, 130, 0.08);
}

.included-layer-media {
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.2), transparent 34%),
    linear-gradient(135deg, #f2f8ff, #ffffff);
  overflow: hidden;
}

.included-layer-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: contain;
  object-position: center center;
}

.included-layer-content > span {
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.included-layer-content h3 {
  margin: 8px 0 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.included-layer-content p {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.included-layer-content > strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.included-lesson-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.included-lesson-list li {
  min-height: 100%;
  padding: 14px;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  background: #f8fbff;
}

.included-lesson-list b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.included-lesson-list small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.modules-explainer,
.modules-fit-grid {
  width: min(1180px, calc(100% - 44px));
  margin: 24px auto 0;
}

.modules-explainer {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 47, 130, 0.07);
}

.modules-explainer p {
  max-width: 980px;
  margin: 0;
  color: #253b5d;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
}

.included-layer-expansion {
  max-width: 860px;
  color: #253b5d !important;
}

.modules-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.modules-fit-heading {
  grid-column: 1 / -1;
  text-align: center;
}

.modules-fit-heading h2 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.modules-info-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 47, 130, 0.08);
}

.modules-info-card-accent {
  border-left: 5px solid var(--coral);
  background: linear-gradient(135deg, #ffffff 0%, #fff8f2 100%);
}

.modules-info-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modules-info-card h2 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.08;
}

.modules-info-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.all-module-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 47, 130, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.all-module-card:hover {
  border-color: #99c6f4;
  box-shadow: 0 20px 42px rgba(0, 47, 130, 0.12);
  transform: translateY(-2px);
}

.all-module-card a {
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.all-module-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

.all-module-card span {
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.all-module-card h3 {
  margin: 8px 0 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.06;
}

.all-module-card p {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.all-module-card strong {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
}

.checkout-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
  width: min(1180px, calc(100% - 44px));
  margin: 34px auto 48px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
}

.checkout-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.98));
  box-shadow: 0 22px 60px rgba(7, 88, 214, 0.1);
}

.checkout-product > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
  box-shadow: 0 18px 40px rgba(0, 47, 130, 0.12);
}

.checkout-empty {
  min-height: 320px;
}

.bag-items {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.bag-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.bag-item img {
  width: 92px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

.bag-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.bag-item span {
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.bag-item p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--teal);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.bundle-nudge {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #b7d3f2;
  border-radius: 8px;
  background: #eef8ff;
  color: #253b5d;
  font-size: 15px;
  line-height: 1.45;
}

.checkout-promise {
  display: grid;
  gap: 10px;
  padding: 15px 16px;
  border: 1px solid #ffb07d;
  border-radius: 8px;
  background: #fff8f1;
}

.checkout-promise strong {
  color: var(--ink);
  font-size: 15px;
}

.checkout-promise ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-promise li {
  position: relative;
  padding-left: 18px;
  color: #253b5d;
  font-size: 14px;
  line-height: 1.35;
}

.checkout-promise li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.checkout-product span {
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.checkout-product h1 {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
}

.checkout-product p {
  max-width: 640px;
  margin: 18px 0 0;
  color: #253b5d;
  font-size: 18px;
  line-height: 1.5;
}

.checkout-product ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-product li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.4;
}

.checkout-product li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.checkout-summary {
  position: sticky;
  top: 108px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 47, 130, 0.1);
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form > span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.checkout-form h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.checkout-form p,
.checkout-form small {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.checkout-form input,
.checkout-form select {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cbd5d8;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  background: #ffffff;
  color: var(--ink);
}

.coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.coupon-box {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(242, 107, 31, 0.28);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.coupon-box strong {
  color: var(--ink);
  font-size: 15px;
}

.coupon-box p {
  margin-top: 4px;
  color: #5a6b85;
  font-size: 13.5px;
}

.coupon-box input {
  min-height: 46px;
  border-color: rgba(242, 107, 31, 0.38);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coupon-row .button {
  min-height: 50px;
  padding: 0 18px;
}

.coupon-savings {
  padding: 12px 14px;
  border: 1px solid #9bd8b5;
  border-radius: 8px;
  background: #effaf3;
  color: var(--ink);
}

.checkout-help-box {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid #b7d3f2;
  border-radius: 8px;
  background: #f4faff;
}

.checkout-help-box strong {
  color: var(--ink);
  font-size: 15px;
}

.checkout-help-box p {
  font-size: 14px;
}

.hesitation-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 25, 54, 0.58);
}

.hesitation-card {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 24, 65, 0.28);
}

.hesitation-card > span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hesitation-card h2 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
}

.hesitation-card p {
  margin: 0;
  color: #253b5d;
  font-size: 16px;
  line-height: 1.5;
}

.hesitation-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.hesitation-card textarea {
  min-height: 88px;
  padding: 12px 14px;
  border: 1px solid #cbd5d8;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.hesitation-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.hesitation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hesitation-options button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #b7d3f2;
  border-radius: 999px;
  background: #eef8ff;
  color: var(--teal);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.hesitation-options button.selected {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.hesitation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.optional-label {
  color: var(--muted);
  font-weight: 700;
}

.faq-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 42px;
  padding: 12px 0 0;
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(0, 47, 130, 0.06);
}

.faq-grid h3 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.08;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.founder-story-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 34px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid #bcd3eb;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eef8ff);
  box-shadow: 0 18px 44px rgba(7, 88, 214, 0.08);
}

.founder-story-band h2 {
  margin: 8px 0 16px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.founder-story-band p {
  margin: 0;
  color: #253b5d;
  font-size: 17px;
  line-height: 1.62;
}

.founder-story-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid #0b4f97;
  border-radius: 8px;
  background: #073f83;
  color: #ffffff;
}

.founder-story-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.founder-story-card p {
  color: #e6f3ff;
}

.story-page {
  width: min(1120px, calc(100% - 44px));
  margin: 36px auto 64px;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
  margin-bottom: 38px;
  padding: clamp(34px, 5vw, 58px) 0 34px;
  border-bottom: 1px solid #bcd3eb;
}

.story-hero-copy {
  min-width: 0;
}

.story-hero h1 {
  max-width: 650px;
  margin: 10px 0 18px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-page .story-hero h1 {
  max-width: 620px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
}

.story-lede {
  max-width: 660px;
  margin: 0;
  color: #253b5d;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.55;
}

.story-hero-lower {
  display: block;
}

.story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #bdd5f0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.founder-photo-card {
  display: flex;
  gap: 16px;
  align-items: center;
  width: auto;
  margin: 0 0 22px;
  color: var(--ink);
}

.founder-photo-card img {
  display: block;
  width: 116px;
  height: 116px;
  object-fit: cover;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(7, 88, 214, 0.18);
}

.founder-photo-card figcaption {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 0;
}

.founder-photo-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.05;
}

.founder-photo-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.story-intro-card {
  padding: 26px;
  border: 1px solid #a9c8ea;
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eaf5ff);
  box-shadow: 0 18px 42px rgba(7, 88, 214, 0.08);
}

.story-intro-card p {
  margin: 0;
  color: #1f334f;
  font-size: 16px;
  line-height: 1.65;
}

.story-intro-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 21px;
  line-height: 1.2;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(280px, 330px);
  gap: clamp(34px, 5vw, 56px);
  align-items: start;
  justify-content: center;
}

.story-copy,
.story-support {
  background: transparent;
}

.story-copy {
  padding: 0;
}

.story-copy p {
  margin: 0 0 20px;
  color: #1f334f;
  font-size: 17px;
  line-height: 1.78;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.story-support {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  padding: 26px;
  background: linear-gradient(135deg, #073f83, #082752);
  color: #ffffff;
}

.story-support h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.story-support p {
  margin: 0;
  color: #e6f3ff;
  font-size: 16px;
  line-height: 1.58;
}

.story-side-note {
  position: sticky;
  top: 110px;
  padding: 24px 0 0;
  border-top: 4px solid var(--teal);
}

.story-side-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
}

.story-side-note p {
  margin: 0;
  color: #253b5d;
  font-size: 16px;
  line-height: 1.65;
}

.story-closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(980px, 100%);
  margin: 42px auto 0;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  background: linear-gradient(135deg, #073f83, #082752);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 88, 214, 0.16);
}

.story-closing-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.story-closing-cta p {
  max-width: 700px;
  margin: 10px 0 0;
  color: #e6f3ff;
  font-size: 16px;
  line-height: 1.55;
}

.story-cta-actions {
  display: grid;
  gap: 12px;
}

.about-page {
  margin-top: 26px;
}

.about-founder-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid #bcd3eb;
  border-top: 5px solid var(--coral);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff, #f1f8ff),
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.16), transparent 34%);
  box-shadow: 0 20px 48px rgba(7, 88, 214, 0.1);
}

.about-founder-card p {
  margin: 0;
  color: #253b5d;
  font-size: 16px;
  line-height: 1.6;
}

.about-founder-card p strong {
  color: var(--teal);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.38fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.about-story-copy {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid #c7d9ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 88, 214, 0.08);
}

.about-story-copy h2,
.about-help-card span,
.about-values h2,
.contact-hero h1,
.contact-card h2,
.contact-cta h2 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.about-story-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.about-story-copy p {
  margin: 0 0 18px;
  color: #1f334f;
  font-size: 17px;
  line-height: 1.72;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
  color: var(--teal);
  font-weight: 900;
}

.about-help-card {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #073f83, #082752);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 88, 214, 0.16);
}

.about-help-card span {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.08;
}

.about-help-card p {
  margin: 0;
  color: #e6f3ff;
  font-size: 16px;
  line-height: 1.58;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-values article {
  padding: 24px;
  border: 1px solid #c7d9ee;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.about-values h2 {
  font-size: 25px;
  line-height: 1.12;
}

.about-values p {
  margin: 12px 0 0;
  color: #253b5d;
  font-size: 15px;
  line-height: 1.58;
}

.about-editorial-page {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 64px;
  padding: clamp(38px, 5vw, 58px) 0 0;
}

.about-editorial-hero {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 28px;
}

.about-editorial-hero h1 {
  max-width: 820px;
  margin: 0 0 24px;
  color: #1b3fa0;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-editorial-lede {
  max-width: 590px;
  margin: 0;
  color: #253b5d;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.creator-card {
  align-self: start;
  padding: 26px;
  border: 1px solid #e5ebf5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(15, 31, 61, 0.05);
}

.creator-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.creator-avatar {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
}

.creator-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.1;
}

.creator-head p,
.creator-cred,
.creator-quote,
.creator-stats {
  margin: 0;
  color: #253b5d;
  font-size: 15px;
  line-height: 1.58;
}

.creator-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.creator-cred {
  color: #1b3fa0;
  font-weight: 800;
  white-space: nowrap;
}

.creator-family-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 18px 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
}

.creator-credentials {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid #ffd7bd;
  border-left: 6px solid #f26b1f;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff7ed 0%, #fffdf9 100%);
  box-shadow: 0 8px 22px rgba(242, 107, 31, 0.1);
}

.creator-credentials-label {
  color: #c65312;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.creator-credentials p {
  margin: 0;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.35;
}

.creator-credentials strong {
  color: #1b3fa0;
  font-weight: 800;
  font-size: 17px;
}

.creator-quote {
  margin-top: 12px;
  color: #5a6b85;
  font-size: 14px;
  font-style: italic;
}

.about-divider {
  display: none;
}

.about-editorial-story {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr);
  gap: 48px;
  align-items: start;
  padding: 64px 56px;
  border-radius: 20px;
  background: #0f1f3d;
}

.about-story-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-story-card h2 {
  max-width: 660px;
  margin: 0 0 28px;
  color: #ffffff;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.about-story-card p {
  margin: 0 0 18px;
  color: #c9d4e8;
  font-size: 17px;
  line-height: 1.7;
}

.about-story-card p.opener::first-letter {
  float: left;
  padding: 6px 10px 0 0;
  color: #f8a56c;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 0.9;
}

.about-pullquote {
  margin: 28px 0;
  padding: 8px 0 8px 22px;
  border-left: 4px solid #f26b1f;
}

.about-pullquote p {
  margin: 0;
  color: #f8a56c;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.2vw, 26px);
  font-style: italic;
  line-height: 1.4;
}

.about-pullquote cite {
  display: block;
  margin-top: 10px;
  color: #c9d4e8;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-signature {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-signature p {
  margin-bottom: 18px;
}

.about-signature strong {
  color: #ffffff;
}

.promise-card {
  position: static;
  padding: 0 0 0 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.promise-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: 0;
}

.promise-card h2 span {
  color: #f8a56c;
}

.promise-card p {
  margin: 0 0 16px;
  color: #c9d4e8;
  font-size: 15px;
  line-height: 1.65;
}

.about-classroom-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
  margin-top: 44px;
  padding: 42px;
  border: 1px solid #dbe6f4;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 31, 61, 0.07);
}

.about-classroom-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 10px 28px rgba(15, 31, 61, 0.12);
}

.about-classroom-copy h2 {
  margin: 0 0 18px;
  color: #1b3fa0;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-classroom-copy .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff1e7;
  color: #c65312;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.about-classroom-copy p {
  margin: 0 0 16px;
  color: #253b5d;
  font-size: 16.5px;
  line-height: 1.68;
}

.about-classroom-callout {
  margin-top: 22px !important;
  padding: 22px 24px;
  border-left: 5px solid #f26b1f;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fafe 0%, #fff7f1 100%);
  color: #0f1f3d !important;
  font-size: 18px !important;
  line-height: 1.62 !important;
  box-shadow: 0 8px 24px rgba(242, 107, 31, 0.08);
}

.contact-page {
  width: min(1120px, calc(100% - 44px));
  margin: 34px auto 64px;
}

.contact-hero {
  max-width: 720px;
  margin-bottom: 26px;
}

.contact-hero h1 {
  max-width: 620px;
  margin: 8px 0 0;
  color: #1b3fa0;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
}

.contact-hero p {
  margin: 14px 0 0;
  color: #253b5d;
  font-size: 16px;
  line-height: 1.55;
}

.contact-hero .eyebrow {
  color: #5a6b85;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-bottom: 30px;
}

.contact-lane {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 32px;
  border: 1px solid #e5ebf5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(15, 31, 61, 0.06);
}

.contact-lane-dark {
  border-color: #1b3fa0;
  background: #1b3fa0;
  color: #ffffff;
}

.contact-pill {
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff1e8;
  color: #f26b1f;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-lane-dark .contact-pill {
  background: rgba(255, 241, 232, 0.12);
  color: #fff1e8;
}

.contact-lane h2,
.contact-section-heading h2,
.contact-form-intro h3 {
  margin: 0;
  color: #1b3fa0;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-section-heading h2 {
  font-size: 28px;
}

.contact-lane-dark h2 {
  color: #ffffff;
}

.contact-lane p,
.contact-lane li,
.contact-section-heading p,
.contact-form-intro p {
  margin: 0;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.55;
}

.contact-lane-dark p,
.contact-lane-dark li {
  color: #c9d4e8;
}

.contact-lane ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-lane li {
  position: relative;
  padding-left: 18px;
}

.contact-lane li::before {
  position: absolute;
  left: 0;
  color: #f26b1f;
  content: "\2713";
  font-weight: 900;
}

.contact-lane-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  margin-top: 4px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.contact-lane-cta-orange {
  background: #f26b1f;
  color: #ffffff;
}

.contact-lane-cta-white {
  background: #ffffff;
  color: #1b3fa0;
}

.contact-lane-dark .contact-support-note {
  margin-top: -6px;
  color: #8fa0bd;
  font-size: 12px;
  font-style: italic;
  line-height: 1.4;
}

.contact-accent {
  width: 40px;
  height: 3px;
  margin: 30px auto;
  border-radius: 999px;
  background: #f26b1f;
}

.contact-faq-section,
.contact-question-section {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-section-heading {
  display: grid;
  gap: 6px;
}

.contact-faq-card {
  border: 1px solid #e5ebf5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(15, 31, 61, 0.06);
}

.contact-faq-card article {
  padding: 18px 22px;
  border-bottom: 1px solid #e5ebf5;
  border-left: 3px solid transparent;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-faq-card article:last-child {
  border-bottom: 0;
}

.contact-faq-card article:hover {
  border-left-color: #f26b1f;
  background: #fffaf6;
}

.contact-faq-card h3 {
  margin: 0;
  color: #0f1f3d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-faq-card h3 span {
  margin-right: 6px;
  color: #f26b1f;
}

.contact-faq-card p {
  margin: 7px 0 0 25px;
  color: #5a6b85;
  font-size: 14px;
  line-height: 1.55;
}

.contact-form-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 38px;
  padding: 40px;
  border: 1px solid #e5ebf5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(15, 31, 61, 0.06);
}

.contact-form-intro {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-response-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px !important;
  color: #1c6b45 !important;
  font-size: 14px !important;
  font-weight: 700;
}

.contact-response-indicator span {
  position: relative;
  display: inline-flex;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1fb86a;
}

.contact-response-indicator span::after {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(31, 184, 106, 0.18);
  content: "";
  animation: contactPulse 1.8s ease-out infinite;
}

@keyframes contactPulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #0f1f3d;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5e0ee;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
}

.contact-form input,
.contact-form select {
  min-height: 44px;
  padding: 0 12px;
}

.contact-form textarea {
  padding: 12px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  padding: 14px 28px;
  font-size: 15px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.honeypot {
  display: none;
}

.contact-real-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  color: #253b5d !important;
  font-weight: 700 !important;
}

.contact-real-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
  accent-color: #f26b1f;
}

.contact-message {
  min-height: 22px;
  margin: 0;
  color: #5a6b85;
  font-size: 14px;
  line-height: 1.4;
}

.contact-message[data-type="success"] {
  color: #1c6b45;
}

.contact-message[data-type="error"] {
  color: #b53d1e;
}

.portal-coming-soon-body {
  background-color: #f2f6fb;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(242, 107, 31, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(27, 63, 160, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.portal-soon-shell {
  width: min(1120px, calc(100% - 44px));
  margin: 34px auto 64px;
}

.portal-soon-card {
  position: relative;
  overflow: hidden;
  padding: 64px 56px 52px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow:
    0 1px 3px rgba(15, 31, 61, 0.04),
    0 12px 40px rgba(15, 31, 61, 0.08);
}

.portal-soon-card::before,
.portal-soon-card::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.portal-soon-card::before {
  top: -88px;
  right: -72px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242, 107, 31, 0.16), transparent 68%);
}

.portal-soon-card::after {
  bottom: -90px;
  left: -78px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(27, 63, 160, 0.12), transparent 70%);
}

.portal-soon-card > * {
  position: relative;
  z-index: 1;
}

.portal-icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.portal-build-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  margin-bottom: 24px;
  padding: 9px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1e7 0%, #ffe0cc 100%);
  color: #b84c12;
  box-shadow: 0 4px 12px rgba(242, 107, 31, 0.15);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.portal-pulse-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f26b1f;
  box-shadow: 0 0 0 4px rgba(242, 107, 31, 0.2);
  animation: portalDotPulse 1.5s ease-in-out infinite;
}

.portal-gear-icon {
  color: #f26b1f;
  animation: portalGearSpin 4s linear infinite;
}

.portal-soon-intro {
  max-width: 820px;
}

.portal-soon-intro h1 {
  max-width: 760px;
  margin: 0;
  color: #1b3fa0;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.portal-soon-intro h1 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.portal-soon-intro h1 span::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 107, 31, 0.35), rgba(248, 165, 108, 0.35));
  content: "";
}

.portal-soon-intro p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #2c3e5c;
  font-size: 18px;
  line-height: 1.62;
}

.portal-progress {
  margin-top: 38px;
}

.portal-progress-labels {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: #5a6b85;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portal-progress-labels strong {
  color: #f26b1f;
}

.portal-progress-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e5ebf5;
}

.portal-progress-fill {
  position: relative;
  overflow: hidden;
  width: var(--portal-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f26b1f, #f8a56c);
  animation: portalProgressGlow 3s ease-in-out infinite;
}

.portal-progress-fill::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px;
  width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  content: "";
  animation: portalShimmer 2s linear infinite;
}

.portal-coming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.portal-coming-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #e5ebf5;
  border-radius: 14px;
  background: #ffffff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.portal-coming-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #1b3fa0, #f26b1f);
  content: "";
  transition: width 220ms ease;
}

.portal-coming-card:hover {
  transform: translateY(-4px);
  border-color: #f26b1f;
  box-shadow: 0 14px 32px rgba(15, 31, 61, 0.1);
}

.portal-coming-card:hover::before {
  width: 100%;
}

.portal-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #1b3fa0, #2d58c7);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(27, 63, 160, 0.25);
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.portal-coming-card h2 {
  margin: 0;
  color: #0f1f3d;
  font-size: 20px;
  line-height: 1.15;
}

.portal-coming-card p {
  margin: 12px 0 0;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.58;
}

.portal-why-callout {
  margin-top: 28px;
  padding: 24px 26px;
  border-left: 5px solid #f26b1f;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fafe 0%, #fff7f1 100%);
  box-shadow: 0 4px 16px rgba(242, 107, 31, 0.08);
}

.portal-callout-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b84c12;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portal-callout-eyebrow span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #f26b1f;
  color: #ffffff;
}

.portal-why-callout p {
  margin: 14px 0 0;
  color: #2c3e5c;
  font-size: 16px;
  line-height: 1.65;
}

.portal-signup-block {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 36px;
  padding: 56px 48px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(242, 107, 31, 0.28), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #0f1f3d 0%, #1b3fa0 100%);
  background-size: auto, 40px 40px, 40px 40px, auto;
  box-shadow: 0 16px 48px rgba(15, 31, 61, 0.25);
  color: #ffffff;
}

.portal-signup-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff1e7;
  color: #b84c12;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portal-signup-content h2 {
  max-width: 430px;
  margin: 0;
  color: #ffffff;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 400;
  line-height: 1.08;
}

.portal-signup-content h2 span {
  position: relative;
  display: inline-block;
  color: #f8a56c;
}

.portal-signup-content h2 span::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 7px;
  border-radius: 999px;
  background: rgba(242, 107, 31, 0.42);
  content: "";
}

.portal-signup-content p {
  max-width: 420px;
  margin: 14px 0 0;
  color: #c9d4e8;
  font-size: 15px;
  line-height: 1.55;
}

.portal-signup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.portal-signup-form input[type="email"] {
  min-height: 54px;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font: inherit;
  padding: 0 18px;
  outline: none;
}

.portal-signup-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.portal-signup-form button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f26b1f, #e55a0f);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(242, 107, 31, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  padding: 0 24px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.portal-signup-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(242, 107, 31, 0.35);
}

.portal-signup-form button:hover .portal-arrow {
  transform: translateX(4px);
}

.portal-arrow {
  transition: transform 180ms ease;
}

.portal-signup-message {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: #ffe0cc;
  font-size: 13px;
  line-height: 1.45;
}

.portal-signup-trust {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 16px 22px;
  margin-top: 4px;
  color: #c9d4e8;
  font-size: 13px;
}

.portal-signup-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.portal-signup-trust .portal-icon {
  color: #f8a56c;
}

.portal-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
  margin-top: 30px;
  color: #2c3e5c;
  font-size: 14px;
  font-weight: 800;
}

.portal-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.portal-trust-row i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #e5ebf5;
  border-radius: 10px;
  background: #ffffff;
  color: #1b3fa0;
  font-style: normal;
}

.portal-return-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 34px auto 0;
  color: #5a6b85;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 180ms ease,
    gap 180ms ease;
}

.portal-return-link:hover {
  gap: 12px;
  color: #1b3fa0;
}

@keyframes portalGearSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes portalDotPulse {
  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

@keyframes portalShimmer {
  to {
    left: calc(100% + 28px);
  }
}

@keyframes portalProgressGlow {
  50% {
    box-shadow: 0 0 18px rgba(242, 107, 31, 0.42);
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  font-weight: 800;
}

.legal-page {
  width: min(860px, calc(100% - 44px));
  margin: 34px auto 56px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 47, 130, 0.08);
}

.legal-page h1,
.legal-page h2 {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
}

.legal-page h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.legal-page h2 {
  margin: 28px 0 8px;
  font-size: 26px;
}

.legal-page p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.download-panel {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.download-panel h2 {
  margin-top: 0;
}

.download-list {
  display: grid;
  gap: 12px;
}

.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.download-row span {
  display: grid;
  gap: 4px;
}

.download-row strong {
  color: var(--ink);
}

.download-row small,
.download-note {
  color: var(--muted);
}

.download-row b {
  color: var(--teal);
  white-space: nowrap;
}

.modules-closing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1180px, calc(100% - 44px));
  margin: 30px auto 42px;
  padding: 30px 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #052f8f, #061936);
  color: var(--white);
}

.modules-closing h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.modules-closing p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.email-band {
  grid-template-columns: 88px 1fr minmax(360px, 0.8fr);
  margin-bottom: 40px;
}

.email-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
}

.email-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
}

.email-form input {
  min-height: 54px;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid #cbd5d8;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
}

.email-form small {
  color: var(--muted);
  font-size: 13px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: min(430px, 100vw);
  height: 100vh;
  padding: 24px;
  background: var(--white);
  box-shadow: -24px 0 60px rgba(7, 21, 34, 0.18);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer h2 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

#closeCart {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 28px;
  cursor: pointer;
}

#cartItems {
  display: grid;
  gap: 14px;
  min-height: 170px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

#cartItems li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
  font-size: 22px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

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

.blog-hero {
  display: grid;
  gap: 18px;
  width: min(1080px, calc(100% - 44px));
  margin: 34px auto 22px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(217, 242, 255, 0.88)),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 53, 0.16), transparent 34%);
  box-shadow: 0 22px 60px rgba(7, 88, 214, 0.1);
}

.blog-hero .eyebrow,
.blog-post .eyebrow {
  margin: 0;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero h1,
.blog-post h1 {
  max-width: 840px;
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.blog-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #253b5d;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
}

.blog-grid-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 54px;
}

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

.blog-card {
  display: grid;
  align-content: start;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid #c9dcf0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 88, 214, 0.08);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaf5ff;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.035);
}

.blog-card span {
  margin: 22px 24px 14px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0 24px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-card p {
  margin: 14px 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.text-link,
.back-link,
.related-posts a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link {
  align-self: end;
  margin: auto 24px 24px;
}

.blog-post {
  width: min(980px, calc(100% - 44px));
  margin: 34px auto 58px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid #c8d9ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(6, 63, 134, 0.08);
  color: #1f334f;
}

.blog-post .back-link {
  display: inline-flex;
  margin-bottom: 26px;
}

.blog-post h1 {
  margin-top: 12px;
}

.blog-post-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  margin: 0 calc(clamp(24px, 4vw, 46px) * -1) 34px;
  padding: 0 clamp(24px, 4vw, 46px) 34px;
  border-bottom: 1px solid #c8d9ec;
  background: #ffffff;
}

.blog-post-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #b8d2ee;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 88, 214, 0.12);
}

.blog-intent {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.blog-post h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

.blog-post p,
.blog-post li {
  font-size: 18px;
  line-height: 1.65;
}

.blog-post ol,
.blog-post ul {
  display: grid;
  gap: 12px;
  padding-left: 26px;
}

.blog-insight-box,
.blog-fun-fact,
.blog-relief-box,
.blog-blueprint-bridge,
.blog-test-section,
.blog-ai-prompt,
.blog-faq {
  margin: 34px 0;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid #c3d8ef;
  border-radius: 8px;
  background: #f7fbff;
}

.blog-insight-box h2,
.blog-relief-box h2,
.blog-blueprint-bridge h2,
.blog-test-section h2,
.blog-ai-prompt h2,
.blog-faq h2 {
  margin-top: 0;
}

.blog-relief-box {
  border-color: #b7d3f2;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.blog-relief-box p {
  margin-bottom: 0;
}

.blog-light-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  padding-left: 0 !important;
  list-style: none;
}

.blog-light-list li {
  min-height: 92px;
  padding: 18px;
  border: 1px solid #d4e3f4;
  border-radius: 8px;
  background: #ffffff;
  color: #10345f;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.blog-reference-figure {
  margin: 32px 0;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid #b8d2ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(6, 63, 134, 0.1);
}

.blog-reference-figure img {
  width: 100%;
  max-height: 520px;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.blog-reference-figure figcaption {
  margin-top: 12px;
  color: #42597a;
  font-size: 15px;
  line-height: 1.5;
}

.blog-reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 34px;
}

.blog-reference-grid div {
  padding: 20px;
  border: 1px solid #d4e3f4;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f6fbff);
}

.blog-reference-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 18px;
}

.blog-reference-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.blog-diagram-figure {
  margin: 34px 0;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid #b8d2ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(6, 63, 134, 0.1);
}

.blog-diagram-figure svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.blog-diagram-figure figcaption {
  margin-top: 12px;
  color: #42597a;
  font-size: 15px;
  line-height: 1.5;
}

.blog-diagram-figure figcaption strong {
  display: block;
  color: var(--teal);
  font-size: 16px;
}

.blog-reference-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin: 32px 0;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid #b8d2ee;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fcff, #ffffff);
  box-shadow: 0 18px 44px rgba(6, 63, 134, 0.08);
}

.blog-reference-visual {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #073b78, #0b5ed7);
  color: #ffffff;
}

.blog-reference-visual span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ff7633;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-reference-visual strong {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
}

.blog-reference-visual div {
  display: grid;
  gap: 8px;
}

.blog-reference-visual i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.blog-reference-visual i:nth-child(2) {
  width: 78%;
  background: rgba(255, 255, 255, 0.64);
}

.blog-reference-visual i:nth-child(3) {
  width: 56%;
  background: rgba(255, 255, 255, 0.46);
}

.blog-reference-panel figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  color: #1f334f;
  font-size: 18px;
  line-height: 1.6;
}

.blog-reference-panel figcaption strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 20px;
}

.blog-blueprint-bridge {
  border-color: #0b5ed7;
  background: linear-gradient(135deg, #073b78, #0b5ed7);
  color: #ffffff;
}

.blog-blueprint-bridge h2,
.blog-blueprint-bridge p {
  color: #ffffff;
}

.blog-blueprint-bridge .button {
  margin-top: 4px;
}

.blog-fun-fact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-color: #ffb07d;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.blog-fun-fact span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-fun-fact p {
  margin: 0;
  color: #183b68;
  font-weight: 800;
}

.blog-step-list {
  list-style: none;
  padding-left: 0 !important;
}

.blog-step-list li {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid #d4e3f4;
  border-radius: 8px;
  background: #ffffff;
}

.blog-step-list strong {
  color: var(--teal);
}

.blog-step-list span {
  color: #405878;
}

.blog-ai-prompt {
  border-color: #0b5ed7;
  background: #eef7ff;
}

.blog-ai-prompt p {
  margin-bottom: 0;
  color: #10345f;
  font-weight: 800;
}

.blog-faq {
  background: #ffffff;
}

.blog-faq details {
  border-top: 1px solid #d7e5f4;
  padding: 16px 0;
}

.blog-faq details:first-of-type {
  border-top: 0;
}

.blog-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.blog-faq p {
  margin: 10px 0 0;
}

.blog-cta-inline,
.blog-cta-final {
  margin: 30px 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid #b7d3f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 88, 214, 0.1);
}

.blog-cta-inline strong {
  color: var(--teal);
  font-size: 22px;
}

.blog-cta-inline p,
.blog-cta-final p {
  margin: 12px 0 20px;
}

.blog-cta-final {
  background: linear-gradient(135deg, #ffffff, #eef8ff);
}

.blog-cta-final h2 {
  margin-top: 0;
  color: var(--teal);
}

.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.related-posts {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.related-posts ul {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
  }

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

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

  .hero-products:not(.hero-video-panel) {
    grid-template-columns: 1fr 1fr;
  }

  .hero-video-panel {
    width: min(360px, 100%);
    justify-self: center;
  }

  .hero-logo-card {
    grid-column: 1 / -1;
    grid-row: auto;
    max-height: 300px;
    object-fit: contain;
  }

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

  .complete-bundle {
    grid-template-columns: 1fr;
  }

  .complete-bundle .button {
    justify-self: start;
  }

  .ai-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .module-list {
    grid-template-columns: 1fr;
  }

  .modules-hero,
  .all-modules-heading,
  .modules-closing,
  .modules-fit-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:nth-child(2),
  .product-card:last-child {
    padding: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .email-band {
    grid-template-columns: 72px 1fr;
  }

  .email-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    min-height: auto;
    padding: 8px 12px;
  }

  .brand {
    font-size: 25px;
  }

  .brand-logo {
    width: 94px;
    min-width: 94px;
  }

  .brand-logo img {
    max-height: 48px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 44px;
    height: 44px;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    padding: 7px 0;
    white-space: nowrap;
  }

  .header-actions {
    gap: 8px;
  }

  .bag-link {
    min-height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .bag-link span {
    min-width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .cart-button {
    width: 52px;
    height: 52px;
  }

  .hero {
    --hero-pad-x: 14px;
    --hero-pad-bottom: 16px;
    min-height: auto;
    width: min(100% - 18px, 1180px);
    margin-top: 10px;
    padding: 18px 14px 16px;
    gap: 16px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.02;
  }

  .hero-copy > p {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-coupon {
    margin-top: 10px;
    font-size: 13.5px;
  }

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

  .hero-actions .button {
    min-height: 46px;
    font-size: 15px;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .hero-proof {
    margin-top: 14px;
    padding: 12px 14px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 13.5px;
  }

  .trust-strip {
    margin-right: calc(var(--hero-pad-x) * -1);
    margin-bottom: calc(var(--hero-pad-bottom) * -1);
    margin-left: calc(var(--hero-pad-x) * -1);
    padding: 22px 18px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-products {
    min-height: auto;
    overflow: visible;
  }

  .hero-products:not(.hero-video-panel) {
    grid-template-columns: 1fr;
  }

  .sample-section {
    grid-template-columns: 1fr;
    width: min(100% - 18px, 1180px);
    margin-top: 10px;
    padding: 18px 14px;
  }

  .ai-support-strip {
    width: min(100% - 18px, 1180px);
    padding: 16px;
  }

  .sample-copy h2 {
    font-size: 28px;
  }

  .sample-video-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px;
  }

  .desk-visual {
    min-height: 180px;
  }

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

  .router-honesty-callout {
    padding: 20px;
  }

  .router-honesty-callout div {
    grid-template-columns: 1fr;
  }

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

  .hero-video-panel {
    width: 100%;
    padding: 14px;
  }

  .hero-video-copy strong {
    font-size: 22px;
  }

  .hero-video-frame {
    width: min(100%, 190px);
    aspect-ratio: 9 / 14;
    border-width: 4px;
  }

  .complete-bundle {
    width: min(100% - 24px, 1180px);
    margin-bottom: 24px;
  }

  .complete-bundle .button {
    width: 100%;
  }

  .hero-logo-card {
    max-height: 220px;
  }

  .hero-ai-card {
    width: 100%;
    margin: 0;
    padding: 16px;
  }

  .ai-message {
    padding: 14px;
    font-size: 14px;
  }

  .hero-module-card {
    max-height: 230px;
  }

  .tablet {
    width: 235px;
    height: 320px;
  }

  .standing {
    width: 150px;
    height: 260px;
    margin-left: -70px;
  }

  .cover h2 {
    font-size: 30px;
  }

  .cover span,
  .cover p {
    font-size: 9px;
  }

  .cover strong {
    font-size: 8px;
  }

  .products-section {
    width: min(100% - 24px, 1180px);
    padding: 28px 0;
  }

  .section-heading {
    display: grid;
    gap: 8px;
    align-items: start;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .product-image {
    min-height: 210px;
  }

  .mini-cover {
    width: 108px;
    height: 164px;
  }

  .mini-cover h2 {
    font-size: 20px;
  }

  .product-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .product-buy .button {
    width: 100%;
  }

  .price {
    font-size: 24px;
  }

  .bundle-band,
  .founder-story-band,
  .email-band {
    grid-template-columns: 1fr;
    margin-right: 18px;
    margin-left: 18px;
    padding: 24px;
  }

  .email-form {
    grid-template-columns: 1fr;
  }

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

  .module-list-item {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .modules-hero {
    width: min(100% - 24px, 1180px);
    margin-top: 16px;
    padding: 30px 18px 24px;
  }

  .modules-hero h1 {
    font-size: 34px;
  }

  .module-page-actions {
    display: grid;
  }

  .included-layer-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .included-layer-media img {
    min-height: 190px;
  }

  .included-lesson-list {
    grid-template-columns: 1fr;
  }

  .all-module-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .all-module-card a,
  .checkout-section,
  .checkout-product {
    grid-template-columns: 1fr;
  }

  .all-module-card a {
    gap: 16px;
  }

  .all-module-card h3 {
    font-size: 25px;
  }

  .all-module-card p {
    font-size: 16px;
  }

  .checkout-section {
    width: min(100% - 24px, 1180px);
    margin-top: 18px;
    margin-bottom: 32px;
  }

  .checkout-product {
    padding: 18px;
  }

  .bag-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .bag-item img {
    width: 76px;
    height: 62px;
  }

  .bag-item .text-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .checkout-product h1 {
    font-size: 34px;
  }

  .checkout-summary {
    padding: 18px;
  }

  .faq-section {
    width: min(100% - 24px, 1180px);
    margin-bottom: 30px;
  }

  .story-page {
    width: min(100% - 24px, 1120px);
    margin-top: 18px;
  }

  .story-hero {
    grid-template-columns: 1fr;
    padding: 22px;
    border: 1px solid #bcd3eb;
    border-radius: 8px;
  }

  .story-hero-lower {
    grid-template-columns: 1fr;
  }

  .about-story-grid,
  .about-editorial-hero,
  .about-editorial-story,
  .contact-grid,
  .contact-form-layout,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .about-help-card,
  .promise-card {
    position: static;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-editorial-page {
    width: min(100% - 24px, 1180px);
    padding-top: 28px;
  }

  .about-editorial-story {
    gap: 32px;
    padding: 32px 24px;
  }

  .about-classroom-section {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
    padding: 24px;
  }

  .about-editorial-hero h1 {
    font-size: 40px;
  }

  .about-story-card {
    padding: 0;
  }

  .about-story-card h2 {
    font-size: 30px;
  }

  .promise-card {
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .contact-page {
    width: min(100% - 24px, 1120px);
    margin-top: 20px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-lanes,
  .contact-form-card,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-lane,
  .contact-form-card,
  .contact-faq-card article {
    padding: 18px;
  }

  .contact-form button {
    width: 100%;
  }

  .portal-soon-shell {
    width: min(100% - 24px, 1120px);
    max-width: calc(100vw - 24px);
    margin-top: 18px;
    overflow: hidden;
  }

  .portal-soon-card {
    padding: 34px 20px;
  }

  .portal-coming-grid,
  .portal-signup-block,
  .portal-signup-form {
    grid-template-columns: 1fr;
  }

  .portal-signup-block {
    padding: 34px 22px;
  }

  .portal-signup-form button {
    width: 100%;
  }

  .portal-signup-trust,
  .portal-trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .portal-progress-labels {
    flex-wrap: wrap;
  }

  .portal-coming-card,
  .portal-why-callout,
  .portal-signup-block {
    min-width: 0;
  }

  .portal-soon-intro p,
  .portal-coming-card p,
  .portal-why-callout p,
  .portal-signup-content p {
    overflow-wrap: anywhere;
  }

  .founder-photo-card {
    align-items: flex-start;
  }

  .founder-photo-card img {
    width: 98px;
    height: 98px;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-support,
  .story-side-note {
    position: static;
  }

  .story-closing-cta {
    grid-template-columns: 1fr;
  }

  .faq-grid article {
    padding: 18px;
  }

  .legal-page {
    width: min(100% - 24px, 860px);
    margin-top: 18px;
    padding: 22px;
  }

  .legal-page h1 {
    font-size: 34px;
  }

  .modules-closing {
    margin-right: 18px;
    margin-left: 18px;
    padding: 26px;
  }

  .checkout-summary {
    position: static;
  }

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

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-hero,
  .blog-grid-section,
  .blog-post {
    width: min(100% - 28px, 100%);
  }

  .blog-hero {
    margin-top: 18px;
    padding: 28px 20px;
  }

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

  .blog-card {
    min-height: auto;
    padding: 0;
  }

  .blog-post-hero {
    grid-template-columns: 1fr;
    margin-right: calc(clamp(24px, 4vw, 46px) * -1);
    margin-left: calc(clamp(24px, 4vw, 46px) * -1);
  }

  .blog-post-hero img {
    order: -1;
  }

  .blog-fun-fact {
    grid-template-columns: 1fr;
  }

  .blog-light-list {
    grid-template-columns: 1fr;
  }

  .blog-reference-grid {
    grid-template-columns: 1fr;
  }

  .blog-reference-panel {
    grid-template-columns: 1fr;
  }

  .blog-post p,
  .blog-post li {
    font-size: 16px;
  }

  .blog-post h2 {
    font-size: 24px;
  }
}

@media (max-width: 880px) {
  body {
    overflow-x: hidden;
  }

  .refresh-container {
    width: auto;
    max-width: 1100px;
    margin-right: 16px;
    margin-left: 16px;
  }

  .refresh-hero-copy,
  .refresh-hero-side {
    min-width: 0;
  }

  .refresh-trust-bar {
    gap: 4px 10px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.35;
  }

  .refresh-trust-bar span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .refresh-trust-bar span + span::before {
    margin-right: 10px;
  }

  .refresh-hero {
    padding: 38px 0 42px;
  }

  .refresh-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .refresh-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 36px);
    overflow-wrap: anywhere;
  }

  .refresh-lead {
    max-width: 100%;
    font-size: 16px;
  }

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

  .refresh-benefits span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .refresh-visual {
    display: grid;
    gap: 14px;
    max-width: 420px;
    min-height: 0;
    margin: 0 auto;
  }

  .refresh-router-card,
  .refresh-ai-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
  }

  .refresh-router-card {
    height: auto;
    min-height: 170px;
  }

  .refresh-ai-card {
    box-shadow: 0 14px 28px rgba(15, 31, 61, 0.1);
  }

  .refresh-offer-card {
    min-width: 0;
  }

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

  .refresh-review-grid {
    grid-template-columns: 1fr;
  }

  .refresh-review-grid article,
  .refresh-reviews h2 {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px 10px;
    min-height: auto;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    padding: 14px 0 4px;
    overflow: visible;
    font-size: 14px;
    scrollbar-width: auto;
  }

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

  .nav a {
    padding: 12px 0;
    white-space: normal;
  }

  .nav a.active::after,
  .nav a:hover::after {
    bottom: 6px;
  }

  .nav-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0 12px;
    background: #d6deeb;
  }

  .nav .parent-login-link {
    width: 100%;
    padding: 12px 18px;
  }
}

@media (max-width: 520px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .refresh-container {
    width: min(calc(100vw - 28px), 362px);
    max-width: 362px;
    margin-right: auto;
    margin-left: auto;
  }

  .refresh-hero,
  .refresh-reviews,
  .router-strip,
  .refresh-help-built {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .refresh-hero h1 {
    font-size: 29px;
    line-height: 1.08;
  }

  .refresh-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .refresh-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .refresh-trust-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .refresh-trust-bar span + span::before {
    display: none;
  }

  .router-strip div div {
    gap: 8px;
  }

  .router-strip div div span {
    display: inline-flex;
    min-width: 0;
    max-width: 100%;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f2f7fd;
    overflow-wrap: anywhere;
    line-height: 1.25;
    white-space: normal;
  }

  .router-strip div div span:first-child {
    flex-basis: 100%;
    justify-content: center;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .nav {
    grid-row: 3;
  }
}


/* Free guide lead magnet */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot {
  display: none !important;
}

.free-guide-page {
  padding: 22px 0 56px;
  background: #f2f6fb;
}

.free-guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto 54px;
  padding: clamp(28px, 4.6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.98));
  box-shadow: 0 22px 60px rgba(7, 88, 214, 0.1);
}

.free-guide-copy h1,
.guide-section h2,
.guide-bill-section h2,
.guide-final-cta h2,
.guide-thanks-card h1,
.guide-next-card h2 {
  margin: 0;
  color: #1b3fa0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.free-guide-copy h1 {
  max-width: 690px;
  font-size: clamp(38px, 5vw, 64px);
}

.free-guide-subhead {
  max-width: 650px;
  margin: 18px 0 0;
  color: #253b5d;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
}

.guide-checklist {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid #e4edf8;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: #ffffff;
}

.guide-checklist p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: #253b5d;
  font-size: 16px;
  line-height: 1.4;
}

.guide-checklist span,
.guide-list-card li::before {
  color: #f26b1f;
  font-weight: 900;
}

.free-guide-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 24px;
}

.free-guide-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #cbd8ea;
  border-radius: 8px;
  background: #ffffff;
  color: #0f1f3d;
  font: inherit;
  font-size: 16px;
}

.free-guide-form input[type="email"]:focus {
  outline: 3px solid rgba(27, 63, 160, 0.14);
  border-color: #1b3fa0;
}

.free-guide-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.guide-form-message,
.guide-form-note {
  min-height: 18px;
  margin: 0;
  color: #5a6b85;
  font-size: 13px;
  line-height: 1.35;
}

.guide-form-note {
  margin-top: 10px;
}

.free-guide-preview {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.guide-cover-wrap {
  width: min(320px, 86vw);
  transform: rotate(5deg);
  filter: drop-shadow(0 24px 36px rgba(15, 31, 61, 0.2));
}

.guide-cover {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: #0f1f3d;
  box-shadow: 0 8px 24px rgba(15, 31, 61, 0.12);
}

.guide-badge,
.guide-list-label,
.guide-bill-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff1e7;
  color: #c65312;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.guide-section,
.guide-bill-section,
.guide-final-cta,
.guide-thanks-card,
.guide-next-card {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto 54px;
}

.guide-section-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.guide-section-heading.compact {
  margin-bottom: 22px;
}

.guide-section h2,
.guide-bill-section h2,
.guide-final-cta h2,
.guide-next-card h2 {
  font-size: clamp(30px, 3.4vw, 42px);
}

.guide-section-heading p,
.guide-bill-section p,
.guide-next-card p {
  margin: 14px 0 0;
  color: #253b5d;
  font-size: 18px;
  line-height: 1.65;
}

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

.guide-card-grid article,
.guide-list-card,
.guide-next-card {
  padding: 24px;
  border: 1px solid #dbe6f4;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(15, 31, 61, 0.06);
}

.guide-card-grid h3 {
  margin: 0;
  color: #0f1f3d;
  font-size: 19px;
  line-height: 1.25;
}

.guide-inside-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.guide-list-card {
  display: grid;
  gap: 18px;
}

.guide-list-card.orange {
  border-left: 4px solid #f26b1f;
}

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

.guide-list-card li {
  position: relative;
  padding-left: 24px;
  color: #253b5d;
  font-size: 16px;
  line-height: 1.45;
}

.guide-list-card li::before {
  position: absolute;
  left: 0;
  content: "\2713";
}

.guide-bill-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 36px;
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 31, 61, 0.07);
}

.guide-bill-section .creator-card {
  margin: 0;
}

.guide-bill-eyebrow {
  margin-bottom: 14px;
}

.guide-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 5vw, 52px);
  border-radius: 12px;
  background: linear-gradient(135deg, #0f1f3d 0%, #1b3fa0 100%);
  box-shadow: 0 16px 42px rgba(15, 31, 61, 0.22);
}

.guide-final-cta h2 {
  color: #ffffff;
}

.guide-final-cta p {
  margin: 12px 0 0;
  color: #c9d4e8;
  font-size: 18px;
  line-height: 1.5;
}

.dark-form {
  margin-top: 0;
}

.dark-note {
  color: #c9d4e8;
}

.guide-thanks-page {
  padding: 34px 0 64px;
  background: #f2f6fb;
}

.guide-thanks-card {
  display: grid;
  justify-items: center;
  max-width: 820px;
  padding: clamp(34px, 6vw, 70px) clamp(24px, 5vw, 60px);
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 18px 44px rgba(15, 31, 61, 0.08);
}

.guide-check-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #e7f8ef;
  color: #138a47;
}

.guide-check-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.guide-thanks-card h1 {
  font-size: clamp(36px, 4.8vw, 58px);
}

.guide-thanks-card p {
  max-width: 560px;
  margin: 14px 0 26px;
  color: #253b5d;
  font-size: 18px;
  line-height: 1.55;
}

.guide-next-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 940px;
}

@media (max-width: 880px) {
  .nav-free-guide {
    justify-content: flex-start;
  }

  .free-guide-hero,
  .guide-inside-grid,
  .guide-bill-section,
  .guide-final-cta {
    grid-template-columns: 1fr;
  }

  .free-guide-preview {
    grid-row: 1;
  }

  .guide-cover-wrap {
    width: min(245px, 72vw);
    transform: rotate(3deg);
  }

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

  .guide-next-card {
    display: grid;
  }
}

@media (max-width: 520px) {
  .free-guide-page,
  .guide-thanks-page {
    padding-top: 12px;
  }

  .free-guide-hero,
  .guide-section,
  .guide-bill-section,
  .guide-final-cta,
  .guide-thanks-card,
  .guide-next-card {
    width: min(100% - 18px, 1120px);
  }

  .free-guide-hero,
  .guide-bill-section,
  .guide-final-cta,
  .guide-thanks-card,
  .guide-next-card {
    padding: 22px 16px;
  }

  .free-guide-copy h1 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .free-guide-subhead,
  .guide-section-heading p,
  .guide-bill-section p,
  .guide-final-cta p,
  .guide-thanks-card p {
    font-size: 16px;
  }

  .guide-checklist {
    padding: 16px;
  }

  .free-guide-form input[type="email"],
  .free-guide-form .button {
    min-height: 50px;
  }
}





.modules-ai-demo-wrap {
  width: min(1120px, calc(100% - 44px));
  margin: 58px auto 64px;
}

.modules-demo-heading {
  max-width: 780px;
  margin: 0 auto 12px;
  text-align: center;
}

.modules-demo-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff1e7;
  color: #c65312;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.modules-demo-heading h2 {
  margin: 0;
  color: #1b3fa0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.modules-demo-heading p {
  max-width: 720px;
  margin: 12px auto 0;
  color: #253b5d;
  font-size: 18px;
  line-height: 1.55;
}

.modules-ai-demo {
  width: 100%;
  margin: 0;
  grid-template-columns: 1fr;
  gap: 22px;
}

.modules-ai-demo .sample-video {
  grid-column: 1 / -1;
  width: 100%;
}

.modules-ai-demo .sample-video-stage {
  display: block;
  min-height: 340px;
  padding: clamp(22px, 3.2vw, 38px);
}

.modules-ai-demo .sample-video-bar {
  justify-content: flex-end;
}

.modules-ai-demo .chat-preview {
  width: min(700px, 100%);
  min-height: 285px;
  margin: 0 auto;
  padding-bottom: 0;
}

.modules-ai-demo .chat-line {
  max-width: min(92%, 580px);
  padding: 13px 16px;
  font-size: 15px;
  line-height: 1.42;
}

.modules-ai-demo .router-upload {
  width: min(92%, 360px);
}

@media (max-width: 720px) {
  .modules-ai-demo-wrap {
    width: min(100% - 18px, 1120px);
    margin: 34px auto 42px;
  }

  .modules-demo-heading {
    margin-bottom: 10px;
  }

  .modules-demo-heading p {
    font-size: 16px;
  }

  .modules-ai-demo .sample-video-stage {
    min-height: auto;
    padding: 16px;
  }

  .modules-ai-demo .chat-preview {
    min-height: 360px;
  }

  .modules-ai-demo .chat-line {
    max-width: 100%;
    padding: 10px 12px;
    font-size: 13px;
  }
}
