:root {
  --page-bg: #ffffff;
  --card-from: #c0d6df;
  --card-via: #dbe9ee;
  --card-to: #c0d6df;
  --primary: #7030a0;
  --primary-hover: #5c2680;
  --text: #4a3070;
  --accent-blue: #2274a5;
  --accent-blue-hover: #1b6189;
  --accent-green: #84c318;
  --accent-green-hover: #6fa214;
  --accent-border: #c0d6df;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.75);
  --shadow: 0 24px 60px rgba(112, 48, 160, 0.18);
}

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

body {
  font-family: "Source Sans 3", "Avenir LT Std", "Avenir", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  min-height: 100vh;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Sora", "Segoe UI", Tahoma, sans-serif;
  letter-spacing: -0.02em;
}

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

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--card-from) 10%, var(--card-via) 55%, var(--card-to));
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 4;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.65;
  animation: float 12s ease-in-out infinite;
  z-index: 3;
  transform-origin: center;
}

.orb-flat {
  background: var(--card-via);
  opacity: 1;
  z-index: 2;
}

.orb-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, #e8d2f6, #7030a0 65%, #4a2a79);
  --line-color: rgb(168, 138, 200);
  --line-opacity: 0.75;
  top: -140px;
  right: -120px;
}


.orb-two {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 40% 40%, #d7eef9, #2274a5 70%, #13445f);
  --line-color: rgb(144, 185, 210);
  --line-opacity: 0.75;
  bottom: -120px;
  left: -80px;
  animation-delay: -4s;
}


.orb-three {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 35% 35%, #ffffff, #efe7f7 55%, #e3d4f2);
  --line-color: rgb(188, 163, 215);
  --line-opacity: 0.7;
  top: -250px;
  left: -80px;
  opacity: 0.8;
  animation-delay: -2s;
}


.orb-four {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 35% 35%, #eef9d7, #84c318 60%, #4e8610);
  --line-color: rgb(132, 195, 24);
  top: 480px;
  right: 140px;
  opacity: 0.85;
  animation-delay: -1s;
}


.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(74, 48, 112, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 48, 112, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mix-blend-mode: multiply;
  opacity: 0.35;
  z-index: 0;
}

.orb-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: block;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(var(--orb-scale, 1));
  }
  50% {
    transform: translate3d(0, 22px, 0) scale(var(--orb-scale, 1));
  }
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.logo {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav .logo {
  display: inline-flex;
  align-items: center;
  height: 64px;
  width: 236px;
  flex: 0 0 236px;
}

.nav .logo img {
  width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 600;
  color: var(--text);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--page-bg);
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle .bar {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}


.nav-links a.active {
  color: var(--primary);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent-green);
  border-radius: 999px;
}

.hero {
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 40px 24px 80px;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.page-hero {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 40px 24px 40px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 16px 0 20px;
}

.page-hero .lede {
  max-width: 760px;
}

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  gap: 28px;
}

.content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.content h3 {
  font-size: 1.3rem;
}

.content ul {
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.content .card {
  padding: 28px;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lede {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  background: var(--accent-green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 30px rgba(132, 195, 24, 0.25);
}

.button:hover {
  background: var(--accent-green-hover);
  transform: translateY(-2px);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--accent-border);
  color: var(--primary);
  box-shadow: none;
}

.button.small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.trust {
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--text);
}

.hero-card {
  background: var(--glass);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pill {
  background: #efe7f7;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status {
  font-weight: 600;
  color: var(--accent-blue);
}

.metric {
  padding: 16px 0;
  border-bottom: 1px solid rgba(74, 48, 112, 0.12);
}

.metric:last-child {
  border-bottom: none;
}

.metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 6px;
}

.hero-card-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tag {
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section.dark {
  background: var(--primary);
  color: var(--white);
  border-radius: 32px;
  margin: 0 auto;
  width: min(1200px, calc(100% - 48px));
}

.section-title {
  max-width: 720px;
  margin-bottom: 48px;
}

.section.dark .section-title,
.section.cta .cta-content,
.section.cta .cta-actions {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section.cta .cta-actions {
  justify-items: center;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(74, 48, 112, 0.12);
}

.section.dark .step {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.panel {
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.panel ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.panel li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent-green);
}

.grid-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(74, 48, 112, 0.12);
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(74, 48, 112, 0.12);
}

.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  max-width: 720px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(74, 48, 112, 0.12);
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid rgba(112, 48, 160, 0.12);
}

.team-role {
  font-weight: 600;
  color: var(--text);
  margin-top: 6px;
}

.section.cta {
  background: #e7f3f8;
  border-radius: 32px;
  margin: 0 auto 80px;
  width: min(1200px, calc(100% - 48px));
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.section.dark + .section.cta,
.section + .section.cta {
  margin-top: 40px;
}

.video-section .section-title {
  margin-bottom: 32px;
}

.video-shell {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.84),
    rgba(219, 233, 238, 0.65)
  );
  border-radius: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(112, 48, 160, 0.16);
  pointer-events: none;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3378 / 2124;
  padding-top: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #dbe9ee;
}

