@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@100..900&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Inter:wght@100..900&display=swap');

:root {
  --paper-0: #FFFFFF;
  --paper-1: #F3F6FB;
  --paper-2: #EAF0F8;
  --ink: #0B1526;
  --body-c: #4B5A72;
  --muted: #8894A8;
  --line: #E4E9F2;

  --cyan: #0EA5E9;
  --cyan-light: #3DC8FA;
  --cyan-deep: #076B96;
  --cyan-tint: #E4F5FD;
  --on-cyan: #052934;

  --void: #070C18;
  --void-2: #0C1428;
  --dark-line: rgba(151, 181, 230, 0.16);
  --paper-d: #EEF4FC;
  --mist-d: #A7B7D2;
  --cyan-d2: #5ED4FF;
  --glass-bg: rgba(151, 181, 230, 0.07);
  --glass-bg-2: rgba(151, 181, 230, 0.11);
  --glass-border: rgba(151, 181, 230, 0.20);

  --up: #128A5E;
  --up-d: #2FD98A;
  --down: #A14554;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --maxw: 1240px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 14px -4px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 24px 48px -16px rgba(15, 23, 42, 0.18);
  --shadow-cyan: 0 14px 26px -10px rgba(14, 165, 233, 0.45);
  --display: 'Cabinet Grotesk', 'Inter', sans-serif;
  --body-f: 'Host Grotesk', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--paper-1);
}

body {
  font-family: var(--body-f);
  color: var(--body-c);
  background: var(--paper-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: -10%;
  right: -10%;
  width: 52vw;
  height: 52vw;
  max-width: 820px;
  max-height: 820px;
  background: radial-gradient(closest-side, rgba(14, 165, 233, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p {
  color: var(--body-c);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-weight: 600;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-tint);
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(29px, 3.8vw, 42px);
  line-height: 1.14;
  margin-bottom: 15px;
}

.section-head p {
  font-size: 16.5px;
  max-width: 520px;
}

.section-head.center p {
  margin: 0 auto;
}

/* ---------- Dark section override ---------- */
.on-dark {
  background: var(--void);
}

.on-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 20% 0%, rgba(14, 165, 233, 0.14), transparent 60%);
  pointer-events: none;
}

.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 {
  color: var(--paper-d);
}

.on-dark p {
  color: var(--mist-d);
}

.on-dark .eyebrow {
  color: var(--cyan-d2);
}

.on-dark .eyebrow::before {
  box-shadow: 0 0 10px 2px rgba(22, 184, 240, 0.55);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-light), var(--cyan) 60%);
  color: var(--on-cyan);
  box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -8px rgba(14, 165, 233, 0.55);
}

.btn-ghost {
  background: var(--paper-0);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #D3DCEA;
}

.btn-ghost-dark {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--paper-d);
  backdrop-filter: blur(12px);
}

.btn-ghost-dark:hover {
  background: var(--glass-bg-2);
  transform: translateY(-2px);
  color: #fff
}

.btn-sm {
  padding: 11px 20px;
  font-size: 13.5px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ---------- 3D icon badges ---------- */
.badge3d {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(150deg, #5CD3FF 0%, #0EA5E9 48%, #075E86 100%);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.65), inset 0 -8px 13px rgba(3, 35, 52, 0.4), 0 10px 18px -8px rgba(14, 165, 233, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge3d::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 58%;
  height: 36%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.65), transparent 72%);
  border-radius: 50%;
  filter: blur(0.5px);
}

.badge3d svg {
  width: 22px;
  height: 22px;
  color: #fff;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1.5px 1.5px rgba(0, 0, 0, 0.25));
}

.badge3d.sm {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.badge3d.sm svg {
  width: 17px;
  height: 17px;
}

.badge3d.lg {
  width: 64px;
  height: 64px;
  border-radius: 20px;
}

.badge3d.lg svg {
  width: 28px;
  height: 28px;
}

.avatar3d {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  background: linear-gradient(155deg, #6BD8FF 0%, #0EA5E9 50%, #063B54 130%);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.55), inset 0 -10px 18px rgba(2, 28, 42, 0.5), 0 16px 26px -10px rgba(14, 165, 233, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar3d::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 12px;
  width: 52%;
  height: 32%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6), transparent 72%);
  border-radius: 50%;
}

.avatar3d span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

/* Header Sticky Styles */
#siteHeader {
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  background: #ffffff;
  /* or your header background color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

#siteHeader.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: slideDown 0.3s ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Optional: Add padding to body when header becomes sticky to prevent content jump */
body.sticky-header {
  padding-top: 80px;
  /* Adjust this value based on your header height */
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ---------- Header ---------- */
header {
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; */
  padding: 18px 0;
  transition: padding .3s ease, box-shadow .3s ease;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(228, 233, 242, 0.7);
}

header.scrolled {
  padding: 11px 0;
  box-shadow: 0 4px 20px -8px rgba(15, 23, 42, 0.12);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0px;
}

.logo-chip img {
  height: 35px;
  width: auto;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body-c);
  padding: 10px 14px;
  border-radius: 100px;
  transition: color .2s ease, background .2s ease;
}

