:root {
  --bg: #ffffff;
  --text: #18181b;
  --muted: #71717a;
  --light: #fafafa;
  --border: #e4e4e7;
  --accent: #ea580c;
  --accent-hover: #F97316;
  --accent-soft: #ffedd5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.logos-row img {
  height: 60px;
}

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

.content {
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0 0 40px 40px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text);
  background: #fff;
}

.staff .tag,
.choose .tag,
.features .tag,
.faq .tag,
.community .tag {
  background-image: url("./assets/line.png");
  background-repeat: repeat;
}

.tag img {
  width: 16px;
  height: 16px;
}

.tag-inverse {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-head h2 {
  margin: 32px 0 20px 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 36px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.icon-sq .inline-icon {
  width: 20px;
  height: 20px;
}

.btn .inline-icon {
  width: 16px;
  height: 16px;
}

.btn.btn-dark .inline-icon {
  width: 18px;
  height: 18px;
}

.play .inline-icon {
  width: 24px;
  height: 24px;
}

.carousel-btn .inline-icon {
  width: 24px;
  height: 24px;
}

.tag .inline-icon,
.benefit-icon .inline-icon {
  width: 16px;
  height: 16px;
}

.feature-icon .inline-icon,
.community-card .feature-icon .inline-icon {
  width: 24px;
  height: 24px;
}

.faq-title button .inline-icon {
  width: 16px;
  height: 16px;
}

.footer-bottom .social .inline-icon {
  width: 20px;
  height: 20px;
}

.footer-cols ul.contact .inline-icon {
  width: 16px;
  height: 16px;
}

.btn {
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav .btn.btn-accent {
  padding: 6px 16px;
  justify-content: center;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 8px;
}

.hero-cta .btn {
  width: 240px;
  height: 48px;
  padding: 0 16px;
  justify-content: center;
}

.btn-dark {
  position: relative;
  background: linear-gradient(180deg, #3f3f46, #18181b);
  color: #fff;
  box-shadow: 0 16px 32px rgba(24, 24, 27, 0.08);
}

.btn-dark::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 120px;
  height: 32px;
  background: linear-gradient(90deg, #FF8383 0%, #63FB68 36.54%, #4AD7FB 74.04%, #B768F7 100%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.btn-light {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.32);
  transition: background 0.3s ease;
}

.btn-accent:hover {
  background: var(--accent-hover);
  transition: background 0.3s ease;
}

.btn.wide {
  margin: 48px auto 0;
  display: block;
}

.staff .btn.wide {
  width: 240px;
  height: 48px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.cta .btn.btn-light {
  width: 240px;
  height: 48px;
  padding: 0 16px;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #f2dec5 0%, #ffffff 100%);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 192px 0 476px;
  box-shadow: 0 -16px 48px 0 rgba(130, 66, 42, 0.08) inset;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 842px;
  background: url("./assets/hero-bg.png") center bottom/contain no-repeat;
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero-lines.png");
  background-repeat: no-repeat;
  background-position: center top;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 94vw);
  background: linear-gradient(180deg, #3f3f46, #18181b);
  border-radius: 16px;
  padding: 12px 12px 12px 20px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand {
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 4px;
  font-size: 14px;
  flex-wrap: nowrap;
  justify-self: center;
}

.nav-item {
  background: transparent;
  border: none;
  color: #fff;
  padding: 8px 12px 8px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.nav-item .inline-icon {
  width: 14px;
  height: 14px;
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-self: end;
}

.lang {
  background: transparent;
  border: none;
  color: #fff;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  padding: 6px 10px 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.lang:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.lang .inline-icon {
  width: 14px;
  height: 14px;
}

.lang.light {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.lang.light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 7px 16px 7px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #fff;
  overflow: hidden;
  margin-right: -4px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-red { background: #e3573f; }
.avatar-yellow { background: #f4b441; }
.avatar-blue { background: #387de1; }

.hero-title {
  font-size: 56px;
  line-height: 64px;
  text-align: center;
  margin: 24px 0 32px 0;
  font-weight: 700;
}

.accent-underline {
  position: relative;
  display: inline-block;
}

.typewriter {
  position: relative;
  display: inline-block;
}

.typewriter-ghost {
  color: rgba(24, 24, 27, 0.12);
}

.typewriter-text {
  position: absolute;
  left: 0;
  top: 0;
  color: inherit;
  white-space: nowrap;
  color: #EA580C;
}

.typewriter-text::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 40px;
  margin-left: 4px;
  background: currentColor;
  transform: translateY(2px);
  animation: typewriter-caret 0.8s steps(2) infinite;
}

@keyframes typewriter-caret {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 14px;
  background: url("./assets/icons/hero-title-line.svg") center/contain no-repeat;
}

.hero-logos {
  display: flex;
  gap: 12px;
  perspective: 600px;
}

.icon-sq {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transform-style: preserve-3d;
  animation: hero-flip-y 3.2s ease-in-out infinite;
  backface-visibility: hidden;
  transform-origin: center;
}

.hero-logos .icon-sq:nth-child(1) { animation-delay: 0s; }
.hero-logos .icon-sq:nth-child(2) { animation-delay: 0.2s; }
.hero-logos .icon-sq:nth-child(3) { animation-delay: 0.4s; }
.hero-logos .icon-sq:nth-child(4) { animation-delay: 0.6s; }
.hero-logos .icon-sq:nth-child(5) { animation-delay: 0.8s; }

@keyframes hero-flip-y {
  0% { transform: rotateX(0deg); }
  35% { transform: rotateX(0deg); }
  50% { transform: rotateX(70deg); }
  65% { transform: rotateX(0deg); }
  100% { transform: rotateX(0deg); }
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.hero-cta .btn {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-seq {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-seq-in 0.7s ease forwards;
}

.hero-pill.hero-seq { animation-delay: 0.1s; }
.hero-title.hero-seq { animation-delay: 0.25s; }
.hero-logos.hero-seq { animation-delay: 0.4s; }
.hero-cta.hero-seq { animation-delay: 0.55s; }

@keyframes hero-seq-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta .btn.btn-light .inline-icon {
  transition: transform 0.35s ease;
}

.hero-cta .btn.btn-light:hover .inline-icon {
  transform: translateX(4px);
}

.hero-cta .btn:hover {
  transform: scale(1.02);
}

.hero-cta .btn.btn-dark:hover {
  transform: none;
}

.video {
  margin-top: -400px;
  height: auto;
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  height: auto;
}

.tilt-on-scroll {
  transform: perspective(1200px) rotateX(var(--tilt, 45deg));
  transform-origin: center center;
  will-change: transform;
  transition: all 0.2s ease;
}

.video-shot {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 4px solid #fff;
  background: linear-gradient(180deg, #3f3f46, #18181b);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.logos {
  margin: 80px auto 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
  width: min(1200px, 94vw);
  position: relative;
}

.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-container {
  width: 100%;
  margin: 0 auto;
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logos-scroll 50s linear infinite;
}

.logos-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@keyframes logos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.staff {
  padding: 160px 0;
}

.staff-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 28px;
}

.staff-track {
  position: relative;
  width: 100%;
  height: 480px;
  max-width: 1200px;
  margin: 0 auto;
}

.staff-card {
  background: linear-gradient(180deg, #ffffff, #f4f4f5);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 280px;
  height: 320px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.95s cubic-bezier(0.16, 0.84, 0.3, 1),
    opacity 0.7s ease,
    width 0.95s cubic-bezier(0.16, 0.84, 0.3, 1),
    height 0.95s cubic-bezier(0.16, 0.84, 0.3, 1),
    border 0.6s ease,
    background 0.6s ease,
    box-shadow 0.6s ease;
  will-change: transform, width, height;
  overflow: hidden;
}

.staff-card.main {
  border: 4px solid var(--theme, #ff8175);
  background: var(--theme-bg, linear-gradient(180deg, #fff, #fef2f2));
  width: 400px;
  height: 480px;
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.staff-card.theme-red {
  --theme: #ff8175;
  --theme-bg: linear-gradient(180deg, #fff, #fef2f2);
  --avatar-shadow: #fee2e2;
}

.staff-card.theme-green {
  --theme: #29d291;
  --theme-bg: linear-gradient(180deg, #fff, #f0fdf4);
  --avatar-shadow: #dcfce7;
}

.staff-card.theme-orange {
  --theme: #EF8834;
  --theme-bg: linear-gradient(180deg, #fff, #FFF7ED);
  --avatar-shadow: #FFEDD5;
}

.staff-card.theme-blue {
  --theme: #387DE1;
  --theme-bg: linear-gradient(180deg, #fff, #EFF6FF);
  --avatar-shadow: #DBEAFE;
}

.staff-card.theme-purple {
  --theme: #8195DF;
  --theme-bg: linear-gradient(180deg, #fff, #EEF2FF);
  --avatar-shadow: #E0E7FF;
}

.staff-card.pos-left {
  transform: translate(-180%, -50%) scale(0.92);
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.staff-card.pos-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.staff-card.pos-right {
  transform: translate(80%, -50%) scale(0.92);
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.staff-card h3 {
  margin: 12px 0 6px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}

.staff-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 12px;
}

.staff-card.main h3 {
  font-size: 24px;
  line-height: 40px;
}

.staff-card.main p {
  font-size: 16px;
  line-height: 28px;
}

.quote-icon {
  width: 24px;
  height: 24px;
}

.staff-card.main .quote-icon {
  width: 40px;
  height: 40px;
}

.signature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Caveat", cursive;
  color: #a1a1aa;
  font-size: 20px;
  line-height: 24px;
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.staff-card.main .signature {
  font-size: 24px;
  line-height: 28px;
}

.signature img {
  width: 24px;
  height: 1px;
}

.avatar-card {
  position: absolute;
  width: 80px;
  height: 80px;
  right: -16px;
  bottom: -16px;
  border-radius: 16px;
  transform: rotate(-12deg);
  overflow: hidden;
  box-shadow: -8px -8px 0 0 var(--avatar-shadow, rgba(220, 252, 231, 1));
}

.avatar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card.pos-center .avatar-card {
  width: 200px;
  height: 200px;
  right: -46px;
  bottom: -40px;
  border-radius: 40px;
  box-shadow: -12px -12px 0 0 var(--avatar-shadow, #fee2e2);
  transition: transform 0.35s ease, right 0.35s ease, bottom 0.35s ease, box-shadow 0.35s ease;
}

.staff-card.pos-center:hover .avatar-card {
  transform: rotate(0deg);
  right: -8px;
  bottom: -8px;
  box-shadow: -8px -12px 0 0 var(--avatar-shadow, #fee2e2);
}

.staff-card.pos-center .avatar-card.red img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
}

.avatar-card.green { background: #29d291; }
.avatar-card.orange { background: #f4b441; }
.avatar-card.red { background: #E3573F; }
.avatar-card.blue { background: #387DE1; }
.avatar-card.purple { background: #8195DF; }

.carousel-btn {
  padding: 20px;
  border-radius: 999px;
  border: none;
  background: #f4f4f5;
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: #e4e4e7;
  transition: background 0.3s ease;
}

.wave-divider {
  width: min(1200px, 94vw);
  width: 100%;
  display: flex;
  justify-content: center;
}

.wave-divider .inline-icon {
  width: 242px;
  height: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.choose {
  position: relative;
  margin: 0 16px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fafafa;
  background-image: url("./assets/line.png");
  background-repeat: repeat;
  padding: 160px 0;
  box-shadow: 0 0 32px 0 #FFF inset;
}

.choose-bg {
  position: absolute;
  inset: 0;
  background-image: url("./assets/benefits-bg.png");
  background-size: cover;
  background-position: center;
  display: block;
  background-repeat: no-repeat;
}

.choose-inner {
  position: relative;
  display: flex;
  gap: 80px;
  align-items: center;
  height: 100%;
}

.choose-copy {
  max-width: 520px;
}

.choose-copy h2 {
  margin: 32px 0 20px 0;
  font-size: 36px;
}

.choose-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
  line-height: 28px;

}

.benefits {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  gap: 16px;
}

.benefits li {
  display: flex;
  gap: 16px;
}

.benefit-item.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-item.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.benefit-item.reveal:nth-child(1) { transition-delay: 0s; }
.benefit-item.reveal:nth-child(2) { transition-delay: 0.12s; }
.benefit-item.reveal:nth-child(3) { transition-delay: 0.24s; }

.benefits li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 4px solid var(--accent-soft);
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #ff9862, #ea580c);
  padding: 8px;
}

.benefit-icon img {
  width: 16px;
  height: 16px;
}

.benefits strong {
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  color: var(--text);
}

.benefits span {
  font-size: 16px;
  line-height: 28px;
  color: var(--muted);
}

.choose-media .media-card {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.16) 100%);
  padding: 8px;
  box-shadow: none;
  overflow: hidden;
}

.benefit-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9b63, #ea580c);
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 12px 24px rgba(234, 88, 12, 0.25);
  border: 8px solid #ffdac6;
}

.benefit-badge::before,
.benefit-badge::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  border: 1px solid rgba(234, 88, 12, 0.35);
  animation: benefit-ripple 2.6s ease-out infinite;
  pointer-events: none;
}

.benefit-badge::after {
  inset: -24px;
  border-color: rgba(234, 88, 12, 0.25);
  animation-delay: 1.3s;
}

@keyframes benefit-ripple {
  0% {
    transform: scale(0.92);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.choose-media .media-base {
  position: relative;
  z-index: 2;
}

.choose-media .media-float {
  position: absolute;
  inset: 0;
  z-index: 1;
  animation: benefits-float-up 2.8s ease-out infinite;
  pointer-events: none;
}

@keyframes benefits-float-up {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-80px);
    opacity: 0;
  }
}

.media-main {
  width: 100%;
  border-radius: 24px;
  max-width: 600px;
}

.features {
  padding: 160px 0;
}

.features .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #fafafa);
  display: grid;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.feature-card h3 {
  margin: 12px 0 4px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #a1a1aa;
}

.feature-card:hover .icon-box {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card.dark {
  background: linear-gradient(180deg, #3f3f46, #18181b);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.feature-card.dark::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 200px;
  height: 200px;
  background: url("./assets/features-card-bg.png") center/contain no-repeat;
  opacity: 0.8;
  pointer-events: none;
}

.feature-card.dark p { color: rgba(255, 255, 255, 0.4); }

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}

.feature-icon.glass {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.faq {
  position: relative;
  margin: 0 16px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fafafa;
  padding: 160px 0;
  background-image: url("./assets/line.png");
  background-repeat: repeat;
  box-shadow: 0 0 32px 0 #FFF inset;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background-image: url("./assets/faq-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}

.faq .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-list {
  display: grid;
  gap: 16px;
  position: relative;
}

.faq-item {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: #fff;
  z-index: 4;
  box-shadow: 0 24px 40px rgba(15, 15, 15, 0.08);
}

.faq-list.has-active .faq-item:not(.active) {
  opacity: 0.4;
  filter: blur(4px);
  transform: scale(0.98);
}

.faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
}

.faq-left {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.faq-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #E4E4E7;
  flex: 0 0 auto;
}

.faq-title button {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0);
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-title button:hover {
  background: #f4f4f5;
  transition: all 0.2s ease;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  position: relative;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 28px;
  display: block;
}

.faq-item.active p {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
}

.faq-float {
  position: absolute;
  z-index: 6;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 26px 60px rgba(15, 15, 15, 0.14);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}

.faq-float.show {
  opacity: 1;
  transform: scale(1);
}

.faq-float .faq-title button .inline-icon {
  transform: rotate(180deg);
}

.faq-float p {
  font-size: 16px;
  line-height: 28px;
  color: var(--muted);
  margin: 8px 0 0 24px;
  max-height: none;
  pointer-events: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.community {
  padding: 160px 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.community-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #fafafa);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.community-card:hover {
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.community-card h3 {
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  margin: 0;
}

.community-card p {
  font-size: 16px;
  line-height: 28px;
  color: #a1a1aa;
  margin: 0;
}

.community-card {
  text-decoration: none;
  color: inherit;
}

.icon-outer {
  width: 72px;
  height: 72px;
  padding: 7px;
  box-sizing: border-box;
  border-radius: 20px;
  background: linear-gradient(180deg, #F4F4F5 0%, rgba(244, 244, 245, 0.00) 100%);
  display: inline-grid;
  place-items: center;
}

.icon-border {
  padding: 1px;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(228, 228, 231, 1), rgba(228, 228, 231, 0.4));
  display: inline-block;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, #FFF 0%, #FAFAFA 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.community-card:hover .icon-box {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: #18181B;
}

.feature-card.dark .icon-outer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
}

.feature-card.dark .icon-border {
  background: linear-gradient(180deg, #A1A1AA, rgba(161, 161, 170, 0));
}

.feature-card.dark .icon-box {
  background: var(--muted);
}

.feature-card.dark .icon-box svg {
  fill: #fff;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f2dec5 100%);
  padding: 120px 0;
  z-index: 2;
}

.cta-lines {
  position: absolute;
  inset: 0;
  background-image: url("./assets/slogan-bg-line.png");
  background-repeat: no-repeat;
  background-position: center;
}

.cta-card {
  position: relative;
  background: url("./assets/slogan-bg.png") center/cover no-repeat;
  border-radius: 32px;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 32px 0 #FFF inset;
}

.cta-card .tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #27b76a;
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 0 4px rgba(39, 183, 106, 0.2);
  animation: cta-dot-pulse 2.6s ease-in-out infinite;
}

.cta-card h2 {
  margin: 32px 0 20px 0;
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 44px;
}

.slogan-btn {
  position: relative;
  z-index: 1;
  border: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.slogan-btn .inline-icon {
  transition: transform 0.35s ease;
}

.slogan-btn:hover .inline-icon {
  transform: translateX(4px);
}

.slogan-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 272px;
  height: 80px;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: -2;
  pointer-events: none;
  opacity: 0.6;
  will-change: transform, opacity;
  animation: cta-ripple 2.8s ease-out infinite;
}

.slogan-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 256px;
  height: 64px;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: -2;
  opacity: 0.5;
  will-change: transform, opacity;
  animation: cta-ripple 2.8s ease-out infinite 0.7s;
}

.slogan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(24, 24, 27, 0.12);
}

.slogan-btn:active {
  transform: translateY(0);
  box-shadow: 0 12px 20px rgba(24, 24, 27, 0.12);
}

@keyframes cta-dot-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(39, 183, 106, 0.2);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(39, 183, 106, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(39, 183, 106, 0.2);
  }
}

@keyframes cta-ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0;
  }
}

.footer {
  background: #18181b;
  color: #fff;
  padding-top: 108px;
  margin-top: -40px;
  position: sticky;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 48px;
  align-items: start;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  max-width: 400px;
  font-size: 14px;
  line-height: 24px;
  margin: 12px 0 24px 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-cols h4 {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 16px;
}

.footer-cols h4::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s ease 0.1s;
}

.footer-cols h4.reveal.in::after {
  transform: scaleX(1);
}

.footer-cols ul {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-cols ul li {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 24px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-cols a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-cols ul li svg {
  fill: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.footer-cols ul li:hover {
  color: #fff;
  transition: color 0.3s ease;
}

.footer-cols ul li:hover svg {
  fill: #fff;
  transition: all 0.3s ease;
}

.footer-cols ul.contact li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom {
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.32);
  font-size: 14px;
  line-height: 24px;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-bottom .links {
  display: flex;
  gap: 24px;
}

.footer-bottom .links a {
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.3s ease;
}

.footer-bottom .links a:hover {
  color: #fff;
  transition: color 0.3s ease;
}

.footer-bottom .copy {
  margin-left: auto;
  text-align: right;
}

.footer-bottom .social {
  display: flex;
  gap: 24px;
}

.footer-bottom .social svg {
  cursor: pointer;
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.32);
  transition: all 0.3s ease;
}

.footer-bottom .social svg:hover {
  fill: #fff;
  transition: all 0.3s ease;
}

.inline-icon {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 800px) {
  .container { padding: 0 20px; }
  .nav { grid-template-columns: 1fr auto; }
  .hero { padding: 192px 0 320px; }
  .hero-title { font-size: 34px; line-height: 42px; }
  .hero-logos { flex-wrap: wrap; justify-content: center; }
  .video { margin-top: -220px; }
  .logos-track { gap: 32px; }
  .choose {padding: 40px 0;}
  .choose-inner { gap: 40px; flex-direction: column; }
  .choose-media .media-card { width: 100%; }
  .faq {padding: 40px 0;}
  .hero-cta { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 24px; }
  .footer-cols { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-actions { gap: 8px; }
  .typewriter-text::after {height: 24px;}
  .staff-card.pos-left,
  .staff-card.pos-right {
    display: none;
  }
}
