/* AJ Sublim – How It Works | Frontend Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700&family=Syne:wght@700;800&display=swap');

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

.ajhiw-page {
  font-family: var(--ajhiw-font-body, 'DM Sans', sans-serif);
  background: var(--ajhiw-body-bg, #F6F5F1);
  color: var(--ajhiw-black, #0D0D1A);
  line-height: 1.6;
}

/* ── URGENCY BAR ── */
.ajhiw-urgency-bar {
  text-align: center;
  padding: 10px 20px;
  font-weight: 500;
}
.ajhiw-urgency-bar strong { font-weight: 700; }

/* ── HERO ── */
.ajhiw-hero {
  background: var(--ajhiw-black, #0D0D1A);
  position: relative;
  overflow: hidden;
  padding: 90px 40px 80px;
  text-align: center;
}
.ajhiw-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 65%);
  top: -120px; left: -150px;
  pointer-events: none;
}
.ajhiw-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.10) 0%, transparent 65%);
  bottom: -100px; right: -80px;
  pointer-events: none;
}
.ajhiw-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ajhiw-cyan, #00D4FF);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 99px;
  padding: 6px 18px;
  margin-bottom: 28px;
  background: rgba(0,212,255,0.07);
  animation: ajhiw-fadeUp 0.5s ease both;
}
.ajhiw-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ajhiw-cyan, #00D4FF);
  box-shadow: 0 0 8px var(--ajhiw-cyan, #00D4FF);
}
.ajhiw-hero-h1 {
  font-family: var(--ajhiw-font-heading, 'Syne', sans-serif);
  font-weight: 800;
  color: var(--ajhiw-white, #FFF);
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: ajhiw-fadeUp 0.55s 0.1s ease both;
}
.ajhiw-hero-sub {
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  animation: ajhiw-fadeUp 0.55s 0.2s ease both;
}
.ajhiw-hero-trust {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: ajhiw-fadeUp 0.55s 0.3s ease both;
}
.ajhiw-trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 99px;
  padding: 7px 16px;
}
.ajhiw-tc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}

/* ── STEPS STRIP ── */
.ajhiw-steps-strip {
  background: #12121E;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ajhiw-steps-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}
.ajhiw-step-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 14px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.ajhiw-step-tab:last-child { border-right: none; }
.ajhiw-step-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: var(--step-accent, #00D4FF);
}
.ajhiw-step-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 10px;
}
.ajhiw-step-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  border: 1px solid transparent;
}
.ajhiw-step-icon svg {
  width: 19px; height: 19px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ajhiw-step-label {
  font-family: var(--ajhiw-font-heading, 'Syne', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

/* ── SPLIT SECTIONS ── */
.ajhiw-split-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 88px 40px;
}
.ajhiw-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ajhiw-flip { direction: rtl; }
.ajhiw-flip > * { direction: ltr; }

/* image card */
.ajhiw-vis-card {
  border-radius: 24px;
  aspect-ratio: 5/4;
  display: flex; align-items: flex-end; justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #060D14;
  border: 1px solid rgba(255,255,255,0.1);
}
.ajhiw-vis-glow {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ajhiw-float-badge {
  position: relative;
  z-index: 2;
  margin: 0 20px 20px 0;
  background: rgba(13,13,26,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}
.ajhiw-fb-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ajhiw-fb-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--ajhiw-white, #FFF);
}
.ajhiw-fb-text small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* content block */
.ajhiw-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ajhiw-eyebrow-line {
  display: inline-block;
  width: 22px; height: 2px;
  border-radius: 2px;
}
.ajhiw-content-block h2 {
  font-family: var(--ajhiw-font-heading, 'Syne', sans-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ajhiw-black, #0D0D1A);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ajhiw-content-block p {
  font-size: 16px;
  color: var(--ajhiw-gray, #6B6B80);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}
.ajhiw-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.ajhiw-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ajhiw-black, #0D0D1A);
  line-height: 1.5;
}
.ajhiw-check-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.ajhiw-check-icon svg {
  width: 11px; height: 11px;
}

/* ── DIVIDER ── */
.ajhiw-divider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 1px;
  background: #E3E1DA;
}

/* ── STATS BAR ── */
.ajhiw-stats-bar {
  background: var(--ajhiw-black, #0D0D1A);
  padding: 64px 40px;
}
.ajhiw-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.ajhiw-stat-val {
  font-family: var(--ajhiw-font-heading, 'Syne', sans-serif);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}
.ajhiw-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* ── TIMELINE ── */
.ajhiw-timeline-section {
  background: var(--ajhiw-white, #FFF);
  padding: 80px 40px;
}
.ajhiw-timeline-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.ajhiw-tl-heading {
  font-family: var(--ajhiw-font-heading, 'Syne', sans-serif);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--ajhiw-black, #0D0D1A);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.ajhiw-tl-sub {
  font-size: 15px;
  color: var(--ajhiw-gray, #6B6B80);
  font-weight: 300;
  margin-bottom: 52px;
}
.ajhiw-timeline {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.ajhiw-tl-item {
  display: flex;
  gap: 24px;
}
.ajhiw-tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  flex-shrink: 0;
}
.ajhiw-tl-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ajhiw-font-heading, 'Syne', sans-serif);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.ajhiw-tl-line {
  width: 2px;
  flex: 1;
  min-height: 36px;
  background: #E3E1DA;
  margin: 4px 0;
}
.ajhiw-tl-right {
  padding: 8px 0 40px;
}
.ajhiw-tl-title {
  font-family: var(--ajhiw-font-heading, 'Syne', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ajhiw-black, #0D0D1A);
  margin-bottom: 6px;
}
.ajhiw-tl-desc {
  font-size: 14px;
  color: var(--ajhiw-gray, #6B6B80);
  line-height: 1.7;
  font-weight: 300;
}

/* ── FINAL BANNER ── */
.ajhiw-info-banner {
  background: var(--ajhiw-black, #0D0D1A);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ajhiw-info-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 65%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.ajhiw-ib-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ajhiw-yellow, #FFD700);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 99px;
  padding: 5px 16px;
  margin-bottom: 24px;
}
.ajhiw-info-banner h2 {
  font-family: var(--ajhiw-font-heading, 'Syne', sans-serif);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--ajhiw-white, #FFF);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  position: relative;
}
.ajhiw-info-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.8;
}
.ajhiw-final-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ajhiw-final-chip {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 99px;
}
.ajhiw-cta-btn {
  display: inline-block;
  font-family: var(--ajhiw-font-heading, 'Syne', sans-serif);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 99px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.2s;
}
.ajhiw-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── ANIMATION ── */
@keyframes ajhiw-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .ajhiw-split-grid { grid-template-columns: 1fr; gap: 36px; }
  .ajhiw-flip { direction: ltr; }
  .ajhiw-steps-inner { flex-direction: column; }
  .ajhiw-step-tab { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .ajhiw-step-tab:last-child { border-bottom: none; }
  .ajhiw-stats-inner { grid-template-columns: 1fr; gap: 28px; }
  .ajhiw-hero { padding: 70px 24px 60px; }
  .ajhiw-split-wrap { padding: 60px 24px; }
  .ajhiw-timeline-section { padding: 60px 24px; }
}
@media (max-width: 500px) {
  .ajhiw-stat-val { font-size: 40px; }
}
