:root {
  --primary: #552ACA;
  --primary-light: #7048e8;
  --primary-xlight: #ede8ff;
  --primary-dark: #3d1e96;
  --accent: #8b5cf6;
  --ink: #0d0b18;
  --ink-2: #1a1730;
  --ink-muted: #4e4869;
  --ink-faint: #9490aa;
  --surface: #ffffff;
  --surface-2: #f8f7fc;
  --surface-3: #f1edff;
  --dark: #0f0d1c;
  --dark-2: #171525;
  --dark-3: #1e1b30;
  --border: #e8e3f5;
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow: 0 2px 30px rgba(85, 42, 202, 0.08);
  --shadow-md: 0 8px 40px rgba(85, 42, 202, 0.14);
  --shadow-lg: 0 20px 70px rgba(85, 42, 202, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.68;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Space Grotesk', sans-serif;
}

/* ── NAV ── */
nav {
  padding: 14px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px;
}

nav.scrolled {
  box-shadow: 0 2px 30px rgba(85, 42, 202, 0.08);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header-logo {
  height: 28px;
  width: auto;
}

@media (max-width: 820px) {
  .header-logo {
    height: 14px;
  }
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.4s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.6;
    transform: scale(1.35)
  }
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-xlight);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--primary-xlight);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(85, 42, 202, 0.3);
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-cta:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(85, 42, 202, 0.38);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width:820px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* ── HERO ── */
.hero {
  padding: 110px 6% 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* subtle mesh bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(85, 42, 202, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(112, 72, 232, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* centered top block */
.hero-top {
  text-align: center;
  padding: 48px 0 52px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.85s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(85, 42, 202, 0.18);
}

.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}

h1 .hl {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto 34px;
  line-height: 1.72;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(85, 42, 202, 0.30);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(85, 42, 202, 0.40);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-muted);
  padding: 14px 26px;
  border-radius: 50px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-xlight);
}

/* hero image row */
.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 26px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-img-outer {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.hero-img-wrap {
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  box-shadow: 0 -10px 70px rgba(85, 42, 202, 0.16), 0 0 0 1px var(--border);
}

.hero-img-wrap img {
  width: 100%;
  display: block;
  min-height: 300px;
  object-fit: cover;
}

/* floating badges */
.hero-badge-float {
  position: absolute;
  top: 36px;
  left: -12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.11);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  animation: floatA 4s ease-in-out infinite;
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

.hbf-icon {
  font-size: 1.5rem;
}

.hbf-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.hbf-text span {
  font-size: 1rem;
  color: var(--ink-faint);
}

.hero-badge-float2 {
  position: absolute;
  top: 36px;
  right: -12px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 36px rgba(85, 42, 202, 0.38);
  animation: floatB 4s 1s ease-in-out infinite;
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.hbf2-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  letter-spacing: -0.02em;
}

.hbf2-label {
  font-size: 1rem;
  opacity: 0.84;
}

/* ── SECTION SHARED ── */
section {
  padding: 100px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.sec-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.sec-title {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.sec-title .hl {
  color: var(--primary);
}

.sec-desc {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* Watermark bg label (reference style) */
.sec-watermark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  color: rgba(85, 42, 202, 0.05);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: 40px;
  right: 5%;
  pointer-events: none;
  user-select: none;
}

.sec-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 30px;
  flex-wrap: wrap;
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}

.view-more:hover {
  gap: 12px;
}

.view-more svg {
  width: 15px;
  height: 15px;
}

/* ── PROBLEM (dark) ── */
.problem {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0%;
}

.problem .sec-label {
  color: rgba(139, 92, 246, 0.9);
}

.problem .sec-label::before {
  background: rgba(139, 92, 246, 0.9);
}

.problem .sec-title {
  color: #fff;
}

.problem .sec-desc {
  color: rgba(255, 255, 255, 0.52);
  max-width: 560px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.problem-card:nth-child(4) {
  grid-column: 1;
}

.problem-card:nth-child(5) {
  grid-column: 2;
}

@media (max-width:860px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-card:nth-child(4),
  .problem-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width:560px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.problem-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.problem-card:hover {
  border-color: rgba(85, 42, 202, 0.35);
  transform: translateY(-3px);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.prob-icon {
  width: 44px;
  height: 44px;
  background: rgba(85, 42, 202, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.problem-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.problem-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
}

/* ── REALITY ── */
.reality {
  background: var(--surface-2);
}

.reality-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media (max-width:860px) {
  .reality-inner {
    grid-template-columns: 1fr;
  }
}

.reality-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reality-point {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  color: var(--ink-muted);
  font-weight: 500;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.reality-point:hover {
  border-color: var(--primary);
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.rp-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reality-card {
  background: var(--dark);
  color: #fff;
  border-radius: 22px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.reality-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(85, 42, 202, 0.35) 0%, transparent 65%);
  border-radius: 50%;
}

.reality-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 65%);
  border-radius: 50%;
}

.reality-card h3 {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.025em;
}

.reality-card p {
  font-size: 1.05rem;
  opacity: 0.78;
  position: relative;
  z-index: 1;
  line-height: 1.75;
}

/* ── PROCESS ── */
.process {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.process-intro {
  background: var(--surface-3);
  border-left: 3px solid var(--primary);
  padding: 17px 22px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  margin-bottom: 54px;
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 660px;
  line-height: 1.65;
  display: inline-block;
}

.process-intro strong {
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}

.steps {
  display: flex;
  flex-direction: column;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--border) 100%);
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 0 0 5px #fff, 0 0 0 6px rgba(85, 42, 202, 0.18);
}

.step-body {
  flex: 1;
}

.step-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}

.step-body p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.68;
}

.bmc-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin-top: 16px;
}

.bmc-box h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.bmc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width:560px) {
  .bmc-grid {
    grid-template-columns: 1fr;
  }
}

