:root {
  --bg: #110917;
  --bg2: #1a0d24;
  --bg3: #231132;
  --surface: rgba(28, 18, 43, 0.42);
  --surface-strong: rgba(39, 24, 58, 0.56);
  --surface-solid: rgba(49, 28, 72, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --v: #b7c8ff;
  --vl: #d6b7ff;
  --mg: #ffbfdc;
  --cy: #c8d7ff;
  --t1: #f7f2ff;
  --t2: #d4c9e4;
  --t3: #a999bf;
  --bd: rgba(255, 255, 255, 0.12);
  --bdg: rgba(255, 255, 255, 0.22);
  --fd: "Space Grotesk", sans-serif;
  --fb: "Inter", sans-serif;
  --ease: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --r1: 18px;
  --r2: 28px;
  --r3: 38px;
  --shadow-soft: 0 18px 48px rgba(3, 0, 10, 0.24);
  --shadow-card: 0 28px 72px rgba(3, 0, 10, 0.32);
  --shadow-hover: 0 32px 80px rgba(3, 0, 10, 0.38);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--t1);
  font-family: var(--fb);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 12% 10%, rgba(160, 196, 255, 0.18), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(205, 180, 255, 0.28), transparent 22%),
    radial-gradient(circle at 84% 84%, rgba(255, 200, 221, 0.18), transparent 20%),
    radial-gradient(circle at 50% 38%, rgba(88, 46, 128, 0.28), transparent 34%),
    linear-gradient(180deg, #1c0d28 0%, #140b1f 42%, #0e0816 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(28px);
}

body::before {
  top: -10rem;
  left: -9rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(205, 180, 255, 0.18), transparent 70%);
}

body::after {
  right: -12rem;
  bottom: -12rem;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(255, 200, 221, 0.14), transparent 68%);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

section {
  position: relative;
  padding: 108px 24px;
}

.sc,
.nc,
.footer-c {
  max-width: 1200px;
  margin: 0 auto;
}

.divider {
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.hero-panel,
.stat,
.partner,
.card,
.benefit,
.tl-box,
.faq-item,
.cta-inner,
.form-box,
.soc,
.con-link,
.vis,
footer .footer-c,
nav#top.scrolled .nc {
  background: linear-gradient(180deg, rgba(42, 26, 64, 0.56), rgba(24, 15, 37, 0.42));
  border: 1px solid var(--bdg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-soft);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

nav#top {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 20px;
  transition: transform var(--ease);
}

.nc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(20, 12, 31, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
}

nav#top.scrolled .nc {
  transform: translateY(-2px);
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t1);
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(175, 141, 224, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--fd);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--t2);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--t1);
}

.nav-cta,
.btn-p,
.f-submit {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: linear-gradient(135deg, rgba(160, 196, 255, 0.3) 0%, rgba(205, 180, 255, 0.34) 52%, rgba(255, 200, 221, 0.3) 100%) !important;
  color: var(--t1) !important;
  box-shadow: 0 18px 40px rgba(124, 92, 172, 0.24);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 12px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--t1);
  transition: transform var(--ease), opacity var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  padding: 24px;
  background: rgba(14, 8, 22, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mob-nav.open {
  display: flex;
}

.mob-nav a {
  width: min(420px, 100%);
  padding: 16px 18px;
  border-radius: 22px;
  text-align: center;
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--t2);
  background: rgba(38, 24, 58, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-scene,
.hero-grad {
  position: absolute;
  inset: 0;
}

.hero-scene {
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  right: 10%;
  top: 16%;
  width: min(34rem, 42vw);
  aspect-ratio: 1;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.68;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotate(12deg) perspective(800px) rotateX(8deg);
  mask-image: radial-gradient(circle at center, #000 56%, transparent 86%);
}

.hero-glow,
.hero-ring {
  position: absolute;
  border-radius: 50%;
}

.hero-glow-a {
  top: 6%;
  left: 6%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(205, 180, 255, 0.24), transparent 72%);
  animation: floatGlow 14s ease-in-out infinite;
}

.hero-glow-b {
  right: 2%;
  bottom: 8%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(255, 200, 221, 0.18), transparent 72%);
  animation: floatGlow 12s ease-in-out infinite reverse;
}

.hero-ring-a {
  right: 18%;
  top: 20%;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(205, 180, 255, 0.22);
  animation: spin 28s linear infinite;
}

.hero-panel {
  position: absolute;
  max-width: 230px;
  padding: 16px 18px;
  border-radius: 24px;
  animation: panelFloat 10s ease-in-out infinite;
}

.hero-panel strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--fd);
  font-size: 0.92rem;
}

