:root {
  --teal: #00a3a1;
  --teal-dark: #007f7d;
  --teal-soft: rgba(0, 163, 161, 0.12);
  --pink: #ff4f9a;
  --pink-soft: rgba(255, 79, 154, 0.14);
  --ink: #1c2430;
  --muted: #66707c;
  --line: #e6eaee;
  --bg: #f7fbfb;
  --card: #fff;
  --header: 72px;
  --radius: 22px;
  --font: Rubik, "PingFang SC", "Noto Sans SC", "Noto Sans Malayalam", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--teal);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(247, 251, 251, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.logo small {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 14px;
  font-size: 0.86rem;
  color: #44505c;
}

.nav a:hover {
  color: var(--teal-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang {
  display: flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.lang button {
  border: 0;
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.lang button.is-active {
  background: var(--teal);
  color: #fff;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  top: calc(var(--header) + 36px);
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 22px;
  display: grid;
  gap: 12px;
}

.mobile-nav[hidden] {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
}

.hire-bar {
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  z-index: 49;
  background: var(--pink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

.hero {
  position: relative;
  padding: calc(var(--header) + 72px) 0 64px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  top: 40px;
  background: radial-gradient(circle, var(--pink-soft), transparent 68%),
    radial-gradient(circle at 30% 70%, var(--teal-soft), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 10px 0 16px;
}

.hero-lead,
.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-proof strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--teal);
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.face-stack {
  display: flex;
}

.face-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}

.face-stack img:first-child {
  margin-left: 0;
}

.hero-trust p {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  min-height: 460px;
}

.hero-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 80, 90, 0.16);
}

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

.hero-card-main {
  width: 78%;
  height: 420px;
  margin-left: auto;
  position: relative;
}

.hero-card-side {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 42%;
  height: 220px;
  border: 6px solid #fff;
}

.hero-pill {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--pink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  animation: floaty 4.5s ease-in-out infinite;
}

.c1 {
  top: 28px;
  left: 8%;
  color: var(--teal);
}
.c2 {
  top: 120px;
  right: 4%;
  animation-delay: -1.4s;
  color: var(--pink);
}
.c3 {
  bottom: 8px;
  right: 18%;
  animation-delay: -2.2s;
}

@keyframes floaty {
  50% {
    transform: translateY(-8px);
  }
}

.scroll-hint {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  background: var(--teal);
  color: #fff;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-weight: 600;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 0;
  text-align: center;
  font-size: 0.84rem;
}

.trust-strip-grid strong {
  color: var(--teal-dark);
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head h2,
.community-copy h2,
.join-copy h2,
.quiz-grid h2,
.share-inner h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 8px 0 14px;
}

.brand-hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 340px;
  margin-bottom: 22px;
}

.brand-hero-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.brand-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 28, 32, 0.82), transparent 55%);
}

.brand-hero-card-copy {
  position: absolute;
  inset: auto 32px 32px;
  z-index: 1;
  color: #fff;
}

.brand-hero-card-copy blockquote {
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  margin-bottom: 8px;
}

.stat-grid,
.knowledge-grid {
  display: grid;
  gap: 14px;
}

.stat-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 14px;
}

.stat-card,
.knowledge-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.stat-num {
  font-size: 1.9rem;
  color: var(--teal);
  margin-bottom: 6px;
}

.knowledge-grid {
  grid-template-columns: repeat(3, 1fr);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.role-card {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  cursor: pointer;
  display: grid;
  gap: 8px;
}

.role-card:hover,
.role-card.is-on {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.role-open {
  width: fit-content;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}

.role-mode {
  display: block;
  margin: 10px 0 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.role-card h3 {
  font-size: 1.15rem;
}

.role-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.role-apply {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.88rem;
}

.knowledge-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.knowledge-card p,
.stat-card p:last-child {
  color: var(--muted);
  font-size: 0.94rem;
}

.community {
  background: linear-gradient(180deg, #eef8f8, #f7fbfb);
}

.gallery {
  background: #fff;
}

.community-grid,
.join-grid,
.quiz-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.community-visual {
  position: relative;
}

.community-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
}

.community-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}

.community-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--pink);
}

.check-list {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.map-block {
  margin-top: 40px;
}

.map-lead {
  margin-bottom: 14px;
  color: var(--muted);
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-pills button,
.year-pills button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.86rem;
}

.city-pills button.is-on,
.year-pills button.is-on {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.city-note {
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 500;
}

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

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #dfe8ea;
  aspect-ratio: 4 / 3;
  isolation: isolate;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s var(--ease);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.1);
}

.gallery-card:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.gallery-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 14px 12px;
  background: linear-gradient(transparent, rgba(12, 20, 24, 0.72));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.gallery-hint {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.video-head {
  margin: 48px 0 20px;
}

.video-head h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.video-head p {
  color: var(--muted);
}

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

.video-card {
  min-width: 0;
}

.video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16 / 9;
}

.video-frame video,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
  border: 0;
}

.video-shield {
  position: absolute;
  z-index: 3;
  background: transparent;
}

.video-shield-top {
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
}

.video-shield-br {
  right: 0;
  bottom: 0;
  width: 128px;
  height: 52px;
}

