:root {
  --black: #070707;
  --ink: #0c0c0b;
  --charcoal: #11110f;
  --graphite: #191916;
  --graphite-2: #22211d;
  --line: rgba(232, 218, 190, 0.16);
  --text: #f5f0e8;
  --muted: #aaa39a;
  --muted-2: #79736b;
  --gold: #c9a46b;
  --gold-soft: #e3c58e;
  --danger: #e8a08d;
  --success: #c6d6aa;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, Avenir, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--text);
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 164, 107, 0.08), transparent 32rem),
    linear-gradient(180deg, #070707 0%, #11110f 44%, #070707 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: var(--black);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-symbol {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 164, 107, 0.62);
  color: var(--gold-soft);
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a,
.nav-auth-button {
  position: relative;
  padding: 0.5rem 0;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-auth-button {
  border: 1px solid rgba(201, 164, 107, 0.42);
  background: transparent;
  color: var(--gold-soft);
  padding: 0.65rem 0.85rem;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-auth-button:hover,
.nav-auth-button:focus-visible {
  border-color: var(--gold);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.menu-line {
  display: block;
  width: 18px;
  height: 1px;
  margin: 3px 0;
  background: currentColor;
}

.section-band {
  position: relative;
  border-bottom: 1px solid rgba(232, 218, 190, 0.08);
  scroll-margin-top: 86px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
  cursor: pointer;
}

.auth-shell {
  position: relative;
  width: min(520px, 100%);
  max-height: min(760px, calc(100svh - 3rem));
  overflow: auto;
  padding: clamp(1.4rem, 5vw, 2.3rem);
  border: 1px solid rgba(232, 218, 190, 0.2);
  background:
    linear-gradient(180deg, rgba(201, 164, 107, 0.1), rgba(255, 255, 255, 0)),
    #0b0b0a;
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.58);
}

.auth-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.auth-close:hover,
.auth-close:focus-visible {
  color: var(--text);
}

.auth-shell h2 {
  margin-bottom: 0.9rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.auth-copy {
  color: var(--muted);
  line-height: 1.7;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1.5rem 0 1rem;
  border: 1px solid var(--line);
}

.auth-tabs button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.auth-tabs button:last-child {
  border-right: 0;
}

.auth-tabs button.is-active {
  background: var(--gold);
  color: #11100d;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: min(860px, calc(100svh - 96px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.hero-bg,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 44%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0) 48%, #070707 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 3600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 4rem;
  align-items: end;
  padding: clamp(4.4rem, 7vw, 6.4rem) 0 clamp(2.4rem, 4vw, 3.4rem);
}

.hero-copy {
  max-width: 780px;
  color: var(--text);
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.72);
}

.hero-copy.reveal,
.hero-panel.reveal {
  opacity: 1;
  transform: none;
}

.brand-line,
.section-kicker,
.panel-topline,
.offer-card span,
.square-label,
.mini-label {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.4rem;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: clamp(3.9rem, 7.6vw, 7.7rem);
  font-weight: 400;
  line-height: 0.9;
  max-width: 920px;
}

.hero-subtitle {
  max-width: 620px;
  color: #d1c9bd;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2.2rem 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #11100d;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-soft);
}

.btn-secondary {
  border-color: rgba(245, 240, 232, 0.36);
  color: var(--text);
  background: rgba(7, 7, 7, 0.42);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
}

.pricing-note {
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.72);
  box-shadow: var(--shadow);
}

.panel-price {
  font-family: var(--serif);
  font-size: 5.2rem;
  line-height: 0.9;
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.panel-rule {
  width: 100%;
  height: 1px;
  margin: 1.4rem 0;
  background: var(--line);
}

.panel-small {
  margin-bottom: 0;
  font-size: 0.83rem;
}

.about,
.qa,
.offers {
  background: var(--charcoal);
}

.editorial-grid,
.faq-layout,
.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 8vw, 7rem);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.about .editorial-grid {
  padding-top: clamp(2.2rem, 5vw, 4.4rem);
}

.section-heading h2,
.center-heading h2,
.panel-heading h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.section-heading p,
.center-heading p,
.panel-heading p,
.editorial-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.editorial-copy {
  font-size: 1.06rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.stat-row div {
  padding: 1.2rem;
  background: #0c0c0b;
}

.stat-row span {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--text);
}

.stat-row small {
  color: var(--muted-2);
  line-height: 1.4;
}

.process,
.testimonials,
.signup,
.footer {
  background: var(--black);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0 3.2rem;
  text-align: center;
}

.center-heading p:last-child {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-card {
  min-height: 330px;
  padding: clamp(1.4rem, 3vw, 2.8rem);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.process-card:last-child {
  border-right: 0;
}

.process-card span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 1;
}

.process-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
}

.process-card p {
  color: var(--muted);
  line-height: 1.7;
}

.faq-layout {
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

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

details {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.36);
}

summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem 0.4rem;
  cursor: pointer;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

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

summary::after {
  content: "+";
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin: 0;
  padding: 0 0.4rem 1.4rem;
  color: var(--muted);
  line-height: 1.75;
}

.testimonial-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.quote-card {
  min-height: 300px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: #0d0d0c;
  transition: background 220ms ease, transform 220ms ease;
}

.quote-card.is-current {
  background:
    linear-gradient(180deg, rgba(201, 164, 107, 0.12), rgba(13, 13, 12, 0)),
    #11100e;
}

.quote-card p {
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.25;
}

.quote-card footer {
  margin-top: 2rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-controls {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.5rem 0 clamp(5rem, 9vw, 8rem);
}

.quote-dot {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(245, 240, 232, 0.22);
  cursor: pointer;
}

.quote-dot.is-active {
  background: var(--gold);
}

.signup-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.payment-panel {
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    #0d0d0c;
  box-shadow: var(--shadow);
}

.account-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  margin: 2rem 0 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.account-panel h3 {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 400;
}

.account-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.account-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.account-history {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 218, 190, 0.1);
}

.account-history ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.account-history li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.account-history strong {
  color: var(--text);
}

.checkout-summary {
  display: grid;
  gap: 0.7rem;
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.checkout-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-summary strong {
  color: var(--gold-soft);
}

.discount-line strong {
  color: var(--success);
}

.book-form {
  display: grid;
  gap: 0.75rem;
}

.book-form label,
.auth-form label,
.square-label {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-form input,
.book-form textarea,
.auth-form input,
.newsletter input {
  width: 100%;
  border: 1px solid rgba(232, 218, 190, 0.18);
  border-radius: 0;
  background: #070707;
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.book-form textarea {
  resize: vertical;
}

.book-form input:focus,
.book-form textarea:focus,
.auth-form input:focus,
.newsletter input:focus {
  border-color: rgba(201, 164, 107, 0.72);
  box-shadow: 0 0 0 3px rgba(201, 164, 107, 0.11);
}

.auth-form {
  display: grid;
  gap: 0.75rem;
}

.discount-field {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.discount-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.btn-compact {
  min-height: 48px;
  padding-inline: 1rem;
}

.field-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--muted-2);
  font-size: 0.86rem;
  line-height: 1.5;
}

.field-status.is-error {
  color: var(--danger);
}

.field-status.is-success {
  color: var(--success);
}

.square-block {
  margin: 0.8rem 0 0.4rem;
}

.card-container {
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(232, 218, 190, 0.18);
  background: #070707;
}

.card-help {
  margin: 0.65rem 0 0;
  color: var(--muted-2);
  font-size: 0.85rem;
  line-height: 1.5;
}

.btn-wide {
  width: 100%;
  margin-top: 0.7rem;
}

.btn[disabled] {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.signup-image {
  margin: 0;
  min-height: 720px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0c0c0b;
}

.signup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.offers .section-inner {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.offer-card {
  min-height: 280px;
  padding: 1.6rem;
  background: #0d0d0c;
}

.offer-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.7;
}

.offer-price {
  color: var(--gold-soft) !important;
}

.footer {
  padding-top: clamp(4rem, 8vw, 6rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer h2 {
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.7;
}

.footer a {
  display: block;
  margin: 0.45rem 0;
  transition: color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
}

.footer-brand p {
  max-width: 320px;
  margin-top: 1.4rem;
}

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.75rem;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 1rem;
}

.newsletter button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #11100d;
  padding: 0 1rem;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-shell {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 20px 1.3rem;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 7, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.9rem 0;
  }

  .nav-auth-button {
    width: 100%;
    margin-top: 0.5rem;
    text-align: left;
  }

  .hero-inner,
  .editorial-grid,
  .faq-layout,
  .signup-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero-panel {
    max-width: 460px;
  }

  .sticky-heading {
    position: static;
  }

  .process-grid,
  .testimonial-rail,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .signup-grid {
    gap: 2rem;
  }

  .payment-panel {
    order: 1;
  }

  .account-panel {
    grid-template-columns: 1fr;
  }

  .account-actions {
    align-items: stretch;
  }

  .signup-image {
    order: 2;
    min-height: 520px;
  }

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

@media (max-width: 640px) {
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.78) 45%, #070707 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.42));
  }

  .hero-inner {
    padding: 4.8rem 0 2.3rem;
  }

  h1 {
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

  .btn {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .discount-entry {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .center-heading h2,
  .panel-heading h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .panel-price {
    font-size: 4.2rem;
  }

  .signup-image {
    min-height: 420px;
  }

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

  .newsletter button {
    min-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Product-template refresh inspired by the supplied reference. */
:root {
  --black: #050505;
  --ink: #111111;
  --charcoal: #0b0b0b;
  --graphite: #1b1b1b;
  --line: rgba(12, 18, 18, 0.13);
  --text: #101112;
  --muted: #606367;
  --muted-2: #81858a;
  --gold: #ffffff;
  --gold-soft: #28d5bf;
  --accent: #25c978;
  --cyan: #21c6ca;
  --danger: #b63124;
  --success: #008d6e;
  --serif: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  --sans: Inter, Avenir, "Segoe UI", Arial, sans-serif;
}

html,
body {
  background: #fff;
  color: var(--text);
}

body {
  background: #fff;
}

body::before {
  display: none;
}

.site-header {
  background: #050505;
  border-bottom: 0;
  backdrop-filter: none;
}

.nav-shell {
  width: min(1220px, calc(100% - 64px));
  height: 64px;
}

.brand-mark {
  color: #fff;
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.brand-symbol {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.nav-links {
  gap: 2.15rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links a::after {
  background: #fff;
}

.nav-auth-button {
  background: #fff;
  color: #050505;
  border-color: #fff;
  padding: 0.78rem 1.05rem;
}

.section-band {
  border-bottom: 0;
}

.hero {
  min-height: calc(100svh - 64px);
  background:
    radial-gradient(circle at 72% 45%, rgba(255, 255, 255, 0.18), transparent 20rem),
    linear-gradient(120deg, #20c55e 0%, #20c97d 38%, #24c7d5 100%);
}

.hero-inner {
  grid-template-columns: minmax(430px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 2rem;
  padding: clamp(5.6rem, 8vw, 8.5rem) 0 clamp(4.5rem, 7vw, 6.5rem);
}

.hero-copy {
  color: #fff;
  text-shadow: none;
}

.brand-line,
.section-kicker,
.panel-topline,
.offer-card span,
.square-label,
.mini-label {
  color: inherit;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero .brand-line,
.pricing-note {
  color: #fff;
}

h1 {
  max-width: 650px;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(3.8rem, 6vw, 6.1rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.btn {
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
}

.btn-primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-secondary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.pricing-note {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero-product {
  position: relative;
  margin: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-product img {
  position: relative;
  right: auto;
  top: auto;
  width: min(820px, 100%);
  max-width: none;
  transform: rotate(-2deg);
  filter: drop-shadow(0 36px 42px rgba(0, 0, 0, 0.22));
  opacity: 1;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.hero-dots span:first-child {
  background: #fff;
}

.about,
.qa,
.offers,
.process,
.testimonials,
.signup {
  background: #fff;
}

.editorial-grid,
.faq-layout,
.signup-grid {
  width: min(1040px, calc(100% - 56px));
  padding: clamp(4.8rem, 8vw, 7.6rem) 0;
}

.product-split {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.92fr);
  align-items: center;
}

.product-split .section-product-image {
  grid-column: 1 / -1;
}

.section-heading h2,
.center-heading h2,
.panel-heading h2 {
  color: #1b1d20;
  font-family: var(--sans);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.center-heading p,
.panel-heading p,
.editorial-copy p {
  color: #5c6268;
  font-weight: 600;
  line-height: 1.7;
}

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

.section-product-image {
  margin: 2rem 0 0;
}

.section-product-image img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4.8rem, 8vw, 7.6rem) 0 0;
}

.feature-row .section-product-image {
  margin: 0;
}

.stat-row,
.process-grid,
.testimonial-rail,
.offer-grid {
  border-color: #e7e9eb;
  background: #e7e9eb;
}

.stat-row div,
.process-card,
.quote-card,
.offer-card,
.payment-panel {
  background: #fff;
}

.stat-row span,
.process-card span {
  color: #111;
  font-family: var(--sans);
  font-weight: 900;
}

.process-card {
  min-height: 300px;
  border-color: #e7e9eb;
}

.process-card h3,
.offer-card h3,
.quote-card p,
.account-panel h3 {
  color: #111;
  font-family: var(--sans);
  font-weight: 900;
}

.process-card p,
.offer-card p,
.quote-card footer,
.footer p,
.footer a {
  color: #62676d;
}

.center-heading {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

details {
  background: #fff;
  border-color: #e7e9eb;
}

summary {
  color: #111;
  font-family: var(--sans);
  font-weight: 900;
}

summary::after,
details p {
  color: #5c6268;
}

.quote-card.is-current {
  background: linear-gradient(180deg, rgba(34, 203, 198, 0.12), transparent), #fff;
}

.quote-card footer {
  color: var(--cyan);
}

.quote-dot {
  background: #dce2e3;
}

.quote-dot.is-active {
  background: var(--cyan);
}

.signup {
  background: #f6f8f8;
}

.signup-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
}

.payment-panel {
  border-color: #e0e5e6;
  box-shadow: 0 24px 80px rgba(15, 35, 43, 0.1);
}

.account-panel,
.checkout-summary {
  border-color: #e0e5e6;
}

.book-form label,
.auth-form label,
.square-label {
  color: #17191c;
}

.book-form input,
.book-form textarea,
.auth-form input,
.newsletter input,
.card-container {
  background: #fff;
  color: #111;
  border-color: #d9e1e2;
}

.book-form input:focus,
.book-form textarea:focus,
.auth-form input:focus,
.newsletter input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(33, 198, 202, 0.16);
}

.checkout-summary strong,
.field-status.is-success,
.form-status.is-success {
  color: var(--success);
}

.signup-image {
  min-height: 760px;
  border-color: #e0e5e6;
  background: #fff;
}

.signup-image img {
  object-position: center;
}

.footer {
  background: #050505;
  color: #fff;
}

.footer h2,
.footer .brand-mark {
  color: #fff;
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.15);
}

.auth-shell {
  background: #fff;
  color: #111;
  border-color: #d9e1e2;
}

.auth-shell h2,
.auth-copy {
  color: #111;
}

.auth-tabs {
  border-color: #d9e1e2;
}

.auth-tabs button {
  color: #111;
  border-color: #d9e1e2;
}

.auth-tabs button.is-active {
  background: #111;
  color: #fff;
}

.is-free-checkout .card-container {
  display: none;
}

.is-free-checkout .card-help {
  margin-top: 0;
  color: var(--success);
  font-weight: 800;
}

.reveal {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 980px) {
  .nav-shell {
    width: min(100% - 28px, 1220px);
  }

  .nav-links {
    background: #050505;
  }

  .hero-inner,
  .product-split,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 380px;
  }

  .hero-product img {
    position: relative;
    right: auto;
    top: auto;
    width: min(720px, 104%);
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 4.6rem 0 4rem;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

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

  .editorial-grid,
  .faq-layout,
  .signup-grid {
    width: min(100% - 28px, 1040px);
  }
}
