:root {
  --ink: #0c0a06;
  --fire: #e8660a;
  --cream: #f5f0e8;
  --warm-grey: #7a7265;
  --light-border: #ddd6c8;
  --dark-card: #141210;
  --fire-dim: rgba(232, 102, 10, 0.12);
  --fire-border: rgba(232, 102, 10, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "EB Garamond", Georgia, serif;
  background: var(--ink);
  color: white;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITY ─── */
.fire {
  color: var(--fire);
}

.cream {
  color: var(--cream);
}

.muted {
  color: var(--warm-grey);
}

.serif-italic {
  font-style: italic;
}

.caps {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

/* ─── ANNOUNCEMENT BAR ─── */
.bar {
  background: var(--fire);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.82rem;
  font-family: "EB Garamond", Georgia, serif;
  letter-spacing: 0.04em;
  color: white;
  position: relative;
  overflow: hidden;
}

.bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.06) 40px,
    rgba(255, 255, 255, 0.06) 41px
  );
}

.bar span {
  position: relative;
}

/* ─── NAV ─── */
nav {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-badge {
  background: var(--fire);
  color: white;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.logo-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.nav-cta {
  background: var(--fire);
  color: white;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: 0.03em;
}

.nav-cta:hover {
  opacity: 0.88;
}

/* ─── SECTION WRAPPER ─── */
.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HERO ─── */
.hero {
  background: var(--ink);
  padding: 60px 24px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  font-size: clamp(140px, 30vw, 260px);
  font-weight: 800;
  color: var(--fire);
  opacity: 0.035;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  font-family: "EB Garamond", Georgia, serif;
  letter-spacing: -6px;
}

.hero-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--fire-border);
  background: var(--fire-dim);
  color: var(--fire);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  background: var(--fire);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

h1 {
  font-family: "EB Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(42px, 9vw, 76px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(17px, 3.5vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-meta {
  font-size: 0.82rem;
  color: var(--warm-grey);
  font-style: italic;
  margin-bottom: 36px;
}

/* CTA block */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--fire);
  color: white;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 18px 32px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition:
    transform 0.15s,
    opacity 0.15s;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-primary-note {
  font-size: 0.78rem;
  opacity: 0.7;
  font-weight: 400;
  display: block;
  margin-top: 4px;
  font-style: italic;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.96rem;
  padding: 14px 32px;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition:
    border-color 0.15s,
    color 0.15s;
}

.btn-secondary:hover {
  border-color: var(--fire);
  color: var(--fire);
}

/* Hero bottom divider */
.hero-rule {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 -24px;
  position: relative;
}

.hero-rule-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-rule-bar {
  height: 4px;
  background: var(--fire);
  width: 80px;
}

/* ─── TRUST STRIP ─── */
.trust {
  background: var(--fire);
  padding: 16px 24px;
}

.trust-inner {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  font-size: 0.82rem;
  color: white;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.trust-item::before {
  content: "✦";
  font-size: 0.6rem;
  opacity: 0.7;
}

/* ─── SECTION BASE ─── */
section {
  padding: 64px 24px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 8px;
  display: block;
}

.section-rule {
  width: 60px;
  height: 3px;
  background: var(--fire);
  margin: 16px 0 28px;
}

h2 {
  font-family: "EB Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

/* ─── AUTHORITY SECTION ─── */
.authority {
  background: #111009;
}

.authority-quote {
  border-left: 4px solid var(--fire);
  padding: 24px 28px;
  background: var(--dark-card);
  margin: 28px 0;
  border-radius: 0 3px 3px 0;
}

.authority-quote p {
  font-size: clamp(20px, 4vw, 30px);
  font-style: italic;
  line-height: 1.45;
  color: white;
  font-weight: 500;
}

.authority-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--warm-grey);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.cred-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.cred-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--fire);
}

