:root {
  --bg: #F5F2EC;
  --bg-alt: #EFEBE4;
  --fg: #0A0A0A;
  --fg-soft: #333;
  --muted: #777;
  --orange: #FF4F14;
  --orange-hover: #E8440E;
  --orange-soft: rgba(255,79,20,0.08);
  --card: #FFFFFF;
  --border: rgba(10,10,10,0.1);
  --border-strong: rgba(10,10,10,0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--fg);
  background: var(--bg);
  background-image: radial-gradient(circle, rgba(10,10,10,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.display { font-family: 'Bricolage Grotesque', sans-serif; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,242,236,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px; max-width: 1100px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center;
}
.logo-img {
  height: 48px; width: auto; display: block;
  border-radius: 4px;
}
.logo-img-sm {
  height: 40px;
}
.nav-cta {
  background: var(--fg); color: white;
  padding: 10px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange); }

/* ===== TAGS ===== */
.tag {
  display: inline-flex; align-items: center;
  padding: 7px 15px; border-radius: 100px;
  font-size: 13px; font-weight: 500; white-space: nowrap; line-height: 1;
}
.tag-black { background: var(--fg); color: white; }
.tag-orange { background: var(--orange); color: white; }
.tag-outline { background: transparent; color: var(--fg); border: 1px solid var(--border-strong); }
.tag-outline-o { background: transparent; color: var(--orange); border: 1px solid var(--orange); }

/* ===== SELECTION HANDLES ===== */
.selected {
  position: relative; display: inline; padding: 0 4px;
}
.selected::before {
  content: ''; position: absolute; inset: -6px -6px;
  border: 1.5px solid var(--fg); pointer-events: none;
}
.h { position: absolute; width: 10px; height: 10px; background: var(--fg); z-index: 2; }
.h.tl { top: -11px; left: -11px; }
.h.tr { top: -11px; right: -11px; }
.h.bl { bottom: -11px; left: -11px; }
.h.br { bottom: -11px; right: -11px; }

/* ===== CURSOR DECO ===== */
.cursor-inline {
  position: relative; display: inline-flex; flex-direction: column;
  align-items: flex-start; vertical-align: top;
  margin-left: 12px; top: 8px;
}
.cursor-inline svg {
  width: 22px; height: 22px; color: var(--orange);
}
.cursor-tag {
  background: var(--orange); color: white;
  padding: 5px 14px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0; line-height: 1.4;
  margin-left: 14px; margin-top: -2px;
  white-space: nowrap;
}

/* ===== HERO ===== */
.hero { padding: 48px 0 0; position: relative; }
.hero-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted); font-weight: 500;
  margin-bottom: 48px;
}
.hero-top .right { color: var(--orange); font-weight: 600; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7.5vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  max-width: 950px;
}
.hero-title .orange { color: var(--orange); }
.hero-title .sw {
  position: relative; display: inline-block; padding: 0 6px;
}
.hero-title .sw::before {
  content: ''; position: absolute; inset: -2px -2px;
  border: 1.5px solid var(--fg); pointer-events: none;
}
.hero-title .sw .h { width: 12px; height: 12px; }
.hero-title .sw .h.tl { top: -8px; left: -8px; }
.hero-title .sw .h.tr { top: -8px; right: -8px; }
.hero-title .sw .h.bl { bottom: -8px; left: -8px; }
.hero-title .sw .h.br { bottom: -8px; right: -8px; }

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--fg-soft); max-width: 580px;
  margin-bottom: 36px; line-height: 1.55;
}
.hero-sub strong { font-weight: 600; color: var(--fg); }

.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }

.cta-btn {
  background: var(--orange); color: white;
  padding: 18px 36px; border-radius: 100px;
  font-size: 16px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.2s, background 0.2s;
  border: none; cursor: pointer;
}
.cta-btn:hover { transform: translateY(-2px); background: var(--orange-hover); }
.cta-btn svg { width: 16px; height: 16px; }
.cta-btn.dark { background: var(--fg); }
.cta-btn.dark:hover { background: var(--orange); }

