:root {
  --bg: #08080e;
  --surface: #0f0f1a;
  --card: #161625;
  --accent: #6c5ce7;
  --accent2: #a29bfe;
  --orange: #f39c12;
  --gold: #f1c40f;
  --green: #00b894;
  --red: #e74c3c;
  --white: #f0f0f5;
  --gray: #7a7a90;
  --border: rgba(108, 92, 231, 0.15);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  padding-bottom: 100px;
}
h1,
h2,
h3,
h4 {
  font-family: "Unbounded", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 20px 20px;
  background: rgba(8, 8, 14, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.sticky-cta a {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  padding: 16px 32px;
  border-radius: 14px;
  font-family: "Unbounded";
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  box-shadow: 0 4px 30px rgba(108, 92, 231, 0.5);
  transition: all 0.3s;
  animation: btn-glow 2s ease-in-out infinite;
}
.sticky-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(108, 92, 231, 0.7);
}
@keyframes btn-glow {
  0%,
  100% {
    box-shadow: 0 4px 30px rgba(108, 92, 231, 0.5);
  }
  50% {
    box-shadow: 0 4px 40px rgba(108, 92, 231, 0.8);
  }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100svh; /* desktop */
  display: flex;
  align-items: center;
  padding: 40px 20px 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(108, 92, 231, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 40%), var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(108, 92, 231, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 92, 231, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text {
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.2);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 18px;
}
.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero h1 .hl-ai {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .hl-clients {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 22px;
}
.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Unbounded";
  font-size: 22px;
  font-weight: 800;
  color: var(--accent2);
}
.stat-lbl {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 14px;
  font-family: "Unbounded";
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  box-shadow: 0 4px 30px rgba(108, 92, 231, 0.4);
  transition: all 0.3s;
  margin-bottom: 14px;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(108, 92, 231, 0.7);
}

.hero-meta {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Hero photo */
.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 50px rgba(108, 92, 231, 0.3));
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 50% 60%, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
  z-index: -1;
  filter: blur(30px);
}

/* ============ SOCIAL PROOF BAR ============ */
.proof-bar {
  padding: 20px;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(0, 184, 148, 0.5);
  animation: pulse 1.5s infinite;
}

/* ============ COUNTDOWN ============ */
.cd-section {
  padding: 28px 20px;
  text-align: center;
}
.cd-label {
  font-family: "Unbounded";
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.cd-grid {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.cd-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 68px;
  padding: 14px 0;
}
.cd-num {
  font-family: "Unbounded";
  font-size: 26px;
  font-weight: 800;
  color: var(--accent2);
}
.cd-lbl {
  font-size: 9px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

/* ============ SECTIONS ============ */
section {
  padding: 50px 20px;
}
.s-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.2;
}
.s-title .hl {
  color: var(--accent2);
}

/* BONUS */
.bonus-card {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(0, 184, 148, 0.05));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.bonus-card .gift {
  color: var(--green);
  font-family: "Unbounded";
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.bonus-card p {
  font-size: 13px;
  color: var(--gray);
}

/* OCEAN */
.ocean-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.ocean-box p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}
.ocean-hl {
  font-family: "Unbounded";
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  background: rgba(0, 184, 148, 0.06);
  border: 1px solid rgba(0, 184, 148, 0.12);
  border-radius: 12px;
  padding: 14px 24px;
  display: inline-block;
  margin-top: 8px;
}

/* LEARN GRID */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.learn-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.learn-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.learn-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.learn-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.learn-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

/* TIMELINE */
.timeline {
  max-width: 650px;
  margin: 0 auto;
}
.tl-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(108, 92, 231, 0.08);
}
.tl-time {
  font-family: "Unbounded";
  font-size: 13px;
  font-weight: 700;
  color: var(--accent2);
  width: 60px;
  flex-shrink: 0;
  padding-top: 2px;
}
.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 5px;
  flex-shrink: 0;
}
.tl-content h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.tl-content p {
  font-size: 13px;
  color: var(--gray);
}

/* WHOM */
.whom-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}
.whom-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid rgba(0, 184, 148, 0.1);
}
.whom-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 184, 148, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}
.whom-item p {
  font-size: 14px;
  line-height: 1.5;
}

/* CASES */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.case-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.case-ava {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.case-ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-ava.placeholder {
  background: linear-gradient(135deg, var(--accent), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.case-name {
  font-weight: 700;
  font-size: 13px;
}
.case-niche {
  font-size: 10px;
  color: var(--gray);
}
.case-result {
  font-family: "Unbounded";
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}
.case-text {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.55;
  font-style: italic;
}

/* SPEAKER */
.speaker {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.sp-ava {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--accent);
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.2);
}
.sp-ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.sp-tag {
  color: var(--accent2);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.speaker p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}
.sp-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* URGENCY */
.urgency {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 36px 24px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.06), rgba(108, 92, 231, 0.06));
  border: 1px solid rgba(231, 76, 60, 0.15);
  border-radius: 20px;
}
.urgency h2 {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  margin-bottom: 12px;
}
.urgency p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.urgency .warn {
  color: var(--red);
  font-weight: 700;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .hero {
    padding: 50px 20px 80px;
    min-height: auto !important;
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    position: relative;
  }
  .hero-text {
    position: relative;
    z-index: 3;
    text-align: left;
  }
  .hero-photo {
    position: absolute;
    right: -20px;
    top: 0px;
    width: 220px;
    z-index: 1;
    display: block;
  }
  .hero-photo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(108, 92, 231, 0.3));
    /* Top part (face) visible, bottom fades */
    mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 70%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 70%);
  }
  /* Overlay layer: text area starts below the face */
  .hero-text {
    position: relative;
    z-index: 2;
    padding-top: 120px;
  }
  .hero-badge {
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 5;
  }
  .hero-stats {
    justify-content: flex-start;
  }
  .hero-meta {
    justify-content: flex-start;
  }
  .hero-cta {
    width: 100%;
    text-align: center;
  }
  .sp-stats {
    gap: 14px;
  }
}
