:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #111111;
  --muted: #666666;
  --line: #eaeaea;
  --soft: #f9f9fb;
  --purple: #9563b6;
  --purple-dark: #7c46a0;
  --purple-soft: #f4eef8;
  --card: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --radius-sm: 8px;
  --button-radius: 999px;
  --shell: 1200px;
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: #001e37;
}

p {
  color: var(--muted);
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.home-page .shell {
  width: min(calc(100% - 64px), 1240px);
}

main section,
.footer-section {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid rgba(149, 99, 182, 0.18);
  box-shadow: 0 4px 30px rgba(80, 30, 120, 0.08);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 84px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand img {
  width: auto;
  height: 36px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: center;
}

.site-nav a {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--purple);
}

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font);
  transition: color 180ms ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown[data-open] .nav-dropdown-toggle,
.nav-dropdown-toggle.is-active {
  color: var(--purple);
}

.nav-dropdown-arrow {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.nav-dropdown[data-open] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  list-style: none;
  margin: 0;
  padding: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 84%, rgba(255, 255, 255, 0.95) 0 14%, transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.76) 0 10%, transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.52) 46%, rgba(255, 255, 255, 0.38));
  backdrop-filter: blur(80px) saturate(195%) brightness(1.08);
  -webkit-backdrop-filter: blur(80px) saturate(195%) brightness(1.08);
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(149, 99, 182, 0.14);
  border-bottom: 1px solid rgba(149, 99, 182, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(255, 255, 255, 0.36),
    0 18px 52px rgba(75, 27, 104, 0.18);
  white-space: nowrap;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 200;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent 58%);
  mix-blend-mode: screen;
}

.nav-dropdown[data-open] .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  position: relative;
  z-index: 1;
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  color: #333333;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.48);
  color: var(--purple);
}

.download-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--button-radius);
  background: var(--purple);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 28px;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.nav-download {
  justify-self: end;
}

.download-link:hover,
.download-link:focus-visible {
  background: var(--purple-dark);
  box-shadow: 0 12px 26px rgba(149, 99, 182, 0.22);
  transform: translateY(-1px);
}

.nav-mobile-download,
.nav-toggle {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
}

.nav-toggle span {
  grid-column: 1;
  grid-row: 1;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-5px);
}

.nav-toggle span:last-child {
  transform: translateY(5px);
}

.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero-section {
  padding: 64px 0 100px;
  text-align: center;
}

.home-hero {
  overflow: hidden;
  padding: 72px 0 92px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  align-items: center;
  gap: 68px;
}

.home-hero-copy {
  min-width: 0;
}

.home-hero-title {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(54px, 7vw, 86px);
  font-weight: 800;
  line-height: 0.95;
}

.home-hero-copy .hero-desc {
  margin-inline: 0;
  text-align: left;
}

.home-hero-btns {
  justify-content: flex-start;
}

.home-hero-media {
  margin: 0;
}

.home-hero-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(40, 21, 56, 0.12);
}

.hero-inner {
  max-width: 760px;
}

.page-hero {
  padding: 72px 0 88px;
  text-align: center;
}

.page-hero-inner {
  max-width: 820px;
}

.hero-title {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(44px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
}

.hero-desc {
  max-width: 680px;
  margin: 0 auto 40px;
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
}

.stats-section {
  padding: 22px 0 76px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 26px;
  text-align: center;
}

.stat-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--purple);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
}

.stat-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-btns,
.cta-btns,
.footer-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: #ffffff;
  padding: 8px 20px;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.app-btn-hero {
  border-radius: var(--button-radius);
  padding: 10px 24px;
}

.app-btn:hover,
.app-btn:focus-visible {
  border-color: rgba(149, 99, 182, 0.24);
  box-shadow: 0 12px 26px rgba(69, 34, 96, 0.08);
  transform: translateY(-1px);
}

.app-btn img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.app-btn-col {
  display: flex;
  flex-direction: column;
}

.app-btn-top {
  margin-bottom: 3px;
  color: #666666;
  font-size: 10px;
  line-height: 1;
}

.app-btn-bottom {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.mission-section {
  padding: 60px 0 120px;
}

.mission-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.mission-img-wrapper {
  flex: 1.2;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
}

.mission-img {
  width: 100%;
  height: auto;
}

.mission-content {
  flex: 1;
  min-width: 0;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--purple-soft);
  color: #7b4b9a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 0 20px;
  padding: 6px 14px;
  text-transform: uppercase;
}