.bmc-item {
  font-size: 1rem;
  color: var(--ink-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.bmc-item::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.step-tag {
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(85, 42, 202, 0.14);
  font-family: 'IBM Plex Sans', sans-serif;
}

/* ── PORTFOLIO ── */
.portfolio {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width:760px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.port-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.port-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.port-thumb {
  height: 420px;
  background: var(--primary-xlight);
  position: relative;
  overflow: hidden;
}

.port-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.port-card:hover .port-thumb img {
  transform: scale(1.05);
}

.port-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 11, 24, 0.72);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
  font-family: 'IBM Plex Sans', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.port-body {
  padding: 24px;
}

.port-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.port-url {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 500;
}

.port-body p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--border);
  color: var(--ink-muted);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  font-family: 'IBM Plex Sans', sans-serif;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-xlight);
}

.btn-outline svg {
  width: 13px;
  height: 13px;
}

/* ── FEATURES (dark) ── */
.features {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.features .sec-label {
  color: rgba(139, 92, 246, 0.9);
}

.features .sec-label::before {
  background: rgba(139, 92, 246, 0.9);
}

.features .sec-title {
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width:900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:500px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.feat-card:hover {
  background: var(--dark-3);
  border-color: rgba(85, 42, 202, 0.35);
  transform: translateY(-3px);
}

.feat-icon {
  width: 46px;
  height: 46px;
  background: rgba(85, 42, 202, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  border: 1px solid rgba(85, 42, 202, 0.2);
}

.feat-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
}

/* ── WHO ── */
.who {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.who::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 65%);
  border-radius: 50%;
}

.who .sec-label {
  color: rgba(200, 185, 255, 0.9);
}

.who .sec-label::before {
  background: rgba(200, 185, 255, 0.9);
}

.who .sec-title {
  color: #fff;
}

.who-sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 42px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.who-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.who-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.who-item::before {
  content: '✔';
  color: rgba(200, 185, 255, 0.9);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FIT ── */
.fit {
  background: var(--surface);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 50px;
}

@media (max-width:700px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

.fit-card {
  border-radius: 22px;
  padding: 36px 30px;
}

.fit-no {
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.fit-yes {
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.fit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}

.fit-no h3 {
  color: var(--ink);
}

.fit-yes h3 {
  color: #fff;
}

.fit-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fit-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.fit-bullet {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}

.fit-no .fit-bullet {
  background: #fee8e8;
  color: #d93025;
}

.fit-yes .fit-bullet {
  background: rgba(85, 42, 202, 0.3);
  color: #d4caff;
}

.fit-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.fit-no .fit-item h4 {
  color: var(--ink);
}

.fit-yes .fit-item h4 {
  color: #fff;
}

.fit-item p {
  font-size: 1rem;
  line-height: 1.6;
}

.fit-no .fit-item p {
  color: var(--ink-muted);
}

.fit-yes .fit-item p {
  color: rgba(255, 255, 255, 0.6);
}

/* ── TRUST ── */
.trust {
  background: var(--surface-2);
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

@media (max-width:900px) {
  .audit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-badge-float {
    display: none;
  }

  .port-thumb {
    height: 250px;
  }
}

@media (max-width:500px) {
  .audit-grid {
    grid-template-columns: 1fr;
  }
}

.audit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.audit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.audit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(85, 42, 202, 0.2);
}

.audit-card:hover::after {
  transform: scaleX(1);
}

.audit-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.audit-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.audit-card p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── FAQ (centered) ── */
.faq {
  background: var(--surface);
}

.faq-head {
  text-align: center;
  margin-bottom: 56px;
}

.faq-head .sec-label {
  justify-content: center;
}

.faq-head .sec-label::before {
  display: none;
}

.faq-head .sec-title {
  max-width: 540px;
  margin: 0 auto 12px;
}

.faq-head .sec-desc {
  margin: 0 auto;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.faq-item:hover {
  border-color: rgba(85, 42, 202, 0.3);
}

.faq-item.open {
  border-color: var(--primary);
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  text-align: left;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color 0.2s;
  line-height: 1.4;
}

.faq-q:hover,
.faq-item.open .faq-q {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s, background 0.25s, color 0.25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 24px 22px;
}

/* ── CTA ── */
.final-cta {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 100px 0%;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(85, 42, 202, 0.28) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta .sec-label {
  justify-content: center;
  color: rgba(139, 92, 246, 0.9);
}

.final-cta .sec-label::before {
  display: none;
}

.final-cta h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.final-cta>p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 500px;
  margin: 0 auto 42px;
  position: relative;
  z-index: 1;
  line-height: 1.72;
}

.final-cta .btn-primary {
  box-shadow: 0 12px 50px rgba(85, 42, 202, 0.52);
  position: relative;
  z-index: 1;
}

.cta-notes {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cta-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-note::before {
  content: '·';
  color: var(--primary-light);
  font-size: 1.4rem;
  line-height: 0.5;
}

/* ── FOOTER ── */
footer {
  background: #080612;
  color: rgba(255, 255, 255, 0.38);
  padding: 36px 0%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.32);
  max-width: 420px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

/* ── THANK YOU PAGE ── */
.thankyou-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.thankyou-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 10%, rgba(85, 42, 202, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(139, 92, 246, 0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.thankyou-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.thankyou-bg-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(85, 42, 202, 0.08) 0%, transparent 65%);
  top: -100px;
  right: -80px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.thankyou-bg-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 65%);
  bottom: -50px;
  left: -60px;
  animation: orbFloat2 10s ease-in-out infinite;
}

.thankyou-bg-orb-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(85, 42, 202, 0.05) 0%, transparent 70%);
  top: 40%;
  left: 15%;
  animation: orbFloat3 7s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 15px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -20px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}

.thankyou-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  animation: fadeUp 0.85s ease both;
}

.thankyou-icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 32px;
  position: relative;
}

.thankyou-check {
  width: 90px;
  height: 90px;
}

.check-circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: drawCircle 0.8s 0.3s ease forwards;
}