.hero-panel span {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--t2);
}

.hero-panel-a {
  top: 18%;
  right: 10%;
}

.hero-panel-b {
  bottom: 18%;
  left: 9%;
  animation-direction: reverse;
}

.hero-grad {
  background:
    radial-gradient(circle at 16% 26%, rgba(160, 196, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(205, 180, 255, 0.24), transparent 26%),
    radial-gradient(circle at 82% 82%, rgba(255, 200, 221, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 32px 34px;
  text-align: center;
  border-radius: 44px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cab9df;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.eyebrow-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #90b7fb, #d0b4ff);
}

.hero-h1 {
  margin-bottom: 24px;
  font-family: var(--fd);
  font-size: clamp(3.15rem, 7vw, 5.75rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-h1 em,
.st em {
  font-style: normal;
  background: linear-gradient(135deg, #b6c6ff 0%, #d8b8ff 52%, #ffbfdc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 38px;
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.82;
  color: var(--t2);
}

.hero-btns,
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-p,
.btn-s,
.f-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--fd);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.btn-s {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--t1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.btn-p:hover,
.btn-s:hover,
.f-submit:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-hint span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(125, 159, 224, 0.84), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.ey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #baa9d4;
}

.ey::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.ey.center {
  justify-content: center;
}

.ey.center::before {
  display: none;
}

.ey.center::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.st {
  margin-bottom: 18px;
  font-family: var(--fd);
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.ss,
.about-p,
.c-desc,
.tl-desc,
.b-desc,
.faq-ai,
.cta-s {
  color: var(--t2);
}

.ss {
  font-size: 1.04rem;
  line-height: 1.8;
}

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

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

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

.about-g {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.about-p {
  margin-bottom: 22px;
  font-size: 1rem;
}

.about-p strong {
  color: var(--t1);
}

.stats-g {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.stat {
  padding: 22px;
  border-radius: var(--r2);
  transition: transform var(--ease), box-shadow var(--ease);
}

.stat:hover,
.partner:hover,
.card:hover,
.benefit:hover,
.tl-box:hover,
.soc:hover,
.con-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-n {
  margin-bottom: 6px;
  font-family: var(--fd);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-l {
  font-size: 0.9rem;
  color: var(--t2);
}

.vis {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--r3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}

.vis-sphere {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.98), rgba(160, 196, 255, 0.76), rgba(205, 180, 255, 0.42) 60%, transparent 74%);
  box-shadow: 0 0 110px rgba(160, 196, 255, 0.26);
  animation: floatGlow 8s ease-in-out infinite;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(160, 196, 255, 0.34);
}

.ring1 {
  width: 270px;
  height: 270px;
  animation: spin 24s linear infinite;
}

.ring2 {
  width: 350px;
  height: 350px;
  border-color: rgba(205, 180, 255, 0.32);
  animation: spin 32s linear infinite reverse;
}

.ring-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #8da9df;
}

.eco-hd,
.impact-hd,
.com-hd,
.faq-hd {
  margin-bottom: 60px;
  text-align: center;
}

.eco-hd .ss,
.impact-hd .ss,
.com-hd .ss {
  max-width: 620px;
  margin: 0 auto;
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}

.partner {
  padding: 24px 20px;
  border-radius: var(--r2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}

.p-icon,
.c-icon,
.b-icon,
.con-link-ico {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(160, 196, 255, 0.14), rgba(205, 180, 255, 0.18), rgba(255, 200, 221, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.p-icon-img {
  padding: 8px;
}

.p-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.p-name,
.c-title,
.b-title,
.tl-title,
.form-title,
.cta-t {
  font-family: var(--fd);
  letter-spacing: -0.03em;
}

.p-name {
  font-size: 1.08rem;
}

.p-type,
.tl-tag,
.footer-col-t {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bba9d6;
}

.action-hd {
  max-width: 620px;
  margin-bottom: 52px;
}

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

.card {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--r3);
  transition: transform var(--ease), box-shadow var(--ease);
}

.card::before,
.benefit::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity var(--ease), transform var(--ease);
}

.card::before {
  top: 0;
  background: linear-gradient(90deg, rgba(160, 196, 255, 0.9), rgba(205, 180, 255, 0.92), rgba(255, 200, 221, 0.92));
}

.card:hover::before,
.benefit:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.c-title,
.b-title {
  margin: 18px 0 10px;
  font-size: 1.16rem;
}

.c-desc,
.b-desc,
.tl-desc {
  font-size: 0.95rem;
  line-height: 1.72;
}

.c-arrow {
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #d0b9ec;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.34) 10%, rgba(148, 163, 184, 0.34) 90%, transparent);
}

.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 24px 0;
}

.tl-marker {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #99b8fb, #d2b8ff, #ffd1de);
  box-shadow: 0 0 0 10px rgba(39, 24, 58, 0.7);
}

.tl-box {
  padding: 26px;
  border-radius: var(--r2);
  transition: transform var(--ease), box-shadow var(--ease);
}

#community,
#contact {
  overflow: hidden;
}

.com-glow,
.con-glow {
  position: absolute;
  pointer-events: none;
}

.com-glow {
  top: -140px;
  left: 50%;
  width: 38rem;
  height: 38rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(205, 180, 255, 0.18), transparent 68%);
}

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

.benefit {
  position: relative;
  padding: 30px;
  border-radius: var(--r2);
  transition: transform var(--ease), box-shadow var(--ease);
}

.benefit::after {
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 200, 221, 0.92), rgba(160, 196, 255, 0.92));
}

.com-cta {
  margin-top: 52px;
  text-align: center;
}

.com-cta p {
  margin-bottom: 18px;
  font-size: 1.06rem;
  color: var(--t2);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
}

.faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
}

.faq-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(160, 196, 255, 0.18), rgba(205, 180, 255, 0.24));
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-ico svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #d3c5e6;
  stroke-width: 2;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  max-height: 420px;
}

