/* ==============================
   ETX / Yugo Ashi Landing Page
   Step 2: CSS Only
   ============================== */

/* ---------- CSS Reset ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #070707;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ---------- Theme Variables ---------- */

:root {
  --black: #070707;
  --black-2: #0c0c0f;
  --charcoal: #141418;
  --charcoal-2: #1b1b22;
  --card: rgba(255, 255, 255, 0.055);
  --card-border: rgba(255, 255, 255, 0.1);

  --white: #ffffff;
  --text: #f5f5f5;
  --muted: #b8b8c2;
  --soft-muted: #8e8e99;

  --red: #e12121;
  --red-dark: #9f1010;
  --gold: #f4bd4f;
  --gold-2: #d69623;

  --success: #31d07d;
  --danger: #ff4d4d;

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --glow-red: 0 0 35px rgba(225, 33, 33, 0.32);
  --glow-gold: 0 0 35px rgba(244, 189, 79, 0.22);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1180px;
  --narrow: 860px;

  --section-padding: 72px 0;
}

/* ---------- Base Utilities ---------- */

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow-container {
  width: min(100% - 32px, var(--narrow));
  margin-inline: auto;
}

.center {
  text-align: center;
}

.skip-link {
  position: absolute;
  top: -999px;
  left: 16px;
  z-index: 999;
  background: var(--gold);
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

section {
  position: relative;
  padding: var(--section-padding);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
}

.section-heading h2 {
  margin-top: 8px;
}

.section-heading p {
  margin-top: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 999px;
}

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5.25rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.45rem);
}

h3 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

p {
  color: var(--muted);
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(244, 189, 79, 0.45);
  outline-offset: 4px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: var(--glow-red);
}

.btn-primary:hover {
  box-shadow: 0 0 42px rgba(225, 33, 33, 0.48);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(244, 189, 79, 0.34);
}

.btn-secondary:hover {
  background: rgba(244, 189, 79, 0.1);
  border-color: rgba(244, 189, 79, 0.6);
  box-shadow: var(--glow-gold);
}

.btn-header {
  min-height: 42px;
  padding: 10px 16px;
  background: rgba(225, 33, 33, 0.16);
  border-color: rgba(225, 33, 33, 0.36);
  color: var(--white);
}

.btn-plan {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: var(--glow-gold);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 7, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-logo,
.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-name {
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

/* ---------- Hero ---------- */

.hero-section {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 78px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(225, 33, 33, 0.22), transparent 32%),
    radial-gradient(circle at bottom right, rgba(244, 189, 79, 0.16), transparent 30%),
    linear-gradient(180deg, #09090c 0%, #070707 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero-content .eyebrow {
  margin-bottom: 16px;
}

.hero-subtitle {
  margin-top: 22px;
  max-width: 680px;
  color: #eeeeee;
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
}

.hero-description {
  margin-top: 18px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust-list li {
  padding: 9px 13px;
  border: 1px solid rgba(244, 189, 79, 0.22);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.mockup-card {
  position: relative;
  padding: 10px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(244, 189, 79, 0.28), rgba(225, 33, 33, 0.22)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow), var(--glow-red);
}

.mockup-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(225, 33, 33, 0.28), transparent 62%);
  filter: blur(20px);
}

.hero-image,
.solution-visual img,
.course-visual img,
.mentoring-visual img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

/* ---------- Video ---------- */

.video-section {
  background: var(--black);
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 189, 79, 0.2);
  background: #000;
  box-shadow: var(--shadow);
}

.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

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

.video-cta {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: var(--card);
}

/* ---------- Two Column Layout ---------- */

.two-column {
  display: grid;
  gap: 34px;
  align-items: center;
}

/* ---------- Problem ---------- */

.problem-section {
  background:
    radial-gradient(circle at top right, rgba(225, 33, 33, 0.14), transparent 35%),
    var(--black-2);
}

.problem-content > p {
  margin-bottom: 24px;
}

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

.problem-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #eeeeee;
  font-weight: 700;
}

.problem-card::before {
  content: "✦";
  color: var(--gold);
  margin-right: 8px;
}

/* ---------- Solution ---------- */

.solution-section {
  background:
    radial-gradient(circle at bottom left, rgba(244, 189, 79, 0.1), transparent 32%),
    var(--black);
}

.solution-content p {
  margin-top: 16px;
}

.solution-content .btn {
  margin-top: 26px;
}

/* ---------- Benefits ---------- */

.benefits-section {
  background: var(--black-2);
}

.benefits-grid,
.features-grid,
.proof-grid,
.pricing-grid,
.process-steps {
  display: grid;
  gap: 18px;
}

.benefit-card,
.feature-item,
.testimonial-card,
.pricing-card,
.process-step {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.benefit-card::before,
.feature-item::before,
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0.8;
}

.benefit-card p,
.feature-item p,
.process-step p {
  margin-top: 12px;
}

/* ---------- Features ---------- */