.price-inline {
  font-size: 14px; color: var(--muted); font-weight: 500;
}
.price-inline strong { color: var(--fg); font-weight: 700; font-size: 16px; }

/* ===== SCHEDULE BLOCK ===== */
.schedule-block {
  margin-top: 32px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 28px;
  display: inline-flex; gap: 32px; flex-wrap: wrap;
}
.schedule-item {
  display: flex; align-items: center; gap: 10px;
}
.schedule-icon { font-size: 16px; }
.schedule-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted);
}
.schedule-val {
  font-size: 15px; font-weight: 600; color: var(--fg);
}

/* ===== SECTION SHARED ===== */
section { padding: 80px 0; }
.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.sec-label::before {
  content: ''; width: 18px; height: 1px; background: var(--muted);
}
.sec-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.02; margin-bottom: 20px; max-width: 800px;
}
.sec-body {
  font-size: 17px; color: var(--fg-soft);
  max-width: 600px; line-height: 1.6;
}

/* ===== STORY CARD ===== */
.story-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; padding: 48px; position: relative; overflow: hidden;
}
.story-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle at 100% 0%, var(--orange-soft) 0%, transparent 70%);
}
.story-card .quote-mark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 72px; font-weight: 800; color: var(--orange);
  line-height: 0.6; margin-bottom: 16px; opacity: 0.3;
}
.story-card p {
  font-size: 18px; color: var(--fg-soft); line-height: 1.6;
  max-width: 640px; position: relative;
}
.story-card .punchline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--fg); margin-top: 20px; line-height: 1.15;
}

/* ===== FOR EVERYONE ===== */
.audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 40px;
}
.audience-chip {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 24px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.audience-chip:hover { border-color: var(--orange); transform: translateY(-2px); }
.audience-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; opacity: 0.6;
}
.audience-chip:hover .audience-dot { opacity: 1; }
.audience-cta {
  margin-top: 32px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--fg);
}
.audience-cta .orange { color: var(--orange); }

/* ===== HORMOZI QUOTE ===== */
.quote-section {
  background: var(--fg); color: white;
  border-radius: 28px; margin: 0 28px;
  padding: 64px 56px; position: relative; overflow: hidden;
}
.quote-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,79,20,0.35) 0%, transparent 70%);
  border-radius: 50%;
}
.quote-author {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 20px; position: relative;
}
.quote-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.1; max-width: 800px; position: relative;
}
.quote-text em { font-style: normal; color: var(--orange); }
.quote-follow {
  margin-top: 28px; font-size: 17px;
  color: rgba(255,255,255,0.7); max-width: 560px;
  line-height: 1.5; position: relative;
}

/* ===== QURATULAIN ===== */
.result-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; padding: 48px; position: relative; overflow: hidden;
}
.result-card .number-row {
  display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px;
}
.result-num {
  display: flex; flex-direction: column;
}
.result-num .label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px;
}
.result-num .val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px; font-weight: 700; letter-spacing: -0.03em;
  line-height: 1;
}
.result-num .val.green { color: #22863a; }
.result-num .val.orange { color: var(--orange); }
.result-card .story-body {
  font-size: 17px; color: var(--fg-soft); line-height: 1.6; max-width: 600px;
}
.result-card .story-body strong { color: var(--fg); font-weight: 600; }

/* ===== 6 TECHNIQUES ===== */
.techniques-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; padding: 56px; text-align: center;
}
.techniques-wrap .big-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--orange); line-height: 0.85; margin-bottom: 8px;
  opacity: 0.15;
}
.techniques-wrap .stat-line {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 12px; line-height: 1.1;
}
.techniques-wrap .stat-sub {
  font-size: 17px; color: var(--muted); max-width: 480px;
  margin: 0 auto; line-height: 1.5;
}
.lock-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin-top: 40px;
}
.lock-box {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: border-color 0.3s, transform 0.3s;
}
.lock-box:hover { border-color: var(--orange); transform: translateY(-3px); }
.lock-icon {
  width: 40px; height: 40px; background: var(--fg);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lock-box:hover .lock-icon { background: var(--orange); }
.lock-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.lock-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 600; color: var(--muted);
}