.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.video-frame.is-playing .video-poster {
  opacity: 0;
}

.video-frame iframe {
  position: absolute;
  top: -3px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 5px);
  border: 0;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 14px;
  display: grid;
  grid-template-rows: 1fr auto;
  pointer-events: auto;
  cursor: pointer;
}

.video-center-indicator {
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(132, 195, 24, 0.18);
  border: 2px solid rgba(132, 195, 24, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94) translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-center-indicator span {
  width: 10px;
  height: 36px;
  border-radius: 999px;
  background: rgba(132, 195, 24, 0.95);
}

.video-bottom-bar {
  grid-row: 2;
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.video-fullscreen-btn {
  display: none;
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-progress-wrap {
  display: grid;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

.video-volume-wrap {
  position: relative;
}

.video-volume-btn {
  border: none;
  background: rgba(132, 195, 24, 0.92);
  color: #1f3810;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  padding: 0;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.video-volume-btn .icon-volume,
.video-volume-btn .icon-muted {
  display: none;
}

.video-volume-btn .icon-volume {
  display: block;
}

.video-volume-btn.is-muted .icon-volume {
  display: none;
}

.video-volume-btn.is-muted .icon-muted {
  display: block;
}

.video-volume-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: 56px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(74, 48, 112, 0.18);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-volume-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.video-volume-panel .video-range {
  width: 100%;
  height: 120px;
  writing-mode: bt-lr;
  -webkit-appearance: slider-vertical;
}

.video-range {
  width: 100%;
  accent-color: var(--accent-green);
  cursor: pointer;
}

.video-time {
  font-size: 0.85rem;
  font-weight: 600;
  justify-self: end;
  white-space: nowrap;
}

.video-frame:hover .video-bottom-bar,
.video-frame.is-paused .video-bottom-bar {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-frame.is-paused .video-center-indicator {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-frame:not(.is-paused) .video-center-indicator {
  opacity: 0;
}

.video-fallback {
  margin-top: 12px;
  font-size: 0.92rem;
}

.video-fallback a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-content h2 {
  margin-bottom: 12px;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--text);
}

.footer {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text);
  transition: transform 0.3s ease;
}

main {
  transition: transform 0.3s ease;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 600;
}

.form {
  display: grid;
  gap: 16px;
  max-width: 640px;
}

.field {
  display: grid;
  gap: 8px;
}

.label {
  font-weight: 600;
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(74, 48, 112, 0.2);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.9rem;
    justify-content: flex-start;
  }

  .nav-links a:not(.button) {
    display: inline-flex;
  }

  .hero {
    margin-top: 40px;
    padding-bottom: 64px;
  }

  .video-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .video-shell::after {
    inset: 8px;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-row .button {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 72px 24px;
  }

  .feature-grid,
  .grid-cards,
  .steps,
  .split {
    grid-template-columns: 1fr;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  .video-bottom-bar {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .video-time {
    justify-self: start;
  }

  .video-volume-wrap {
    justify-self: end;
  }

  .section.dark,
  .section.cta {
    width: min(1200px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .orb-one,
  .orb-four,
  .orb-lines {
    display: none;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--white);
    border-radius: 16px;
    padding: 96px 20px 24px;
    box-shadow: 0 18px 40px rgba(74, 48, 112, 0.16);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 6;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links .nav-close {
    position: absolute;
    top: 24px;
    right: 20px;
    color: var(--text);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a.button.small {
    width: 100%;
    justify-content: center;
  }

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

  .orb,
  .orb-flat {
    opacity: 0.55;
  }

  .orb-flat {
    opacity: 1;
  }

  .orb-lines {
    opacity: 0.75;
  }

  .orb-four {
    right: 70px;
  }

  .nav .logo {
    height: 52px;
    width: 192px;
    flex-basis: 192px;
  }

  .nav {
    gap: 12px;
  }

  .hero {
    margin-top: 32px;
  }

  .page-hero {
    margin-top: 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .lede {
    font-size: 1rem;
  }

  .section {
    padding: 64px 20px;
  }

  .video-shell {
    padding: 10px;
  }

  .video-center-indicator {
    width: 82px;
    height: 82px;
  }

  .video-center-indicator span {
    height: 30px;
  }

  .video-bottom-bar {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: auto;
    display: grid;
    grid-template-columns: auto;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
  }

  .video-fullscreen-btn {
    display: inline-flex;
    right: 64px;
    bottom: 14px;
  }

  .video-progress-wrap,
  .video-time {
    display: none;
  }

  .video-overlay {
    grid-template-rows: 1fr;
  }

  .section.dark,
  .section.cta {
    width: min(1200px, calc(100% - 24px));
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions {
    justify-items: stretch;
  }

  .cta-actions .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }

  .bg::after {
    background: rgba(255, 255, 255, 0.3);
  }

  body.nav-open main,
  body.nav-open .footer {
    transform: translateX(-260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .orb-flat {
    animation: none;
  }
}