.features-section {
  background:
    radial-gradient(circle at top center, rgba(225, 33, 33, 0.12), transparent 36%),
    var(--black);
}

.section-cta {
  margin-top: 30px;
}

/* ---------- Proof ---------- */

.proof-section {
  background: var(--black-2);
}

.testimonial-card p {
  color: #e7e7e7;
  font-size: 1.02rem;
}

.testimonial-card h3 {
  margin-top: 18px;
  font-size: 1.1rem;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
}

.result-disclaimer {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(244, 189, 79, 0.08);
  color: #d7d7d7;
  font-size: 0.92rem;
}

/* ---------- Promo ---------- */

.promo-section {
  background:
    linear-gradient(135deg, rgba(225, 33, 33, 0.2), rgba(244, 189, 79, 0.08)),
    var(--black);
}

.promo-container {
  display: grid;
  gap: 28px;
  align-items: center;
}

.promo-content p {
  margin-top: 14px;
  max-width: 660px;
}

.countdown-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(244, 189, 79, 0.22);
  box-shadow: var(--shadow), var(--glow-gold);
}

.countdown-label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0 22px;
}

.countdown-item {
  padding: 14px 10px;
  text-align: center;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.countdown-item span {
  display: block;
  color: var(--white);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.countdown-item small {
  display: block;
  margin-top: 6px;
  color: var(--soft-muted);
  font-weight: 800;
}

/* ---------- Pricing ---------- */

.pricing-section {
  background: var(--black-2);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.featured-plan {
  border-color: rgba(244, 189, 79, 0.48);
  box-shadow: var(--shadow), var(--glow-gold);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-header p {
  margin-top: 10px;
}

.plan-price {
  margin: 22px 0;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(225, 33, 33, 0.1);
  border: 1px solid rgba(225, 33, 33, 0.22);
}

.price-placeholder {
  color: var(--gold);
  font-weight: 950;
  font-size: 1.1rem;
}

.plan-features {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.plan-features li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.pricing-card .btn {
  margin-top: auto;
}

/* ---------- Process ---------- */

.process-section {
  background:
    radial-gradient(circle at top left, rgba(244, 189, 79, 0.1), transparent 34%),
    var(--black);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(225, 33, 33, 0.16);
  border: 1px solid rgba(225, 33, 33, 0.35);
  color: var(--gold);
  font-weight: 950;
}

/* ---------- Course / Mentoring ---------- */

.course-section {
  background: var(--black-2);
}

.mentoring-section {
  background: var(--black);
}

.course-content p,
.mentoring-content p {
  margin-top: 14px;
}

.course-content h3,
.mentoring-content h3 {
  margin-top: 22px;
  color: var(--gold);
}

.course-content .btn,
.mentoring-content .btn {
  margin-top: 24px;
}

/* ---------- FAQ ---------- */

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

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

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--card-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  color: var(--white);
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-question::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ---------- Final CTA ---------- */

.final-cta-section {
  background:
    radial-gradient(circle at center, rgba(225, 33, 33, 0.22), transparent 38%),
    linear-gradient(180deg, #111116, #070707);
}

.final-cta-section p {
  margin-top: 16px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- Disclaimer ---------- */

.disclaimer-section {
  padding: 38px 0;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer-section h2 {
  font-size: 1.25rem;
  color: var(--gold);
}

.disclaimer-section p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--soft-muted);
}

/* ---------- Sticky Mobile CTA ---------- */

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 12px 16px;
  background: rgba(7, 7, 7, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.sticky-mobile-cta .btn {
  width: 100%;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 46px 0 92px;
  background: #050505;
}

.footer-container {
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand p {
  max-width: 360px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

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

.footer-contact p {
  font-size: 0.92rem;
}

/* ---------- Tablet ---------- */

@media (min-width: 640px) {
  .hero-actions,
  .final-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .video-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .countdown-timer {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-grid,
  .features-grid,
  .proof-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ---------- Desktop ---------- */

@media (min-width: 900px) {
  :root {
    --section-padding: 96px 0;
  }

  .main-nav {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .two-column {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .reverse-mobile {
    direction: ltr;
  }

  .benefits-grid,
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .promo-container {
    grid-template-columns: 1fr 430px;
  }

  .sticky-mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 46px;
  }
}

/* ---------- Large Desktop ---------- */

@media (min-width: 1180px) {
  .hero-visual {
    transform: perspective(1000px) rotateY(-5deg);
  }

  .featured-plan {
    transform: translateY(-14px);
  }
}

/* ---------- Small Mobile Tweaks ---------- */

@media (max-width: 420px) {
  .container,
  .narrow-container {
    width: min(100% - 24px, var(--container));
  }

  .site-header .btn-header {
    display: none;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .hero-section {
    padding-top: 54px;
  }

  .btn {
    width: 100%;
  }

  .hero-trust-list li {
    width: 100%;
    text-align: center;
  }

  .countdown-item span {
    font-size: 1.65rem;
  }
}