.section-title {
  color: var(--ink);
  font-size: clamp(32px, 3.7vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.mission-content .section-title {
  margin-bottom: 20px;
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.section-desc-center {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.mission-content .section-desc {
  max-width: 560px;
  margin: 0 0 40px;
  text-align: left;
}

.mission-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.m-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.m-feature-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.m-feature-title {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.m-feature-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.features-section {
  padding: 100px 0;
  background: var(--soft);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header .section-title {
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.service-card-content {
  padding: 28px;
}

.service-card h3,
.team-card h3,
.team-principle h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.service-card p,
.team-card p,
.team-principle p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.feature-card {
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 32px;
}

.feature-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.feature-card h3,
.process-card h3,
.value-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.feature-card p,
.process-card p,
.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.process-section {
  padding: 120px 0;
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  background: var(--card);
  padding: 40px 32px;
}

.process-bg-num {
  position: absolute;
  top: -10px;
  right: 20px;
  z-index: 0;
  color: #f8f6fa;
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.process-card-content {
  position: relative;
  z-index: 1;
}

.process-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
}

.process-card h3 {
  font-size: 20px;
}

.values-section {
  padding: 120px 0;
  background: var(--soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  background: var(--card);
  padding: 32px;
}

.value-card img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.split-section,
.team-values-section {
  padding: 110px 0;
  background: var(--bg);
}

.split-container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 72px;
}

.split-content .section-title {
  margin-bottom: 18px;
}

.split-content .section-desc {
  max-width: 560px;
  margin-bottom: 36px;
}

.split-media {
  margin: 0;
}

.split-media img {
  width: 100%;
}

.team-section {
  padding: 30px 0 110px;
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.team-card > img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.team-card-content {
  padding: 24px;
}

.team-role {
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
}

.team-values-section {
  background: var(--soft);
}

.team-principles {
  display: grid;
  gap: 18px;
}

.team-principle {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  background: var(--card);
  padding: 24px;
}

.team-principle img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.cta-section {
  padding: 100px 0;
  background: var(--bg);
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #7e50a8 0%, #4a2870 100%);
  padding: 80px 40px;
  text-align: center;
  color: #ffffff;
}

.cta-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, #a4c867 0%, #46b995 50%, #4e86c6 100%);
}

.cta-title {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
}

.cta-desc {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.cta-btns .app-btn {
  border-color: rgba(255, 255, 255, 0.42);
}

.footer-section {
  padding: 80px 0 40px;
  background: var(--bg);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  width: auto;
  height: 40px;
  margin: 0 auto 24px;
}

.footer-tagline {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-btns {
  margin-bottom: 64px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
}

.footer-links a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d1d1d1;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--purple);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.footer-bottom p,
.footer-bottom > a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom p {
  justify-self: start;
}

.footer-bottom > a {
  justify-self: end;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-socials a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(149, 99, 182, 0.28);
  box-shadow: 0 12px 26px rgba(69, 34, 96, 0.08);
  transform: translateY(-1px);
  color: #9563b6;
}

.footer-socials svg,
.footer-socials .footer-social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.site-nav a:focus-visible,
.download-link:focus-visible,
.nav-toggle:focus-visible,
.app-btn:focus-visible,
.footer-links a:focus-visible,
.footer-bottom a:focus-visible,
.footer-socials a:focus-visible {
  outline: 3px solid rgba(149, 99, 182, 0.25);
  outline-offset: 4px;
}

.delay-100 {
  --delay: 100ms;
}

.delay-200 {
  --delay: 200ms;
}

.delay-300 {
  --delay: 300ms;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--delay, 0ms);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .mission-container {
    flex-direction: column;
    gap: 44px;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-inner,
  .split-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-hero-copy,
  .home-hero-copy .hero-desc {
    text-align: center;
  }

  .home-hero-copy .hero-desc {
    margin-inline: auto;
  }

  .home-hero-btns {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  body::before {
    content: "";
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    height: min(368px, calc(100vh - 66px));
    z-index: 45;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(2.5px) saturate(150%) brightness(1.04);
    -webkit-backdrop-filter: blur(2.5px) saturate(150%) brightness(1.04);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  body.nav-open::before {
    opacity: 1;
    pointer-events: auto;
  }

  .header-inner {
    display: flex;
    min-height: 66px;
    gap: 16px;
  }

  .brand img {
    height: 35px;
  }

  .nav-download {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100vw;
    display: grid;
    gap: 6px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(149, 99, 182, 0.14);
    border-radius: 0 0 18px 18px;
    background:
      radial-gradient(circle at 11% 84%, rgba(255, 255, 255, 0.95) 0 14%, transparent 34%),
      radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.76) 0 10%, transparent 30%),
      linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.52) 46%, rgba(255, 255, 255, 0.38));
    backdrop-filter: blur(80px) saturate(195%) brightness(1.08);
    -webkit-backdrop-filter: blur(80px) saturate(195%) brightness(1.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      inset 0 -1px 0 rgba(255, 255, 255, 0.36),
      0 18px 52px rgba(75, 27, 104, 0.18);
    padding: 12px 18px 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent 58%);
    mix-blend-mode: screen;
  }

  .site-nav::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.58), transparent 48%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
    opacity: 0.85;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.download-link) {
    position: relative;
    z-index: 1;
    min-height: 52px;
    border-radius: 10px;
    padding: 17px 6px;
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.15;
  }

  .site-nav a:not(.download-link):hover,
  .site-nav a:not(.download-link):focus-visible {
    background: rgba(255, 255, 255, 0.48);
    color: #111111;
  }

  .nav-mobile-download {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 100%;
    margin-top: 4px;
  }

  .site-nav .nav-mobile-download {
    color: #ffffff;
  }

  .nav-dropdown {
    position: static;
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown-toggle {
    position: relative;
    z-index: 1;
    min-height: 52px;
    border-radius: 10px;
    padding: 17px 6px;
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.15;
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.48);
    color: #111111;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.36);
    padding: 2px 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease, padding 220ms ease;
    white-space: normal;
    min-width: 0;
  }

  .nav-dropdown[data-open] .nav-dropdown-menu {
    pointer-events: auto;
    max-height: 300px;
    padding: 4px 6px 8px;
    transform: none;
  }

  .nav-dropdown-menu a {
    position: relative;
    z-index: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.48);
    color: #111111;
  }

  .hero-section,
  .page-hero,
  .home-hero {
    padding: 48px 0 52px;
  }

  .mission-section,
  .features-section,
  .process-section,
  .values-section,
  .team-section,
  .split-section,
  .team-values-section,
  .cta-section {
    padding-block: 72px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header .section-title br,
  .footer-tagline br {
    display: none;
  }

  .hero-title {
    margin-bottom: 20px;
    font-size: clamp(34px, 8vw, 42px);
  }

  .home-hero-title {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-desc,
  .section-desc,
  .cta-desc {
    font-size: 14px;
  }

  .mission-img-wrapper {
    border-radius: 24px;
  }

  .features-grid,
  .process-grid,
  .service-grid,
  .team-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .process-card,
  .value-card {
    min-height: auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 56px 24px;
  }

  .footer-section {
    padding-top: 64px;
  }

  .footer-btns,
  .footer-links {
    margin-bottom: 42px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-bottom p,
  .footer-bottom > a {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .hero-title,
  .section-title {
    font-size: clamp(29px, 8vw, 34px);
  }

  .hero-desc {
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-btns,
  .cta-btns,
  .footer-btns {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .app-btn {
    width: 100%;
    justify-content: center;
  }

  .mission-content .section-desc,
  .section-desc-center {
    max-width: 320px;
  }

  .feature-card,
  .process-card,
  .value-card {
    padding: 22px;
  }

  .process-bg-num {
    font-size: 120px;
  }

  .value-card {
    gap: 18px;
  }

  .cta-card {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* Home page */
.home-page .site-header {
  background: rgba(255, 255, 255, 0.75);
}

.home-page .download-link {
  border-radius: var(--button-radius);
}

.home-page .lp-hero {
  padding: 60px 0 100px;
  background: #ffffff;
}

.home-page .lp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  align-items: center;
  gap: 64px;
}

.home-page .lp-hero__copy {
  min-width: 0;
}

.home-page .lp-hero__eyebrow {
  margin: 0 0 16px;
  color: #666666;
  font-size: 14px;
  line-height: 1.4;
}

.home-page .lp-hero__title {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(48px, 5.6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.home-page .lp-hero__desc {
  max-width: 560px;
  margin: 0 0 38px;
  color: #666666;
  font-size: 18px;
  line-height: 1.6;
}

.home-page .lp-hero__actions {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.home-page .lp-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-page .lp-rating__stars {
  color: var(--purple);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

.home-page .lp-rating__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.home-page .lp-hero__media {
  margin: 0 -24px 0 0;
}

.home-page .lp-hero__media img {
  width: 100%;
  height: auto;
}

.home-page .lp-services {
  padding: 100px 0;
  background: #ffffff;
}

.home-page .lp-services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.home-page .lp-services__title h2,
.home-page .lp-section-center h2,
.home-page .lp-insights__lead h2,
.home-page .lp-faq__intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.home-page .lp-services__title {
  max-width: 620px;
}

.home-page .lp-services__desc {
  max-width: 440px;
}

.home-page .lp-services__desc p,
.home-page .lp-section-center p,
.home-page .lp-faq__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.home-page .lp-divider {
  width: 100%;
  height: auto;
  margin-bottom: 64px;
}

.home-page .lp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.home-page .lp-service-card {
  display: flex;
  flex-direction: column;
}

.home-page .lp-service-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 32px;
}

.home-page .lp-service-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.home-page .lp-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.home-page .lp-why {
  padding: 100px 0;
  background: #fafafc;
}

.home-page .lp-section-center {
  margin-bottom: 64px;
  text-align: center;
}

.home-page .lp-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.home-page .lp-why__stack {
  display: grid;
  gap: 32px;
}

.home-page .lp-why-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  padding: 32px;
  text-align: left;
}

.home-page .lp-why-card__icon {
  width: 48px;
  height: 48px;
}

.home-page .lp-why-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.home-page .lp-why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.home-page .lp-why__art {
  margin: 0;
}

.home-page .lp-why__art img {
  width: 100%;
  display: block;
}

.home-page .lp-why__art--posted {
  position: relative;
}

.home-page .lp-why__posted-img {
  border-radius: 24px;
  animation: lp-why-float 5s ease-in-out infinite;
}

.home-page .lp-why__sparkle {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  animation: lp-why-sparkle 3.6s ease-in-out infinite;
}

.home-page .lp-why__sparkle--1 {
  top: 6%;
  left: -6%;
  width: 18px;
  height: 18px;
  background: var(--purple);
  opacity: 0.55;
  animation-delay: 0s;
}

.home-page .lp-why__sparkle--2 {
  top: 58%;
  right: -8%;
  width: 14px;
  height: 14px;
  background: #ffcc4d;
  opacity: 0.7;
  animation-delay: 1.2s;
}

.home-page .lp-why__sparkle--3 {
  bottom: 8%;
  left: 4%;
  width: 24px;
  height: 24px;
  border: 4px solid #ff6b81;
  opacity: 0.6;
  animation-delay: 2.4s;
}

@keyframes lp-why-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes lp-why-sparkle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-16px) scale(1.2); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .lp-why__posted-img,
  .home-page .lp-why__sparkle {
    animation: none;
  }
}

.home-page .lp-steps {
  padding: 100px 0;
  background: #fafafc;
}

.home-page .lp-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.home-page .lp-step-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  padding: 40px 32px;
}

.home-page .lp-step-number {
  position: absolute;
  top: -18px;
  right: 18px;
  color: #f4eef8;
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.home-page .lp-step-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.home-page .lp-step-card__icon {
  width: 56px;
  height: 56px;
}

.home-page .lp-step-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.home-page .lp-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.home-page .lp-insights {
  padding: 100px 0;
  background: #ffffff;
}

.home-page .lp-insights__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.home-page .lp-insights__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.home-page .lp-insights__lead {
  align-self: flex-start;
}

.home-page .lp-insights__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-page .lp-insight-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  padding: 24px;
}

.home-page .lp-insight-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.home-page .lp-insight-card__value {
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.home-page .lp-insight-card img {
  width: 22px;
  height: 22px;
  opacity: 0.35;
}

.home-page .lp-insight-card__label {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.home-page .lp-insights__media {
  align-self: center;
  margin: 0;
  justify-self: end;
}

.home-page .lp-insights__media img {
  width: 100%;
  max-width: 520px;
  display: block;
}

.home-page .lp-testimonials {
  padding: 100px 0;
  background: #fafafc;
}

.home-page .lp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.home-page .lp-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  padding: 32px;
}

.home-page .lp-testimonial__stars {
  margin-bottom: 24px;
  color: var(--purple);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

.home-page .lp-testimonial__quote {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.home-page .lp-testimonial__person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-page .lp-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.home-page .lp-testimonial__name {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.home-page .lp-testimonial__role {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.home-page .lp-faq {
  padding: 100px 0;
  background: #ffffff;
}

.home-page .lp-faq__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  gap: 100px;
  align-items: flex-start;
}

.home-page .lp-faq__intro p {
  margin-bottom: 32px;
}

.home-page .lp-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.home-page .lp-outline-btn:hover,
.home-page .lp-outline-btn:focus-visible {
  border-color: rgba(149, 99, 182, 0.24);
  box-shadow: 0 12px 26px rgba(69, 34, 96, 0.08);
  transform: translateY(-1px);
}

.home-page .lp-outline-btn:focus-visible,
.home-page .lp-faq__item summary:focus-visible,
.home-page .lp-faq__note a:focus-visible {
  outline: 3px solid rgba(149, 99, 182, 0.25);
  outline-offset: 4px;
}

.home-page .lp-faq__list {
  display: flex;
  flex-direction: column;
}

.home-page .lp-faq__item {
  margin: 0 0 24px;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.home-page .lp-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.home-page .lp-faq__item summary:focus-visible {
  border-radius: 8px;
}

.home-page .lp-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-page .lp-faq__item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.home-page .lp-faq__item[open] summary::after {
  content: "-";
}

.home-page .lp-faq__answer {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.home-page .lp-faq__note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.home-page .lp-faq__note a {
  color: var(--purple);
  font-weight: 600;
}

.home-page .home-footer {
  background: #fafafc;
}

.home-page .home-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .home-footer .footer-tagline {
  max-width: 420px;
  margin: 0 auto 32px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.home-page .home-footer .footer-btns,
.home-page .home-footer .footer-links {
  margin-bottom: 64px;
}

.home-page .home-footer .footer-bottom {
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

@media (max-width: 980px) {
  .home-page .shell {
    width: min(calc(100% - 48px), 1240px);
  }

  .home-page .lp-hero__inner,
  .home-page .lp-faq__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-page .lp-hero__copy {
    text-align: center;
  }

  .home-page .lp-hero__desc {
    margin-inline: auto;
  }

  .home-page .lp-hero__actions,
  .home-page .lp-rating {
    justify-content: center;
  }

  .home-page .lp-hero__media,
  .home-page .lp-insights__media {
    margin-right: 0;
    justify-self: center;
  }

  .home-page .lp-services__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .lp-services__grid,
  .home-page .lp-steps__grid,
  .home-page .lp-testimonials__grid,
  .home-page .lp-insights__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .lp-why__grid {
    grid-template-columns: 1fr;
  }

  .home-page .lp-why__stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-page .shell {
    width: min(calc(100% - 32px), 1240px);
  }

  .home-page .lp-hero,
  .home-page .lp-services,
  .home-page .lp-why,
  .home-page .lp-steps,
  .home-page .lp-insights,
  .home-page .lp-testimonials,
  .home-page .lp-faq {
    padding: 72px 0;
  }

  .home-page .lp-hero__title {
    font-size: clamp(36px, 10vw, 46px);
    letter-spacing: -0.8px;
  }

  .home-page .lp-hero__desc {
    font-size: 14px;
  }

  .home-page .lp-insights__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-page .lp-insights__media {
    max-width: 480px;
    justify-self: center;
  }

  .home-page .lp-insights__media img {
    margin-inline: auto;
  }

  .home-page .lp-services__grid,
  .home-page .lp-steps__grid,
  .home-page .lp-testimonials__grid,
  .home-page .lp-insights__cards,
  .home-page .lp-why__stack {
    grid-template-columns: 1fr;
  }

  .home-page .lp-why-card,
  .home-page .lp-step-card,
  .home-page .lp-insight-card,
  .home-page .lp-testimonial {
    padding: 24px;
  }

  .home-page .lp-step-number {
    font-size: 120px;
  }

  .home-page .lp-faq__item summary {
    font-size: 16px;
  }

  .home-page .home-footer .footer-tagline {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .home-page .hero-btns,
  .home-page .cta-btns,
  .home-page .footer-btns {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .home-page .lp-hero__actions {
    max-width: 320px;
    margin-inline: auto;
  }

  .home-page .lp-services__title h2,
  .home-page .lp-section-center h2,
  .home-page .lp-insights__lead h2,
  .home-page .lp-faq__intro h2 {
    font-size: clamp(28px, 8.4vw, 32px);
    letter-spacing: -0.4px;
  }

  .home-page .lp-services__head,
  .home-page .lp-section-center,
  .home-page .lp-insights__lead,
  .home-page .lp-faq__intro {
    text-align: center;
  }

  .home-page .lp-services__head,
  .home-page .lp-insights__layout {
    align-items: center;
  }

  .home-page .lp-services__title,
  .home-page .lp-services__desc,
  .home-page .lp-insights__lead {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .home-page .lp-faq__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-page .lp-outline-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================================
   Team page
   ============================================================ */

/* CEO spotlight slider */
.team-ceo-section {
  padding: 72px 0 120px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.ceo-slider-header {
  text-align: center;
  margin-bottom: 56px;
}

.ceo-slider-header .team-ceo__eyebrow,
.ceo-slider-header .team-ceo__heading {
  margin-left: auto;
  margin-right: auto;
}

.ceo-slider {
  position: relative;
  overflow: hidden;
}

.ceo-slides-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ceo-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

.ceo-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.ceo-slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
  flex-shrink: 0;
}

.ceo-slider-btn:hover {
  border-color: rgba(149, 99, 182, 0.35);
  box-shadow: 0 4px 16px rgba(69, 34, 96, 0.08);
  color: var(--purple);
}

.ceo-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ceo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  transition: background 200ms ease, transform 200ms ease, width 200ms ease;
}

.ceo-dot.is-active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

/* Anonymous avatar inside CEO media */
.team-ceo__avatar {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 12px solid #ffffff;
  box-shadow: var(--shadow-strong);
  margin-left: auto;
  display: block;
}

.team-ceo__avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

.team-ceo__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 80px;
}

.team-ceo__eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.team-ceo__heading {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: clamp(42px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.team-ceo__name {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.team-ceo__role {
  margin: 0 0 28px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.team-ceo__desc {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.team-ceo__desc:last-of-type {
  margin-bottom: 0;
}

.team-ceo__quote {
  margin: 24px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--purple);
  background: var(--purple-soft);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
}

.team-ceo__media {
  margin: 0;
}

.team-ceo__media img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  border: 12px solid #ffffff;
  box-shadow: var(--shadow-strong);
  object-fit: cover;
  display: block;
  margin-left: auto;
}

/* Team section */
.team-section {
  padding: 100px 0 120px;
  background: var(--soft, #fafafc);
}

/* Team grid — 3-col centered cards */
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.team-card {
  overflow: visible;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
}

.team-card > img {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  margin-bottom: 24px;
}

.team-card-content {
  padding: 0;
}

.team-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Anonymous avatar — matches .team-card > img exactly */
.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  margin-bottom: 24px;
  overflow: hidden;
}

.team-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Contact section */
.team-contact-section {
  padding: 100px 0;
  background: #fafafc;
}

.team-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1040px;
  margin: 0 auto;
}

.team-contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 16px;
}

.team-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.team-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple);
}

.team-contact-icon svg {
  display: block;
}

.team-contact-item-title {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.team-contact-item-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.team-contact-item-desc a {
  color: inherit;
  transition: color 180ms ease;
}

.team-contact-item-desc a:hover {
  color: var(--purple);
}

.team-contact-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.team-contact-form .form-group {
  margin-bottom: 24px;
}

.team-contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.team-contact-form input,
.team-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.team-contact-form input::placeholder,
.team-contact-form textarea::placeholder {
  color: #a0a0a0;
}

.team-contact-form input:focus,
.team-contact-form textarea:focus {
  border-color: rgba(149, 99, 182, 0.4);
  box-shadow: 0 0 0 3px rgba(149, 99, 182, 0.08);
  outline: none;
}

.team-contact-form textarea {
  height: 120px;
  resize: none;
}

.team-contact-submit {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: var(--purple);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  margin-top: 8px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.team-contact-submit:hover,
.team-contact-submit:focus-visible {
  background: var(--purple-dark);
  box-shadow: 0 12px 26px rgba(149, 99, 182, 0.22);
  transform: translateY(-1px);
}

.team-contact-submit:focus-visible {
  outline: 3px solid rgba(149, 99, 182, 0.25);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .team-ceo__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .team-ceo__media img {
    max-width: 420px;
    margin-inline: auto;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 600px;
  }
}

@media (max-width: 760px) {
  .team-ceo-section {
    padding: 56px 0 72px;
  }

  .team-ceo__heading {
    font-size: clamp(36px, 10vw, 46px);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-contact-section {
    padding-block: 72px;
  }

  .team-contact-form {
    padding: 28px 24px;
  }
}


/* ============================================================
   Policies page
   ============================================================ */

.policy-body {
  padding: 40px 0 100px;
}

.policy-body-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.policy-lead {
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.8;
}

.policy-section {
  display: flex;
  flex-direction: column;
}

.policy-section-title {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.policy-section p {
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.8;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.policy-bullet {
  display: block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  margin-top: 10px;
}

.policy-list-item p {
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .policy-body {
    padding: 32px 0 72px;
  }

  .policy-body-inner {
    gap: 48px;
  }

  .policy-section-title {
    font-size: 20px;
  }

  .policy-lead,
  .policy-section p,
  .policy-list-item p {
    font-size: 15px;
  }
}

/* ── Policy Cards (overview page) ── */
.policy-cards-section {
  padding: 72px 0 100px;
}

.policy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.policy-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.policy-card:hover {
  border-color: rgba(149, 99, 182, 0.3);
  box-shadow: 0 8px 32px rgba(75, 27, 104, 0.1);
  transform: translateY(-2px);
}

.policy-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(149, 99, 182, 0.1);
  color: var(--purple);
  margin-bottom: 4px;
}

.policy-card-title {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.policy-card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.policy-card-link {
  color: var(--purple);
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .policy-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .policy-cards-section {
    padding: 48px 0 72px;
  }

  .policy-card {
    padding: 24px;
  }
}

/* ── Policy Tabs ── */
.policy-tabs-wrap {
  position: sticky;
  top: 66px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.policy-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.policy-tabs::-webkit-scrollbar {
  display: none;
}

.policy-tab {
  flex: 0 0 auto;
  padding: 14px 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
  text-decoration: none;
}

.policy-tab:hover {
  color: var(--ink);
}

.policy-tab.is-active {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

/* ── Policy Documents ── */
.policy-doc {
  padding: 80px 0;
  scroll-margin-top: 120px;
}

.policy-doc-alt {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.policy-doc-inner {
  max-width: 860px;
  margin: 0 auto;
}

.policy-doc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-doc-label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.policy-doc-title {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-section-title {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.policy-section p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.85;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.policy-bullet {
  display: block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  margin-top: 10px;
}

.policy-list-item p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 760px) {
  .policy-tabs-wrap {
    top: 60px;
  }

  .policy-tab {
    padding: 12px 18px;
    font-size: 13px;
  }

  .policy-doc {
    padding: 56px 0;
    scroll-margin-top: 106px;
  }

  .policy-doc-head {
    margin-bottom: 32px;
    padding-bottom: 20px;
  }

  .policy-doc-title {
    font-size: 24px;
  }

  .policy-section-title {
    font-size: 16px;
  }

  .policy-section p,
  .policy-list-item p {
    font-size: 14px;
  }

  .policy-content {
    gap: 32px;
  }
}

/* ============================================================
   Categories Marquee
   ============================================================ */

.categories-marquee {
  padding: 56px 0;
  background: linear-gradient(180deg, #f8f4fc 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.marquee-fade-wrap {
  margin-block: -18px;
  padding-block: 18px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-ltr 36s linear infinite;
  will-change: transform;
}

.marquee-fade-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-ltr {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0%); }
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  cursor: default;
  user-select: none;
  animation: cat-wave 2.4s ease-in-out infinite;
  animation-delay: calc(var(--wave-i, 0) * 80ms);
}

.cat-item:hover {
  animation-play-state: paused;
}

.cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 2px 0px rgba(255, 255, 255, 0.9) inset,
    0 6px 20px rgba(149, 99, 182, 0.12),
    0 16px 40px rgba(149, 99, 182, 0.08);
  transition:
    transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 240ms ease;
  flex-shrink: 0;
  overflow: hidden;
}

.cat-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.cat-item:hover .cat-icon {
  transform: scale(1.1);
  box-shadow:
    0 2px 0px rgba(255, 255, 255, 0.9) inset,
    0 8px 24px rgba(149, 99, 182, 0.18),
    0 20px 48px rgba(149, 99, 182, 0.16);
}

.cat-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 240ms ease;
}

.cat-item:hover .cat-label {
  color: var(--purple);
}

@keyframes cat-wave {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .cat-item {
    animation: none;
  }
}

/* ── Instagram Reels Section ── */
.home-page .lp-reels {
  padding: 100px 0;
  background: #fafafc;
}

.reels-ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #833ab4 0%, #c13584 50%, #fd1d1d 100%);
  border-radius: 100px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.reels-handle-link {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}
.reels-handle-link:hover {
  text-decoration: underline;
}

.reels-scroll-wrap {
  position: relative;
}

.reels-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: var(--button-radius);
  background: #ffffff;
  color: var(--purple);
  border: 1.5px solid rgba(149, 99, 182, 0.20);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
  flex-shrink: 0;
}

.reels-arrow:hover:not(:disabled) {
  border-color: rgba(149, 99, 182, 0.45);
  box-shadow: 0 6px 20px rgba(149, 99, 182, 0.18);
  transform: translateY(-50%) scale(1.06);
}

.reels-arrow:disabled {
  opacity: 0.30;
  cursor: not-allowed;
  box-shadow: none;
}

.reels-arrow--prev { left: -20px; }
.reels-arrow--next { right: -20px; }

.lp-reels__grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 48px 0 44px;
  padding: 4px 0 4px;
  scrollbar-width: none;
}

.lp-reels__grid::-webkit-scrollbar {
  display: none;
}

.reel-embed {
  flex: 0 0 280px;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  height: 480px;
  background: #fff;
  position: relative;
}

.reel-embed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, #fafafc 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 16px 16px;
}

.reel-embed blockquote {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  border-radius: 0 !important;
}

.reel-embed iframe {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  border: none !important;
  margin-top: -58px !important;
  border-radius: 0 !important;
}

.reel-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease;
}
.reel-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.20);
}

.reel-card__thumb {
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.reel-card__thumb--1 { background: linear-gradient(160deg, #833ab4 0%, #c13584 55%, #e1306c 100%); }
.reel-card__thumb--2 { background: linear-gradient(160deg, #405de6 0%, #5851db 55%, #833ab4 100%); }
.reel-card__thumb--3 { background: linear-gradient(160deg, #fd1d1d 0%, #e1306c 55%, #fcb045 100%); }
.reel-card__thumb--4 { background: linear-gradient(160deg, #f77737 0%, #fd1d1d 55%, #c13584 100%); }

.reel-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: background 220ms ease, transform 220ms ease;
}
.reel-card:hover .reel-play {
  background: rgba(255, 255, 255, 0.38);
  transform: scale(1.12);
}

.reel-card__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.lp-reels__cta {
  text-align: center;
}

.reels-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #833ab4 0%, #c13584 50%, #fd1d1d 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--button-radius);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(193, 53, 132, 0.38);
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.reels-follow-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(193, 53, 132, 0.48);
}

@media (max-width: 760px) {
  .home-page .lp-reels {
    padding: 64px 0;
  }
  .lp-reels__grid {
    margin: 32px 0 32px;
    padding: 4px 0 4px;
    gap: 10px;
  }
  .reel-embed {
    flex: 0 0 240px;
    height: 400px;
  }
  .reels-arrow--prev { left: -12px; }
  .reels-arrow--next { right: -12px; }
}

@media (prefers-reduced-motion: reduce) {
}

/* ─── How It Works page ───────────────────────── */
.hiw-section-head {
  padding: 64px 0 48px;
  text-align: center;
}

.hiw-section-head .section-header {
  margin-bottom: 0;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
}

.hiw-step {
  padding: 80px 0;
}

.hiw-step-alt {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hiw-step-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hiw-step-inner.is-reversed {
  flex-direction: row-reverse;
}

.hiw-step-text {
  flex: 1;
  min-width: 0;
}

.hiw-step-title {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hiw-step-desc {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.hiw-step-vis {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hiw-step-gif {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  filter: url(#remove-black);
}

/* Phone mockup frame */
.hiw-phone {
  position: relative;
  width: 240px;
  height: 490px;
  border: 10px solid #111;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.13);
  background: #fff;
}

.hiw-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #111;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

/* Screen layout */
.hiw-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hiw-screen-topbar {
  flex: 0 0 auto;
  height: 28px;
  background: var(--purple);
}

.hiw-screen-body {
  flex: 1;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* Mock UI atoms */
.hiw-mock-bar {
  height: 9px;
  border-radius: 999px;
  background: #e8e8ec;
}

.hiw-mock-input {
  height: 34px;
  background: #f5f5f7;
  border-radius: 6px;
  border: 1px solid #e8e8ec;
  flex: 0 0 auto;
}

.hiw-mock-btn {
  height: 36px;
  background: var(--purple);
  border-radius: var(--button-radius);
  flex: 0 0 auto;
}

.hiw-mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hiw-mock-card {
  border-radius: 8px;
  background: #f0f0f4;
  aspect-ratio: 3 / 4;
}

.hiw-mock-card:nth-child(even) {
  background: #e8e8ec;
}

/* Chat bubbles */
.hiw-chat-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.hiw-bubble {
  max-width: 78%;
  padding: 8px 11px;
  border-radius: 14px;
  font-size: 10px;
  line-height: 1.45;
}

.hiw-bubble.sent {
  background: var(--purple);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.hiw-bubble.recv {
  background: #f0f0f4;
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* Success screen */
.hiw-success-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--purple-soft) 0%, #fff 70%);
}

.hiw-success-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
}

.hiw-success-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.hiw-success-sub {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .hiw-step-inner,
  .hiw-step-inner.is-reversed {
    flex-direction: column;
    gap: 44px;
    text-align: center;
  }

  .hiw-step-text .section-pill {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .hiw-step {
    padding: 60px 0;
  }

  .hiw-phone {
    width: 200px;
    height: 408px;
  }
}

@media (max-width: 520px) {
  .hiw-section-head {
    padding: 48px 0 32px;
  }

  .hiw-step {
    padding: 48px 0;
  }

  .hiw-phone {
    width: 180px;
    height: 367px;
  }
}