/* ===== CLOSE / OFFER ===== */
.close-section {
  background: var(--fg); color: white;
  border-radius: 28px; margin: 0 28px;
  padding: 72px 56px; text-align: center; position: relative; overflow: hidden;
}
.close-section::before {
  content: ''; position: absolute; bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(circle, rgba(255,79,20,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.close-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.05; max-width: 700px;
  margin: 0 auto 20px; position: relative;
}
.close-title .orange { color: var(--orange); }
.close-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--orange); margin: 20px 0 4px; position: relative;
}
.close-price-alt {
  font-size: 18px; color: rgba(255,255,255,0.5);
  font-weight: 500; margin-bottom: 20px; position: relative;
}
.close-easy {
  font-size: 18px; color: rgba(255,255,255,0.7);
  margin-bottom: 36px; position: relative;
  font-style: italic;
}
.close-section .cta-btn {
  position: relative; padding: 22px 48px; font-size: 18px;
}

/* ===== HOSTS ===== */
.hosts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.host-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; position: relative; overflow: hidden;
}
.host-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 100px; height: 100px;
  background: var(--orange); opacity: 0.05;
  border-radius: 0 0 0 100%;
}
.host-role {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 14px;
}
.host-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--fg); color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background-size: cover; background-position: center;
}
.host-avatar.hj {
  background: var(--orange);
}
.host-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 20px; line-height: 1;
}
.host-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.host-bio {
  font-size: 15px; color: var(--fg-soft); line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--fg); }
.faq-item summary {
  padding: 22px 26px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 26px; height: 26px; background: var(--bg-alt);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.25s, background 0.2s;
}
.faq-icon svg { width: 10px; height: 10px; fill: var(--fg); }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--orange); }
.faq-item[open] .faq-icon svg { fill: white; }
.faq-body {
  padding: 0 26px 24px; font-size: 15px;
  color: var(--muted); line-height: 1.6; max-width: 580px;
}

/* ===== COUNTDOWN ===== */
.countdown-section {
  padding: 100px 0; text-align: center;
}
.countdown-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700; letter-spacing: -0.035em;
  line-height: 1; margin-bottom: 40px;
}
.countdown-label .orange { color: var(--orange); }
.countdown-timer {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 44px;
}
.cd-block {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 24px; min-width: 90px;
  display: flex; flex-direction: column; align-items: center;
}
.cd-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 42px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; color: var(--fg);
}
.cd-unit {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-top: 6px;
}

/* ===== FOOTER ===== */
footer {
  padding: 32px 0; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .lock-grid { grid-template-columns: repeat(3, 1fr); }
  .hosts-grid { grid-template-columns: 1fr; }
  .quote-section, .close-section { margin: 0 16px; padding: 48px 32px; }
  .story-card, .result-card, .techniques-wrap { padding: 36px; }
  section { padding: 60px 0; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .audience-grid { grid-template-columns: 1fr; }
  .lock-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: clamp(34px, 9vw, 52px); }
  .cursor-inline { display: none; }
  .quote-section, .close-section { padding: 40px 24px; }
  .countdown-timer { gap: 10px; }
  .cd-block { padding: 16px 16px; min-width: 70px; }
  .cd-num { font-size: 32px; }
  .result-card .number-row { gap: 20px; }
  .result-num .val { font-size: 34px; }
  .nav-cta { display: none; }
  .logo-img { height: 34px; }
  .logo-img-sm { height: 28px; }
  .hero { padding: 32px 0 0; }
  .hero-top { margin-bottom: 32px; }
  .schedule-block { flex-direction: column; gap: 14px; }
}