.cred-card-num {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  color: var(--fire);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.cred-card-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* ─── PROBLEM SECTION ─── */
.problem {
  background: var(--cream);
  color: var(--ink);
}

.problem h2 {
  color: var(--ink);
}

.problem .section-label {
  color: var(--fire);
}

.problem .section-rule {
  background: var(--fire);
}

.problem p {
  font-size: clamp(17px, 3.2vw, 21px);
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.compare-table {
  margin: 32px 0;
  border: 1px solid var(--light-border);
  border-radius: 3px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--light-border);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row.header {
  background: var(--ink);
}

.compare-cell {
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #333;
}

.compare-cell:first-child {
  border-right: 1px solid var(--light-border);
}

.compare-row.header .compare-cell {
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-row:nth-child(even) .compare-cell {
  background: rgba(0, 0, 0, 0.03);
}

.highlight-cell {
  color: var(--fire) !important;
  font-weight: 600 !important;
}

/* ─── OFFER SECTION ─── */
.offer {
  background: var(--ink);
}

.offer-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.offer-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.offer-card-top {
  background: var(--dark-card);
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-step {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
}

.offer-price-badge {
  background: var(--fire);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.offer-price-badge.free {
  background: #1a5c1a;
}

.offer-card-body {
  padding: 20px 20px 24px;
}

.offer-card-title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.offer-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin-bottom: 16px;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid rgba(232, 102, 10, 0.4);
  color: var(--fire);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag.dark {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

/* ─── METHOD SECTION ─── */
.method {
  background: #111009;
}

.method-steps {
  margin-top: 28px;
}

.method-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  align-items: flex-start;
}

.method-step:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  font-family: "EB Garamond", Georgia, serif;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* Quality mark */
.quality-mark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--fire-border);
  padding: 20px;
  margin-top: 28px;
  border-radius: 3px;
  background: var(--fire-dim);
}

.qm-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.qm-label {
  color: var(--fire);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: 160px;
  flex-shrink: 0;
}

.qm-value {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: italic;
}

/* ─── JOURNEY SECTION ─── */
.journey {
  background: var(--cream);
  color: var(--ink);
}

.journey h2 {
  color: var(--ink);
}

.journey .section-label {
  color: var(--fire);
}

.journey .section-rule {
  background: var(--fire);
}

.journey-steps {
  margin-top: 24px;
}

.journey-step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-border);
}

.journey-step:last-child {
  border-bottom: none;
}

.journey-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 2px solid var(--fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fire);
}

.journey-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.journey-content p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* ─── PRICING ─── */
.pricing {
  background: var(--ink);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.price-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  overflow: hidden;
}

.price-card-head {
  background: var(--fire);
  padding: 14px 18px;
}

.price-card-head.alt {
  background: #1a1a14;
  border-bottom: 3px solid var(--fire);
}

.price-subject {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.price-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-top: 2px;
}

.price-card-body {
  padding: 18px;
}

.price-amount {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 800;
  color: var(--fire);
}

.price-period {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.price-features {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.price-feature {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.price-feature::before {
  content: "›";
  color: var(--fire);
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}

.pricing-free-note {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 20px;
  border-radius: 3px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-free-note strong {
  color: white;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--fire);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "tbk";
  position: absolute;
  font-size: 200px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: "EB Garamond", Georgia, serif;
  user-select: none;
}

.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(28px, 6vw, 50px);
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.5;
}

.final-btn {
  background: var(--ink);
  color: white;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 40px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.15s,
    opacity 0.15s;
  letter-spacing: 0.02em;
}

.final-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.final-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  border-top: 3px solid var(--fire);
  padding: 28px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 740px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fire);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--warm-grey);
  font-style: italic;
  margin: 8px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--fire);
}

.footer-copy {
  margin-top: 20px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ─── PHILOSOPHY STRIP ─── */
.philosophy {
  background: #111009;
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.philosophy-inner {
  max-width: 740px;
  margin: 0 auto;
}

.philosophy-text {
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  border-left: 3px solid var(--fire);
  padding-left: 22px;
  margin-bottom: 16px;
}

.philosophy-text strong {
  color: white;
  font-style: normal;
}

/* ─── FADE IN ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 500px) {
  .credential-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .compare-cell {
    font-size: 0.82rem;
    padding: 12px 12px;
  }

  h1 {
    letter-spacing: -0.8px;
  }

  .qm-label {
    width: auto;
  }

  .qm-row {
    flex-direction: column;
    gap: 2px;
  }

  
}

@media (min-width: 600px) {
  .offer-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.youtube-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;

    .youtube {
        width: 100%;
        height: 295px;
    }
}

@media screen and (max-width: 768px) {
    .youtube-container {
        display: grid;
        grid-template-columns: 1fr;
    }
}
