/* ---------- Tokens ---------- */
:root {
  --bg: #08080d;
  --bg-alt: #0c0d15;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef0f8;
  --text-dim: #9497ad;
  --text-dimmer: #6a6d84;
  --blurple: #5865f2;
  --purple: #a855f7;
  --pink: #ec4899;
  --grad: linear-gradient(120deg, var(--blurple), var(--purple) 55%, var(--pink));
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 60px -20px rgba(88, 101, 242, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --ff-head: 'Sora', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--ff-head); margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Background FX ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { width: 520px; height: 520px; background: var(--blurple); top: -160px; left: -120px; }
.blob-2 { width: 480px; height: 480px; background: var(--purple); top: 30%; right: -180px; animation-delay: -6s; }
.blob-3 { width: 420px; height: 420px; background: var(--pink); bottom: -180px; left: 30%; animation-delay: -11s; opacity: 0.22; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.08); }
  66% { transform: translate(-30px, 10px) scale(0.95); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(8, 8, 13, 0.75);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--ff-head); }
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.brand-name { font-weight: 700; font-size: 17px; }
.brand-name em { font-style: normal; color: var(--text-dim); font-weight: 500; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 12px;
  flex: 1;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; }
.lang-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn.active {
  background: var(--grad);
  color: #fff;
}
.lang-btn:not(.active):hover { color: var(--text); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(88, 101, 242, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(168, 85, 247, 0.55); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--surface-strong); border-color: var(--border-strong); }
.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
  width: 100%;
}
.btn-outline:hover { background: var(--surface); border-color: var(--purple); }
.btn-lg { padding: 14px 28px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { padding: 168px 0 90px; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 26px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}
.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.1rem);
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto;
}
.hero-sub {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--text-dim);
  font-size: 17px;
}
.hero-sub strong { color: var(--text); }
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  padding: 22px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.stat-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-plus {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--purple);
}
.stat p { color: var(--text-dimmer); font-size: 13px; margin-top: 6px; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(88,101,242,0.045) 15%, rgba(88,101,242,0.045) 85%, transparent); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; }
.section-sub { color: var(--text-dim); margin-top: 16px; font-size: 15.5px; }

/* ---------- Experience ---------- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.exp-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.4);
  background: var(--surface-strong);
}
.exp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.exp-top h3 { font-size: 17px; font-weight: 700; }
.member-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.15);
  color: #b7bdff;
  white-space: nowrap;
  border: 1px solid rgba(88, 101, 242, 0.3);
}
.exp-role {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.role-arrow { color: var(--purple); }
.role-end { color: var(--text); font-weight: 600; }
.exp-more {
  background: linear-gradient(180deg, rgba(88,101,242,0.12), rgba(168,85,247,0.05));
  border-style: dashed;
  border-color: rgba(168, 85, 247, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exp-more .exp-top h3 { color: var(--purple); }
.exp-more .exp-role span { color: var(--text-dim); font-size: 13.5px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.service-card {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.service-card.featured {
  background: linear-gradient(180deg, rgba(88,101,242,0.12), rgba(168,85,247,0.06));
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: var(--shadow-glow);
}
.featured-tag {
  position: absolute;
  top: -13px; left: 26px;
  background: var(--grad);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05);
  color: var(--purple);
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card > p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 20px; }
.feature-list { margin-bottom: 24px; flex: 1; }
.feature-list li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--purple);
  font-weight: 700;
}
.service-price {
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-style: italic;
  color: var(--text-dimmer);
  margin-bottom: 18px;
}
.pricing-note { text-align: center; margin-top: 32px; color: var(--text-dimmer); font-size: 13.5px; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-step {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.step-num {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--purple);
  display: block;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 14px; }

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  padding: 26px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}
.why-icon { font-size: 28px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; margin-bottom: 8px; }
.why-card p { color: var(--text-dim); font-size: 13.5px; }

/* ---------- CTA banner ---------- */
/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 14px 0 12px; }
.contact-methods { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-method:hover { border-color: var(--border-strong); background: var(--surface-strong); }
.cm-icon { font-size: 20px; }
.contact-method strong { display: block; font-size: 14.5px; }
.contact-method small { color: var(--text-dimmer); font-size: 12.5px; }

.order-form {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
}
.order-form input,
.order-form select,
.order-form textarea {
  font-family: var(--ff-body);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--purple);
  background: rgba(255,255,255,0.06);
}
.order-form select option { background: #14141f; }
.form-note { font-size: 13px; color: #4ade80; min-height: 18px; }
.field-hint {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-dimmer);
  margin-top: -2px;
}
.form-tos {
  font-size: 12.5px;
  color: var(--text-dimmer);
  text-align: center;
}
.form-tos a { color: var(--purple); text-decoration: underline; }
.footer-tos-link {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: underline;
}
.footer-tos-link:hover { color: var(--text); }

/* ---------- TOS section ---------- */
.tos-container { max-width: 760px; }
.tos-head { margin-bottom: 8px; }
.tos-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 800;
}
.tos-updated { color: var(--text-dimmer); font-size: 13px; margin-top: 10px; }
.tos-intro {
  color: var(--text-dim);
  font-size: 15px;
  margin-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.tos-block { margin-top: 28px; }
.tos-block h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.tos-block p { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; }

/* ---------- Footer ---------- */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border); margin-top: 40px; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-tagline { color: var(--text-dim); font-size: 13.5px; max-width: 420px; }
.footer-copy { color: var(--text-dimmer); font-size: 12.5px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #14141f;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 64px; left: 16px; right: 16px;
    flex-direction: column;
    gap: 4px;
    background: #0d0e17;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
  }
  .nav.open .nav-cta {
    display: flex;
    position: absolute;
    top: 210px; left: 16px; right: 16px;
    justify-content: center;
  }
  .exp-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
}