.check-mark {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.5s 1s ease forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thankyou-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.035em;
}

.thankyou-title .hl {
  color: var(--primary);
}

.thankyou-sub {
  font-size: 1.12rem;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.72;
}

.thankyou-sub strong {
  color: var(--primary);
  font-weight: 600;
}

/* What Happens Next Steps */
.thankyou-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.thankyou-step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.thankyou-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.thankyou-step:hover {
  border-color: rgba(85, 42, 202, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.thankyou-step:hover::before {
  transform: scaleX(1);
}

.thankyou-step-num {
  width: 36px;
  height: 36px;
  background: var(--primary-xlight);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  transition: background 0.25s, color 0.25s;
}

.thankyou-step:hover .thankyou-step-num {
  background: var(--primary);
  color: #fff;
}

.thankyou-step-body h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.thankyou-step-body p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 768px) {
  .thankyou-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .thankyou-hero {
    padding: 110px 0 72px;
  }

  .thankyou-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .thankyou-check {
    width: 72px;
    height: 72px;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-top {
  animation: fadeUp 0.85s ease both;
}

.hero-bottom {
  animation: fadeUp 1s 0.18s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:768px) {

  section,
  .final-cta {
    padding: 72px 0%;
  }

  nav {
    padding: 14px 0%;
  }

  .hero {
    padding: 70px 0% 0;
  }
}