.faq-ai {
  padding: 0 24px 22px;
}

.cta-band {
  padding: 96px 24px;
}

.cta-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 42px;
  border-radius: var(--r3);
  text-align: center;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(160, 196, 255, 0.18), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(255, 200, 221, 0.18), transparent 22%);
  pointer-events: none;
}

.cta-t,
.cta-s,
.cta-btns {
  position: relative;
  z-index: 1;
}

.cta-t {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.cta-s {
  margin-bottom: 30px;
  font-size: 1rem;
}

.con-glow {
  left: 50%;
  bottom: -7rem;
  width: 40rem;
  height: 18rem;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(205, 180, 255, 0.16), transparent 70%);
}

.con-g {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: start;
}

.con-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 24px;
}

.con-link {
  width: fit-content;
  padding: 10px 12px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--t2);
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.soc {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease), box-shadow var(--ease);
}

.soc svg {
  color: var(--t2);
}

.form-box {
  padding: 38px;
  border-radius: var(--r3);
}

.form-title {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

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

.fg {
  margin-bottom: 18px;
}

.fg label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--t2);
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--t1);
  font-family: var(--fb);
  font-size: 0.94rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  -webkit-appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--t3);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(205, 180, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(205, 180, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.fg select option {
  color: #f7f2ff;
  background: #1a0d24;
}

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

.f-submit {
  width: 100%;
}

footer {
  padding: 0 24px 36px;
}

.footer-c {
  padding: 36px;
  border-radius: var(--r3);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-bottom: 28px;
}

.footer-brand p,
.footer-links a,
.footer-bot p {
  color: var(--t2);
}

.footer-brand p {
  max-width: 280px;
  margin-top: 14px;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--t1);
}

.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 1024px) {
  .about-g,
  .con-g {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .vis {
    min-height: 360px;
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 84px 20px;
  }

  nav#top {
    top: 14px;
    padding: 0 14px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #hero {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 96px;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-panel {
    display: none;
  }

  .hero-grid-lines {
    right: 50%;
    top: auto;
    bottom: 10%;
    width: min(24rem, 82vw);
    transform: translateX(50%) rotate(10deg);
  }

  .hero-ring-a {
    right: 50%;
    top: auto;
    bottom: 10%;
    transform: translateX(50%);
  }

  .cards,
  .benefits,
  .frow {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    left: 23px;
  }

  .tl-item {
    grid-template-columns: 48px 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bot {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-g,
  .partners {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: clamp(2.55rem, 13vw, 3.9rem);
  }

  .hero-sub,
  .ss,
  .about-p {
    font-size: 0.98rem;
  }

  .btn-p,
  .btn-s {
    width: 100%;
  }

  .cta-band,
  footer {
    padding-inline: 20px;
  }

  .cta-inner,
  .form-box,
  .footer-c {
    padding: 28px;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