nav.main-nav a:hover {
  color: var(--ink);
  background: var(--paper-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  padding: 6px;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 6px;
}

.mobile-panel.open {
  display: flex;
}

.mobile-panel a {
  font-size: 19px;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.mobile-panel .btn {
  margin-top: 20px;
  width: 100%;
}

@media (max-width:960px) {
  nav.main-nav {
    display: none;
  }

  .header-actions .hide-mobile {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ---------- Hero (dark) ---------- */
.hero {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg svg {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  max-width: none;
  opacity: 0.5;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--cyan-d2);
}

.hero-sub {
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.hero-visual {
  position: relative;
}

.device-card {
  background: linear-gradient(165deg, #101B33, #0A1122);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform .4s ease;
}

.device-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--dark-line);
}

.device-topbar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.device-topbar .dot.r {
  background: #E1636F;
}

.device-topbar .dot.y {
  background: #E8C368;
}

.device-topbar .dot.g {
  background: #5FD79A;
}

.device-topbar .url-pill {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mist-d);
  background: rgba(151, 181, 230, 0.08);
  border: 1px solid var(--dark-line);
  padding: 4px 12px;
  border-radius: 100px;
}

.device-body {
  padding: 22px 22px 8px;
}

.device-chart {
  width: 100%;
  height: auto;
  display: block;
}

.device-ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0 20px;
}

.tick {
  background: rgba(151, 181, 230, 0.06);
  border: 1px solid var(--dark-line);
  border-radius: 10px;
  padding: 9px 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mist-d);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tick .up {
  color: #5FD79A;
  font-weight: 600;
}

.tick .down {
  color: #E1848F;
  font-weight: 600;
}

.float-chip {
  position: absolute;
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12.5px;
  color: var(--muted);
  z-index: 2;
}

.float-chip strong {
  display: block;
  font-family: var(--mono);
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
}

.float-chip.tl {
  top: -65px;
  left: -24px;
}

.float-chip.br {
  bottom: -65px;
  right: -22px;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float {
  animation: floaty 6s ease-in-out infinite;
}

@media (max-width:960px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 440px;
    margin: 20px auto 0;
  }

  .float-chip {
    display: none;
  }
}

/* ---------- Stats strip ---------- */
.stats-strip {
  padding: 44px 0;
  background: var(--paper-0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat .num {
  font-family: var(--mono);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat .num .suffix {
  color: var(--cyan-deep);
}

.stat .label {
  color: var(--muted);
  font-size: 12.8px;
  margin-top: 2px;
}

@media (max-width:800px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 16px;
  }
}

/* ---------- Reveal ---------- */
.reveal {
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stagger .reveal:nth-child(1) {
  transition-delay: .02s;
}

.stagger .reveal:nth-child(2) {
  transition-delay: .09s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: .16s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: .23s;
}

.stagger .reveal:nth-child(5) {
  transition-delay: .30s;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card .badge3d {
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: bold;
}

.feature-card p {
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width:1080px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:680px) {
  .feature-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------- Why learn forex ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-item {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-item h3 {
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: bold;
}

.why-item p {
  font-size: 13px;
}

@media (max-width:900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Roadmap (dark, signature) ---------- */
.roadmap-wrap {
  position: relative;
}

.roadmap-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.roadmap-line {
  fill: none;
  stroke: #3DC8FA;
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(61, 200, 250, 0.6));
}

.roadmap-area {
  opacity: 0.18;
}

.roadmap-wrap.draw .roadmap-line {
  animation: draw 2.4s cubic-bezier(.3, .7, .3, 1) forwards;
}

@keyframes draw {
  from {
    stroke-dashoffset: 2600;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.roadmap-stops {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.stop {
  text-align: left;
  padding-top: 16px;
  border-top: 2px solid var(--dark-line);
}

.stop .idx {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cyan-d2);
  display: block;
  margin-bottom: 8px;
}

.stop h4 {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.stop p {
  font-size: 12.3px;
  line-height: 1.5;
}

@media (max-width:980px) {
  .roadmap-stops {
    grid-template-columns: repeat(1, 1fr);
  }

  .roadmap-chart {
    display: none;
  }
}

@media (min-width:981px) and (max-width:1200px) {
  .roadmap-stops {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Courses ---------- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.course-card {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 19px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.course-card .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--up);
  background: #E4F7EE;
  padding: 4px 9px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 600;
}

.course-card h3 {
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: bold;
}

.course-card p {
  font-size: 12.6px;
  margin-bottom: 16px;
}

.course-card .lvl {
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.course-card .lvl svg {
  width: 13px;
  height: 13px;
}

@media (max-width:1080px) {
  .course-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:680px) {
  .course-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------- Become IB split ---------- */
.ib-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.ib-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 26px 0 30px;
}

.ib-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ib-point h4 {
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: bold;
}

.ib-point p {
  font-size: 13px;
}

.ib-visual {
  background: linear-gradient(160deg, #101B33, #0A1122);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ib-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(14, 165, 233, 0.28), transparent 72%);
}

.flow-svg {
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.commission-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--dark-line);
  position: relative;
  z-index: 1;
}

.commission-row:last-child {
  border-bottom: none;
}

.commission-row .who {
  font-size: 13px;
  color: var(--mist-d);
}

.commission-row .amt {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--cyan-d2);
  font-size: 13px;
}

.ib-note {
  font-size: 11.5px;
  color: #7C8CAA;
  margin-top: 16px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

@media (max-width:900px) {
  .ib-split {
    grid-template-columns: 1fr;
  }

  .ib-split>div:first-child {
    order: 2;
  }

  .ib-visual {
    order: 1;
  }
}

/* ---------- IB Journey bars ---------- */
.journey {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 36px;
}

.journey-step {
  flex: 1;
  text-align: center;
}

.bar-track {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 12px;
}

.bar {
  width: 66%;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--cyan-light), var(--cyan));
  box-shadow: 0 10px 18px -6px rgba(14, 165, 233, 0.4);
  transition: height 1.1s cubic-bezier(.2, .7, .2, 1);
}

.journey-step .jlabel {
  font-size: 11.8px;
  color: var(--muted);
  line-height: 1.35;
}

.journey-step .jn {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan-deep);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

@media (max-width:900px) {
  .journey {
    flex-wrap: wrap;
  }

  .journey-step {
    flex: 1 1 30%;
  }
}

/* ---------- Mentors ---------- */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mentor-card {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.mentor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mentor-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: bold;
}

.mentor-card .role {
  font-size: 12px;
  color: var(--cyan-deep);
  font-family: var(--mono);
  margin-bottom: 14px;
  font-weight: 600;
}

.mentor-card p {
  font-size: 12.8px;
  line-height: 1.55;
}

@media (max-width:800px) {
  .mentor-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ---------- Comparison table ---------- */
.compare-table {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.compare-row>div {
  padding: 17px 24px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.compare-row.head {
  background: var(--paper-1);
}

.compare-row.head>div {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.compare-row:not(.head) {
  border-top: 1px solid var(--line);
}

.compare-row .label {
  color: var(--body-c);
  font-weight: 500;
}

.compare-row .fp {
  color: var(--ink);
  font-weight: 600;
}

.compare-row .other {
  color: var(--muted);
}

.ic-check {
  color: var(--up);
  flex-shrink: 0;
}

.ic-x {
  color: #C79AA1;
  flex-shrink: 0;
}

@media (max-width:640px) {
  .compare-row>div {
    padding: 13px 12px;
    font-size: 12px;
  }
}

/* ---------- Testimonials ---------- */
.testimonials-sec {
  background: var(--paper-2);
}

.test-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.test-track::-webkit-scrollbar {
  display: none;
}

.test-card {
  scroll-snap-align: start;
  flex: 0 0 340px;
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.stars {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--cyan);
}

.test-card p.quote {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 18px;
}

.test-who {
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-who .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(150deg, #6BD8FF, #0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}

.test-who .nm {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.test-who .loc {
  font-size: 11.5px;
  color: var(--muted);
}

.test-controls {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.test-controls button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper-0);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.test-controls button:hover {
  box-shadow: var(--shadow-md);
}

.test-controls svg {
  width: 16px;
  height: 16px;
}

/* ---------- Community ---------- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.comm-card {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.comm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.comm-card h3 {
  font-size: 13.5px;
  font-weight: bolder;
}

.comm-card p {
  font-size: 12.8px;
  flex-grow: 1;
}

.comm-card a {
  font-size: 13px;
  color: var(--cyan-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.comm-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comm-mini {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.comm-mini h4 {
  font-size: 12.5px;
  margin-bottom: 2px;
  font-weight: bold;
}

.comm-mini p {
  font-size: 11.8px;
}

@media (max-width:900px) {
  .community-grid {
    grid-template-columns: 1fr;
  }

  .comm-strip {
    grid-template-columns: 1fr;
  }
}

/* ---------- Blog / analysis cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  height: 132px;
  background: linear-gradient(150deg, var(--cyan-tint), #F7FBFE);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-thumb .deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.blog-thumb .deco.d1 {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 70%);
  top: -16px;
  right: -10px;
}

.blog-thumb .deco.d2 {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14), transparent 70%);
  bottom: -6px;
  left: 16px;
}

.blog-thumb .cat {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 9px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-weight: 600;
}

.blog-body {
  padding: 19px 21px 21px;
}

.blog-body .date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 7px;
}

.blog-body h3 {
  font-size: 12.5px;
  margin-bottom: 8px;
  line-height: 1.35;
  font-weight: 600;
}

.blog-body p {
  font-size: 12.5px;
}

@media (max-width:900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  text-align: left;
  padding: 21px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  gap: 20px;
}

.faq-q .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease;
  color: var(--ink);
}

.faq-q .plus svg {
  width: 13px;
  height: 13px;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--cyan-tint);
  color: var(--cyan-deep);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  padding: 0 34px 22px 4px;
  font-size: 13.8px;
  line-height: 1.6;
}

/* ---------- Final CTA (dark) ---------- */
.final-cta {
  text-align: center;
  padding: 96px 0 104px;
  position: relative;
}

.final-cta .card {
  background: linear-gradient(160deg, #101B33, #0A1122);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 66px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.final-cta .card::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(14, 165, 233, 0.28), transparent 72%);
}

.final-cta h2 {
  font-size: clamp(27px, 4vw, 42px);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.final-cta p {
  font-size: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.final-cta .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- Footer (dark) ---------- */
footer {
  background: var(--void);
  padding: 64px 0 28px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.foot-brand p {
  font-size: 13px;
  color: var(--mist-d);
  max-width: 280px;
  margin: 16px 0 18px;
}

.foot-social {
  display: flex;
  gap: 10px;
}

.foot-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.foot-social svg {
  width: 15px;
  height: 15px;
  color: var(--mist-d);
}

.foot-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6E7EA0;
  font-family: var(--mono);
  margin-bottom: 16px;
  font-weight: 600;
}

.foot-col a {
  display: block;
  font-size: 13.5px;
  color: var(--mist-d);
  margin-bottom: 11px;
  transition: color .2s ease;
}

.foot-col a:hover {
  color: var(--paper-d);
}

.disclaimer {
  font-size: 11.5px;
  color: #66759A;
  line-height: 1.7;
  border-top: 1px solid var(--dark-line);
  padding-top: 26px;
  margin-bottom: 20px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #66759A;
}

.LiveChart {
  width: 550px;
}

@media (max-width:900px) {
  .LiveChart {
    width: 300px !important;
    overflow: auto;
  }

  .foot-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-wrap {
    gap: 5px !important;
    padding: 0px 12px !important
  }

  .hero {
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(20px, 4.6vw, 58px);
    line-height: 1.08;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .mobile-panel a {
    font-size: 14px;
    font-weight: 600;
    padding: 5px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .mobile-panel .btn {
    margin-top: 20px;
    width: 100%;
    padding: 11px 20px;
  }

  .header-actions {
    gap: 5px;
  }

  .test-card {
    flex: 0 0 300px;
  }

  .section {
    padding: 50px 0;

  }

  .finance-education-section1 {
    margin-bottom: 15px;
  }

  .section-head h2 {
    font-size: clamp(18px, 3.8vw, 42px);
  }

  .section-head p {
    font-size: 14.5px;
    max-width: 520px;
  }
}

@media (max-width:560px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 26px 16px;
  }

  .foot-brand {
    grid-column: 1 / -1;
  }
}

.whatsapp-float {
  position: fixed;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #25d366;
  padding: 9px;
}

.whatsapp-float:hover {
  background: #179a48;
}

.badge2d {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(160deg, #ffffff, #ffffff);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.65), inset 0 -8px 13px rgba(3, 35, 52, 0.4), 0 10px 18px -8px rgba(14, 165, 233, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== SECTION 1 - CUSTOM VARIABLES (renamed from :root) ===== */
.section1 {
  --s1-ink: #0B1526;
  --s1-bodyc: #4B5A72;
  --s1-muted: #8894A8;
  --s1-line: #E4E9F2;
  --s1-paper-0: #FFFFFF;
  --s1-paper-1: #F3F6FB;
  --s1-paper-2: #EAF0F8;
  --s1-cyan: #0EA5E9;
  --s1-cyan-light: #3DC8FA;
  --s1-cyan-deep: #076B96;
  --s1-cyan-tint: #E4F5FD;
  --s1-cyan-ink: #052934;
  --s1-cyan-d2: #5ED4FF;
  --s1-voidc: #070C18;
  --s1-voidc-2: #0C1428;
  --s1-glass-bg: rgba(151, 181, 230, 0.07);
  --s1-glass-bg2: rgba(151, 181, 230, 0.11);
  --s1-glass-border: rgba(151, 181, 230, 0.20);
  --s1-glass-line: rgba(151, 181, 230, 0.16);
  --s1-paperd: #EEF4FC;
  --s1-mistd: #A7B7D2;
}

/* apply section1 variables to body by default */
body {
  font-family: 'Inter', sans-serif;
  background: var(--s1-paper-1);
  color: var(--s1-bodyc);
  line-height: 1.55;
}

.font-display {
  font-family: 'Cabinet Grotesk', 'Inter', sans-serif;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* ----- all utilities now use section1 variables ----- */
.section1 .bg-voidc {
  background-color: var(--s1-voidc);
}

.section1 .text-cyan-d2 {
  color: var(--s1-cyan-d2);
}

.section1 .text-cyan-deep {
  color: var(--s1-cyan-deep);
}

.section1 .text-mistd {
  color: var(--s1-mistd);
}

.section1 .text-paperd {
  color: var(--s1-paperd);
}

.section1 .border-glass-border {
  border-color: var(--s1-glass-border);
}

.section1 .bg-glass-bg {
  background-color: var(--s1-glass-bg);
}

.section1 .bg-glass-bg2 {
  background-color: var(--s1-glass-bg2);
}

.section1 .border-glass-line {
  border-color: var(--s1-glass-line);
}

.section1 .bg-cyan-tint {
  background-color: var(--s1-cyan-tint);
}

.section1 .shadow-cyanglow {
  box-shadow: 0 14px 26px -10px rgba(14, 165, 233, 0.45);
}

.section1 .shadow-badge3d {
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.65), inset 0 -8px 13px rgba(3, 35, 52, 0.4), 0 10px 18px -8px rgba(14, 165, 233, 0.55);
}

.section1 .shadow-avatar3d {
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.55), inset 0 -10px 18px rgba(2, 28, 42, 0.5), 0 16px 26px -10px rgba(14, 165, 233, 0.45);
}

.section1 .hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section1 .hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px -4px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.05);
}

.section1 .hover-lift-sm:hover {
  transform: translateY(-3px);
}

.section1 .gradient-cyan {
  background: linear-gradient(135deg, var(--s1-cyan-light), var(--s1-cyan));
}

.section1 .gradient-cyan-text {
  background: linear-gradient(135deg, var(--s1-cyan-light), var(--s1-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section1 .btn-cyan {
  background: linear-gradient(135deg, var(--s1-cyan-light), var(--s1-cyan));
  color: var(--s1-cyan-ink);
  font-weight: 600;
  border: none;
  box-shadow: 0 14px 26px -10px rgba(14, 165, 233, 0.45);
  transition: all 0.3s;
}

.section1 .btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -8px rgba(14, 165, 233, 0.55);
  color: var(--s1-cyan-ink);
}

.section1 .btn-outline-glass {
  background: var(--s1-glass-bg);
  border: 1px solid var(--s1-glass-border);
  backdrop-filter: blur(4px);
  color: var(--s1-paperd);
  font-weight: 600;
  transition: all 0.3s;
}

.section1 .btn-outline-glass:hover {
  background: var(--s1-glass-bg2);
  transform: translateY(-2px);
  color: var(--s1-paperd);
}

.section1 .btn-outline-dark-glass {
  background: var(--s1-glass-bg);
  border: 1px solid var(--s1-glass-border);
  color: var(--s1-paperd);
  font-weight: 600;
  transition: all 0.3s;
}

.section1 .btn-outline-dark-glass:hover {
  background: var(--s1-glass-bg2);
  transform: translateY(-2px);
  color: var(--s1-paperd);
}

.section1 .faq-plus {
  transition: transform 0.3s;
}

.section1 .faq-plus.open {
  transform: rotate(45deg);
  background: var(--s1-cyan-tint);
  color: var(--s1-cyan-deep);
}

.section1 .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.section1 .faq-a.open {
  max-height: 300px;
}

.section1 .counter {
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.section1 .roadmap-line {
  stroke-dasharray: 1700;
  stroke-dashoffset: 1700;
  animation: draw 2s cubic-bezier(0.3, 0.7, 0.3, 1) forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.section1 .floating-badge {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.section1 .device-card-3d {
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
}

.section1 .bg-radial-glow {
  background: radial-gradient(closest-side at 20% 0%, rgba(14, 165, 233, 0.14), transparent 60%);
}

.section1 .bg-radial-glow-center {
  background: radial-gradient(closest-side at 50% 50%, rgba(14, 165, 233, 0.28), transparent 72%);
}

.section1 .bg-soft-cyan {
  background: rgba(14, 165, 233, 0.08);
}

.section1 .border-soft-cyan {
  border-color: rgba(14, 165, 233, 0.3);
}

.section1 .text-cyan-ink {
  color: var(--s1-cyan-ink);
}

.section1 .bg-paper-1 {
  background: var(--s1-paper-1);
}

.section1 .bg-paper-2 {
  background: var(--s1-paper-2);
}

.section1 .border-line {
  border-color: var(--s1-line);
}

.section1 .text-bodyc {
  color: var(--s1-bodyc);
}

.section1 .text-ink {
  color: var(--s1-ink);
}

.section1 .text-muted-custom {
  color: var(--s1-muted);
}

.section1 .shadow-sm2 {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.05);
}

.section1 .shadow-md2 {
  box-shadow: 0 6px 14px -4px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.05);
}

.section1 .rounded-2xl {
  border-radius: 1.2rem;
}

.section1 .rounded-3xl {
  border-radius: 1.8rem;
}

.section1 .gap-4 {
  gap: 1.5rem;
}

.section1 .py-104 {
  padding-top: 104px;
  padding-bottom: 104px;
}

.section1 .pt-176 {
  padding-top: 176px;
}

.section1 .pb-110 {
  padding-bottom: 110px;
}

.section1 .pb-104 {
  padding-bottom: 104px;
}

.section1 .pt-104 {
  padding-top: 104px;
}

.section1 .mt-52 {
  margin-top: 52px;
}

.section1 .mb-52 {
  margin-bottom: 52px;
}

@media (max-width: 768px) {
  .section1 .py-104 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section1 .pt-176 {
    padding-top: 120px;
  }

  .section1 .pb-110 {
    padding-bottom: 60px;
  }
}

/* global fallback for non-section1 elements (keeps design intact) */
.bg-voidc {
  background-color: var(--s1-voidc, #070C18);
}

.text-cyan-d2 {
  color: var(--s1-cyan-d2, #5ED4FF);
}

.text-mistd {
  color: var(--s1-mistd, #A7B7D2);
}

.text-paperd {
  color: var(--s1-paperd, #EEF4FC);
}

.border-glass-border {
  border-color: var(--s1-glass-border, rgba(151, 181, 230, 0.20));
}

.bg-glass-bg {
  background-color: var(--s1-glass-bg, rgba(151, 181, 230, 0.07));
}

.border-glass-line {
  border-color: var(--s1-glass-line, rgba(151, 181, 230, 0.16));
}

.bg-cyan-tint {
  background-color: var(--s1-cyan-tint, #E4F5FD);
}

.shadow-badge3d {
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.65), inset 0 -8px 13px rgba(3, 35, 52, 0.4), 0 10px 18px -8px rgba(14, 165, 233, 0.55);
}

.gradient-cyan {
  background: linear-gradient(135deg, var(--s1-cyan-light, #3DC8FA), var(--s1-cyan, #0EA5E9));
}

.btn-cyan {
  background: linear-gradient(135deg, var(--s1-cyan-light, #3DC8FA), var(--s1-cyan, #0EA5E9));
  color: var(--s1-cyan-ink, #052934);
  font-weight: 600;
  border: none;
  box-shadow: 0 14px 26px -10px rgba(14, 165, 233, 0.45);
  transition: all 0.3s;
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -8px rgba(14, 165, 233, 0.55);
  color: var(--s1-cyan-ink, #052934);
}

.btn-outline-glass {
  background: var(--s1-glass-bg, rgba(151, 181, 230, 0.07));
  border: 1px solid var(--s1-glass-border, rgba(151, 181, 230, 0.20));
  backdrop-filter: blur(4px);
  color: var(--s1-paperd, #EEF4FC);
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-glass:hover {
  background: var(--s1-glass-bg2, rgba(151, 181, 230, 0.11));
  transform: translateY(-2px);
  color: var(--s1-paperd, #EEF4FC);
}

.btn-outline-dark-glass {
  background: var(--s1-glass-bg, rgba(151, 181, 230, 0.07));
  border: 1px solid var(--s1-glass-border, rgba(151, 181, 230, 0.20));
  color: var(--s1-paperd, #EEF4FC);
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-dark-glass:hover {
  background: var(--s1-glass-bg2, rgba(151, 181, 230, 0.11));
  transform: translateY(-2px);
  color: var(--s1-paperd, #EEF4FC);
}

.rounded-2xl {
  border-radius: 1.2rem;
}

.rounded-3xl {
  border-radius: 1.8rem;
}

.bg-soft-cyan {
  background: rgba(14, 165, 233, 0.08);
}

.border-soft-cyan {
  border-color: rgba(14, 165, 233, 0.3);
}

.bg-paper-1 {
  background: var(--s1-paper-1, #F3F6FB);
}

.border-line {
  border-color: var(--s1-line, #E4E9F2);
}

.text-ink {
  color: var(--s1-ink, #0B1526);
}

.text-muted-custom {
  color: var(--s1-muted, #8894A8);
}

.shadow-sm2 {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.05);
}

.bg-radial-glow {
  background: radial-gradient(closest-side at 20% 0%, rgba(14, 165, 233, 0.14), transparent 60%);
}

.faq-plus.open {
  transform: rotate(45deg);
  background: var(--s1-cyan-tint, #E4F5FD);
  color: var(--s1-cyan-deep, #076B96);
}

.faq-a.open {
  max-height: 300px;
}

.floating-badge {
  animation: floaty 6s ease-in-out infinite;
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px -4px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.05);
}

.hover-lift-sm:hover {
  transform: translateY(-3px);
}

.section1 {
  --s1-ink: #0B1526;
  --s1-bodyc: #4B5A72;
  --s1-muted: #8894A8;
  --s1-line: #E4E9F2;
  --s1-paper-0: #FFFFFF;
  --s1-paper-1: #F3F6FB;
  --s1-paper-2: #EAF0F8;
  --s1-cyan: #0EA5E9;
  --s1-cyan-light: #3DC8FA;
  --s1-cyan-deep: #076B96;
  --s1-cyan-tint: #E4F5FD;
  --s1-cyan-ink: #052934;
  --s1-cyan-d2: #5ED4FF;
  --s1-voidc: #070C18;
  --s1-voidc-2: #0C1428;
  --s1-glass-bg: rgba(151, 181, 230, 0.07);
  --s1-glass-bg2: rgba(151, 181, 230, 0.11);
  --s1-glass-border: rgba(151, 181, 230, 0.20);
  --s1-glass-line: rgba(151, 181, 230, 0.16);
  --s1-paperd: #EEF4FC;
  --s1-mistd: #A7B7D2;
  font-family: 'Inter', sans-serif;
  background: var(--s1-paper-1);
  color: var(--s1-bodyc);
  line-height: 1.55;
}

.section1 .section1-font-display {
  font-family: 'Cabinet Grotesk', 'Inter', sans-serif;
}

.section1 .section1-font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.section1 .section1-bg-voidc {
  background-color: var(--s1-voidc);
}

.section1 .section1-text-cyan-d2 {
  color: var(--s1-cyan-d2);
}

.section1 .section1-text-cyan-deep {
  color: var(--s1-cyan-deep);
}

.section1 .section1-text-mistd {
  color: var(--s1-mistd);
}

.section1 .section1-text-paperd {
  color: var(--s1-paperd);
}

.section1 .section1-border-glass-border {
  border-color: var(--s1-glass-border);
}

.section1 .section1-bg-glass-bg {
  background-color: var(--s1-glass-bg);
}

.section1 .section1-bg-glass-bg2 {
  background-color: var(--s1-glass-bg2);
}

.section1 .section1-border-glass-line {
  border-color: var(--s1-glass-line);
}

.section1 .section1-bg-cyan-tint {
  background-color: var(--s1-cyan-tint);
}

.section1 .section1-shadow-cyanglow {
  box-shadow: 0 14px 26px -10px rgba(14, 165, 233, 0.45);
}

.section1 .section1-shadow-badge3d {
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.65), inset 0 -8px 13px rgba(3, 35, 52, 0.4), 0 10px 18px -8px rgba(14, 165, 233, 0.55);
}

.section1 .section1-shadow-avatar3d {
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.55), inset 0 -10px 18px rgba(2, 28, 42, 0.5), 0 16px 26px -10px rgba(14, 165, 233, 0.45);
}

.section1 .section1-hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section1 .section1-hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px -4px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.05);
}

.section1 .section1-hover-lift-sm:hover {
  transform: translateY(-3px);
}

.section1 .section1-gradient-cyan {
  background: linear-gradient(135deg, var(--s1-cyan-light), var(--s1-cyan));
}

.section1 .section1-gradient-cyan-text {
  background: linear-gradient(135deg, var(--s1-cyan-light), var(--s1-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section1 .section1-btn-cyan {
  background: linear-gradient(135deg, var(--s1-cyan-light), var(--s1-cyan));
  color: var(--s1-cyan-ink);
  font-weight: 600;
  border: none;
  box-shadow: 0 14px 26px -10px rgba(14, 165, 233, 0.45);
  transition: all 0.3s;
}

.section1 .section1-btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -8px rgba(14, 165, 233, 0.55);
  color: var(--s1-cyan-ink);
}

.section1 .section1-btn-outline-glass {
  background: var(--s1-glass-bg);
  border: 1px solid var(--s1-glass-border);
  backdrop-filter: blur(4px);
  color: var(--s1-paperd);
  font-weight: 600;
  transition: all 0.3s;
}

.section1 .section1-btn-outline-glass:hover {
  background: var(--s1-glass-bg2);
  transform: translateY(-2px);
  color: var(--s1-paperd);
}

.section1 .section1-btn-outline-dark-glass {
  background: var(--s1-glass-bg);
  border: 1px solid var(--s1-glass-border);
  color: var(--s1-paperd);
  font-weight: 600;
  transition: all 0.3s;
}

.section1 .section1-btn-outline-dark-glass:hover {
  background: var(--s1-glass-bg2);
  transform: translateY(-2px);
  color: var(--s1-paperd);
}

.section1 .section1-faq-plus {
  transition: transform 0.3s;
}

.section1 .section1-faq-plus.section1-open {
  transform: rotate(45deg);
  background: var(--s1-cyan-tint);
  color: var(--s1-cyan-deep);
}

.section1 .section1-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.section1 .section1-faq-a.section1-open {
  max-height: 300px;
}

.section1 .section1-counter {
  font-weight: 700;
}

.section1 [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section1 [data-reveal].section1-revealed {
  opacity: 1;
  transform: translateY(0);
}

.section1 .section1-roadmap-line {
  stroke-dasharray: 1700;
  stroke-dashoffset: 1700;
  animation: s1draw 2s cubic-bezier(0.3, 0.7, 0.3, 1) forwards;
}

@keyframes s1draw {
  to {
    stroke-dashoffset: 0;
  }
}

.section1 .section1-floating-badge {
  animation: s1floaty 6s ease-in-out infinite;
}

@keyframes s1floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.section1 .section1-device-card-3d {
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
}

.section1 .section1-bg-radial-glow {
  background: radial-gradient(closest-side at 20% 0%, rgba(14, 165, 233, 0.14), transparent 60%);
}

.section1 .section1-bg-radial-glow-center {
  background: radial-gradient(closest-side at 50% 50%, rgba(14, 165, 233, 0.28), transparent 72%);
}

.section1 .section1-bg-soft-cyan {
  background: rgba(14, 165, 233, 0.08);
}

.section1 .section1-border-soft-cyan {
  border-color: rgba(14, 165, 233, 0.3);
}

.section1 .section1-text-cyan-ink {
  color: var(--s1-cyan-ink);
}

.section1 .section1-bg-paper-1 {
  background: var(--s1-paper-1);
}

.section1 .section1-bg-paper-2 {
  background: var(--s1-paper-2);
}

.section1 .section1-border-line {
  border-color: var(--s1-line);
}

.section1 .section1-text-bodyc {
  color: var(--s1-bodyc);
}

.section1 .section1-text-ink {
  color: var(--s1-ink);
}

.section1 .section1-text-muted-custom {
  color: var(--s1-muted);
}

.section1 .section1-shadow-sm2 {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.05);
}

.section1 .section1-shadow-md2 {
  box-shadow: 0 6px 14px -4px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.05);
}

.section1 .section1-rounded-2xl {
  border-radius: 1.2rem;
}

.section1 .section1-rounded-3xl {
  border-radius: 1.8rem;
}

.section1 .section1-gap-4 {
  gap: 1.5rem;
}

.section1 .section1-py-104 {
  padding-top: 104px;
  padding-bottom: 104px;
}

.section1 .section1-pt-176 {
  padding-top: 176px;
}

.section1 .section1-pb-110 {
  padding-bottom: 110px;
}

.section1 .section1-pb-104 {
  padding-bottom: 104px;
}

.section1 .section1-pt-104 {
  padding-top: 104px;
}

.section1 .section1-mt-52 {
  margin-top: 52px;
}

.section1 .section1-mb-52 {
  margin-bottom: 52px;
}

.section1 .section1-text-xs {
  font-size: 11px;
}

@media (max-width: 768px) {
  .section1 .section1-py-104 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section1 .section1-pt-176 {
    padding-top: 120px;
  }

  .section1 .section1-pb-110 {
    padding-bottom: 60px;
  }
}

:root {
  --community-ink: #0b1526;
  --community-body: #4b5a72;
  --community-muted: #8894a8;
  --community-line: #e4e9f2;
  --community-paper-0: #ffffff;
  --community-paper-1: #f3f6fb;
  --community-paper-2: #eaf0f8;
  --community-cyan: #0ea5e9;
  --community-cyan-light: #3dc8fa;
  --community-cyan-deep: #076b96;
  --community-cyan-tint: #e4f5fd;
  --community-cyan-ink: #052934;
  --community-cyan-d2: #5ed4ff;
  --community-void: #070c18;
  --community-paperd: #eef4fc;
  --community-mistd: #a7b7d2;
  --community-glass-bg: rgba(151, 181, 230, 0.07);
  --community-glass-bg2: rgba(151, 181, 230, 0.11);
  --community-glass-border: rgba(151, 181, 230, 0.2);
  --community-glass-line: rgba(151, 181, 230, 0.16);
  --community-up: #128a5e;
  --community-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05),
    0 2px 6px rgba(15, 23, 42, 0.05);
  --community-shadow-md: 0 6px 14px -4px rgba(15, 23, 42, 0.1),
    0 2px 6px rgba(15, 23, 42, 0.05);
  --community-shadow-lg: 0 24px 48px -16px rgba(15, 23, 42, 0.18);
  --community-shadow-cyan: 0 14px 26px -10px rgba(14, 165, 233, 0.45);
  --community-radius-lg: 22px;
  --community-radius-md: 16px;
  --community-font-display: "Cabinet Grotesk", "Inter", sans-serif;
  --community-font-body: "Inter", sans-serif;
  --community-font-mono: "JetBrains Mono", monospace;
}

html {
  scroll-behavior: smooth;
}

.community-body {
  font-family: var(--community-font-body);
  color: var(--community-body);
  background: var(--community-paper-1);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

.community-ambient {
  position: fixed;
  top: -10%;
  right: -10%;
  width: 52vw;
  height: 52vw;
  max-width: 820px;
  max-height: 820px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(14, 165, 233, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.community-h1,
.community-h2,
.community-h3,
.community-h4 {
  font-family: var(--community-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--community-ink);
  margin: 0;
}

.community-eyebrow {
  font-family: var(--community-font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--community-cyan-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.community-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--community-cyan);
  box-shadow: 0 0 0 4px var(--community-cyan-tint);
  flex-shrink: 0;
}

.community-eyebrow--dark {
  color: var(--community-cyan-d2);
}

.community-eyebrow--dark::before {
  box-shadow: 0 0 10px 2px rgba(22, 184, 240, 0.55);
}

.community-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.community-btn-primary {
  background: linear-gradient(135deg, var(--community-cyan-light), var(--community-cyan) 60%);
  color: var(--community-cyan-ink);
  box-shadow: var(--community-shadow-cyan);
}

.community-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -8px rgba(14, 165, 233, 0.55);
  color: var(--community-cyan-ink);
}

.community-btn-ghost {
  background: var(--community-paper-0);
  border-color: var(--community-line);
  color: var(--community-ink);
  box-shadow: var(--community-shadow-sm);
}

.community-btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--community-shadow-md);
  color: var(--community-ink);
}

.community-btn-ghost-dark {
  background: var(--community-glass-bg);
  border-color: var(--community-glass-border);
  color: var(--community-paperd);
  backdrop-filter: blur(12px);
}

.community-btn-ghost-dark:hover {
  background: var(--community-glass-bg2);
  transform: translateY(-2px);
  color: var(--community-paperd);
}

.community-btn-sm {
  padding: 11px 20px;
  font-size: 13.5px;
}

.community-hero {
  position: relative;
  overflow: hidden;
  background: var(--community-void);
  padding: 80px 0 90px;
}

.community-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 20% 0%, rgba(14, 165, 233, 0.14), transparent 60%);
  pointer-events: none;
}

.community-hero-title {
  font-family: var(--community-font-display);
  font-weight: 700;
  color: var(--community-paperd);
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.community-hero-title .accent {
  color: var(--community-cyan-d2);
}

.community-hero-sub {
  font-size: 16.5px;
  color: var(--community-mistd);
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.community-hero-banner {
  position: relative;
  border-radius: var(--community-radius-lg);
  overflow: hidden;
  border: 1px solid var(--community-glass-border);
  box-shadow: var(--community-shadow-lg);
  max-width: 980px;
  margin: 0 auto;
}

.community-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 420px;
}

.community-badge3d {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(150deg, #5cd3ff 0%, var(--community-cyan) 48%, #075e86 100%);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.65), inset 0 -8px 13px rgba(3, 35, 52, 0.4), 0 10px 18px -8px rgba(14, 165, 233, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-badge3d::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 58%;
  height: 36%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.65), transparent 72%);
  border-radius: 50%;
}

.community-badge3d svg {
  width: 22px;
  height: 22px;
  color: #fff;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1.5px 1.5px rgba(0, 0, 0, 0.25));
}

.community-badge3d--sm {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.community-badge3d--sm svg {
  width: 17px;
  height: 17px;
}

.community-section1 {
  position: relative;
  padding: 96px 0;
}

.community-section--dark {
  background: var(--community-void);
}

.community-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 20% 0%, rgba(14, 165, 233, 0.14), transparent 60%);
  pointer-events: none;
}

.community-section--alt {
  background: var(--community-paper-0);
  border-top: 1px solid var(--community-line);
  border-bottom: 1px solid var(--community-line);
}

.community-section-head {
  max-width: 640px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.community-section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.community-section-head h2 {
  font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.16;
  margin-bottom: 13px;
}

.community-section-head p {
  font-size: 15.5px;
  color: var(--community-body);
}

.community-section--dark .community-section-head h2 {
  color: var(--community-paperd);
}

.community-section--dark .community-section-head p {
  color: var(--community-mistd);
}

.community-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.community-stat-value {
  font-family: var(--community-font-mono);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--community-ink);
}

.community-stat-value .suffix {
  color: var(--community-cyan-deep);
}

.community-stat-label {
  font-size: 12.6px;
  color: var(--community-muted);
  margin-top: 2px;
}

.community-card {
  background: var(--community-paper-0);
  border: 1px solid var(--community-line);
  border-radius: var(--community-radius-lg);
  box-shadow: var(--community-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--community-shadow-md);
}

.community-channel-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.community-channel-card h3 {
  font-size: 16px;
}

.community-channel-card p {
  font-size: 13px;
  color: var(--community-body);
  flex-grow: 1;
  margin: 0;
}

.community-channel-card a {
  font-size: 13px;
  font-weight: 700;
  color: var(--community-cyan-deep);
  text-decoration: none;
}

.community-benefit-card {
  padding: 26px 22px;
  height: 100%;
}

.community-benefit-card h3 {
  font-size: 16px;
  margin: 16px 0 8px;
}

.community-benefit-card p {
  font-size: 13.5px;
  color: var(--community-body);
  margin: 0;
}

.community-included-media {
  border-radius: var(--community-radius-lg);
  overflow: hidden;
  box-shadow: var(--community-shadow-lg);
  border: 1px solid var(--community-line);
  height: 100%;
  min-height: 340px;
}

.community-included-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.community-included-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.community-included-item:last-child {
  margin-bottom: 0;
}

.community-included-item h4 {
  font-size: 15px;
  color: var(--community-ink);
  margin-bottom: 3px;
  font-family: var(--community-font-display);
  font-weight: 700;
}

.community-included-item p {
  font-size: 13px;
  color: var(--community-body);
  margin: 0;
}

.community-discussion-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
}

.community-discussion-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(150deg, #6bd8ff, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--community-font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.community-discussion-meta {
  font-size: 12px;
  color: var(--community-muted);
  margin-bottom: 4px;
}

.community-discussion-meta strong {
  color: var(--community-ink);
  font-weight: 600;
}

.community-discussion-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--community-ink);
  margin-bottom: 8px;
}

.community-discussion-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--community-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--community-cyan-deep);
  background: var(--community-cyan-tint);
  padding: 4px 10px;
  border-radius: 100px;
  margin-right: 8px;
}

.community-discussion-count {
  font-size: 12px;
  color: var(--community-muted);
}

.community-event-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  align-items: center;
  height: 100%;
}

.community-event-date {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(150deg, #5cd3ff, #0ea5e9 48%, #075e86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--community-shadow-cyan);
}

.community-event-date .day {
  font-family: var(--community-font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
}

.community-event-date .month {
  font-family: var(--community-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.community-event-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--community-ink);
  font-family: var(--community-font-display);
  margin-bottom: 4px;
}

.community-event-meta {
  font-size: 12.3px;
  color: var(--community-muted);
  margin-bottom: 2px;
}

.community-event-registered {
  font-size: 12px;
  color: var(--community-up);
  font-weight: 600;
}

.community-guideline {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 4px;
  border-bottom: 1px solid var(--community-line);
}

.community-guideline:last-child {
  border-bottom: none;
}

.community-guideline p {
  font-size: 13.5px;
  color: var(--community-body);
  margin: 0;
}

.community-guideline p strong {
  font-family: var(--community-font-display);
  font-weight: 700;
  color: var(--community-ink);
}

.community-cta {
  text-align: center;
  padding: 88px 0 100px;
  position: relative;
}

.community-cta-card {
  background: linear-gradient(160deg, #101b33, #0a1122);
  border: 1px solid var(--community-glass-border);
  border-radius: 28px;
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--community-shadow-lg);
}

.community-cta-card::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(14, 165, 233, 0.28), transparent 72%);
}

.community-cta-title {
  font-family: var(--community-font-display);
  font-weight: 700;
  color: var(--community-paperd);
  font-size: clamp(26px, 3.8vw, 40px);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.community-cta-sub {
  color: var(--community-mistd);
  font-size: 16px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.community-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.community-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.community-gallery-item {
  position: relative;
  border-radius: var(--community-radius-lg);
  overflow: hidden;
  box-shadow: var(--community-shadow-md);
  height: 100%;
  min-height: 260px;
}

.community-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 260px;
}

.community-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(7, 12, 24, 0.82), transparent);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--community-font-display);
}

.community-avatar3d {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(155deg, #6bd8ff 0%, var(--community-cyan) 50%, #063b54 130%);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.55), inset 0 -10px 18px rgba(2, 28, 42, 0.5), 0 16px 26px -10px rgba(14, 165, 233, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-avatar3d::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 10px;
  width: 52%;
  height: 32%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6), transparent 72%);
  border-radius: 50%;
}

.community-avatar3d span {
  position: relative;
  z-index: 1;
  font-family: var(--community-font-display);
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.community-educator-card {
  padding: 28px 22px;
  text-align: center;
}

.community-educator-card h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.community-educator-role {
  font-size: 12px;
  font-family: var(--community-font-mono);
  font-weight: 600;
  color: var(--community-cyan-deep);
  margin-bottom: 12px;
}

.community-educator-card p {
  font-size: 12.8px;
  color: var(--community-body);
  margin: 0;
}

.community-step {
  text-align: left;
}

.community-step-number {
  font-family: var(--community-font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--community-cyan-ink);
  background: linear-gradient(135deg, var(--community-cyan-light), var(--community-cyan) 60%);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--community-shadow-cyan);
  margin-bottom: 14px;
}

.community-step h4 {
  font-family: var(--community-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--community-ink);
  margin-bottom: 6px;
}

.community-step p {
  font-size: 13px;
  color: var(--community-body);
  margin: 0;
}

@media (max-width: 767.98px) {
  .community-hero {
    padding-top: 80px;
  }

  .community-event-card {
    flex-direction: row;
  }
}