.video-play img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play span {
  position: relative;
  z-index: 1;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.video-play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 24, 0.32);
}

.video-play::before {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 22px no-repeat;
}

.video-card.is-playing .video-play {
  display: none;
}

.video-cap {
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 16, 22, 0.92);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 8px;
  padding: 56px 16px 24px;
}

.lightbox figure {
  margin: 0;
  min-width: 0;
}

.lightbox img {
  width: min(100%, 1080px);
  max-height: 74vh;
  object-fit: contain;
  border-radius: 16px;
  margin: 0 auto;
  background: #111;
}

.lightbox figcaption {
  color: #fff;
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  justify-self: center;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: var(--teal);
}

.chat-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.chat-people {
  display: grid;
  gap: 8px;
}

.person-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  cursor: pointer;
}

.person-btn.is-on {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.person-btn img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.person-btn small {
  display: block;
  color: var(--muted);
  font-weight: 400;
}

.phone {
  background: #11181c;
  border-radius: 32px;
  padding: 18px 16px 20px;
  color: #fff;
  min-height: 520px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.phone-bar {
  display: grid;
  justify-items: center;
  gap: 2px;
  margin-bottom: 8px;
}

.phone-dot {
  width: 56px;
  height: 6px;
  background: #2a3338;
  border-radius: 999px;
  margin-bottom: 8px;
}

.phone-bar span {
  color: #9aa4ab;
  font-size: 0.78rem;
}

.chat-hint {
  text-align: center;
  color: #8b959c;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.chat-thread {
  background: #1a2227;
  border-radius: 22px;
  min-height: 340px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}

.bubble {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.4;
  animation: pop 0.35s var(--ease);
}

.bubble.me {
  align-self: flex-end;
  background: var(--teal);
}

.bubble.friend {
  align-self: flex-start;
  background: #2b343a;
}

.typing {
  align-self: flex-start;
  background: #2b343a;
  padding: 10px 14px;
  border-radius: 16px;
  width: fit-content;
  color: #9aa4ab;
  letter-spacing: 0.2em;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.chat-replay {
  width: 100%;
  margin-top: 12px;
  background: transparent;
  color: #fff;
  border-color: #334046;
}

.chart-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
}

.chart-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.chart-kicker {
  color: var(--muted);
  font-size: 0.85rem;
}

.chart-live {
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.chart-live-num {
  color: var(--teal);
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.chart-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.year-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.chart-canvas-wrap {
  position: relative;
  height: 380px;
}

#growthChart {
  width: 100%;
  height: 100%;
  display: block;
}

.chart-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  transform: translate(-50%, -130%);
  white-space: nowrap;
}

.chart-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 8px;
}

.quiz {
  background: #fff;
}

.quiz-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  min-height: 280px;
}

.quiz-progress {
  height: 6px;
  background: #e4eeed;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.quiz-progress i {
  display: block;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  transition: width 0.3s var(--ease);
}

.quiz-step {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.quiz-options {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.quiz-options button {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 500;
}

.quiz-options button:hover,
.quiz-options button.is-on {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.quiz-role {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 8px 0;
}

.quiz-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.steps {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}

.steps span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  font-weight: 700;
}

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

.join-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.join-form h3,
.join-form > p,
.join-form .full,
.join-form .full-btn,
.join-form .form-fine,
.join-form .form-success {
  grid-column: 1 / -1;
}

.join-form label {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 500;
}

.join-form input,
.join-form select,
.join-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: var(--bg);
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
}

.agree input {
  margin-top: 4px;
}

.full-btn {
  width: 100%;
}

.form-fine {
  color: var(--muted);
  font-size: 0.78rem;
}

.form-success {
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: 10px 12px;
  border-radius: 12px;
}

.faq h3 {
  margin-bottom: 14px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq details p {
  margin-top: 8px;
  color: var(--muted);
}

.share-band {
  background: linear-gradient(90deg, var(--teal), #128f9a);
  color: #fff;
}

.share-inner {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 20px;
  align-items: center;
}

.share-inner h2 {
  margin: 0;
}

.site-footer {
  background: #122026;
  color: #d5dee3;
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}

.footer-logo small {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8aa0a8;
}

.footer-grid a {
  display: block;
  color: #7fd4d2;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  font-size: 0.82rem;
  color: #8aa0a8;
}

.reveal {
  animation: none;
}

.reveal.is-in {
  animation: rise 0.7s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@media (max-width: 960px) {
  .nav,
  .header-cta {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .hero-grid,
  .community-grid,
  .join-grid,
  .quiz-grid,
  .roles-grid,
  .chat-shell,
  .stat-grid,
  .knowledge-grid,
  .trust-strip-grid,
  .footer-grid,
  .share-inner {
    grid-template-columns: 1fr;
  }
  .hero-stage {
    min-height: 380px;
  }
  .hero-card-main {
    height: 320px;
  }
  .join-form {
    grid-template-columns: 1fr;
  }
  .gallery-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .hero-card-side {
    display: none;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .chart-canvas-wrap {
    height: 280px;
  }
  .lightbox {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    padding: 52px 8px 16px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}
