/* ==========================================
   Restora Calm – Global Styles
   ========================================== */

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

:root {
  --brand: #7C6EF6;
  --brand-light: #B4ADFF;
  --brand-dark: #5B4FD6;
  --accent-green: #34C789;
  --accent-blue: #4DA3FF;
  --accent-pink: #F06595;
  --accent-orange: #FF8A65;
  --accent-teal: #38D9D9;
  --accent-red: #FF6B6B;

  --bg: #0B0B14;
  --bg-2: #111122;
  --bg-3: #1A1A30;
  --bg-card: #14142A;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(124,110,246,0.45);

  --text: #EEEEF5;
  --text-2: #A0A0BE;
  --text-3: #6B6B88;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 100px;
}

::selection { background: var(--brand-dark); color: #fff; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }
.text-center { text-align: center; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- Typography ---- */

.gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--brand-light), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 18px;
}

.section-heading {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.section-heading.left { text-align: left; }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.sub-heading {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 28px;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,110,246,0.3);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,110,246,0.45);
}
.btn-sm { padding: 10px 22px; font-size: 0.84rem; }
.btn-lg { padding: 17px 44px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: none;
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand-light);
  box-shadow: none;
  transform: none;
}

/* ---- Nav ---- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,11,20,0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text { font-size: 1.18rem; font-weight: 700; }

.nav-links {
  display: flex;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */

.hero, .page-hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.page-hero { padding: 150px 0 80px; }

.hero-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(124,110,246,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  background: rgba(124,110,246,0.12);
  border: 1px solid rgba(124,110,246,0.22);
  color: var(--brand-light);
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 36px;
}

.hero-title {
  font-size: clamp(2.6rem, 5.8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
}
.hero-pill:hover {
  border-color: var(--brand);
  background: rgba(124,110,246,0.08);
}
.hero-pill .icon { color: var(--brand-light); }

.hero-image-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 56px;
}
.hero-img {
  width: 240px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}
.hero-img:hover { opacity: 1; transform: translateY(-4px); }
.hero-img:nth-child(2) { transform: translateY(24px); }
.hero-img:nth-child(2):hover { transform: translateY(20px); }

/* ---- Icons (inline SVG substitutes via CSS) ---- */

.icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.icon.big { width: 44px; height: 44px; }

.icon-zap       { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); }
.icon-eye       { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
.icon-chart     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'/%3E%3C/svg%3E"); }
.icon-users     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.icon-message   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E"); }
.icon-compass   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76'/%3E%3C/svg%3E"); }
.icon-shield    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"); }
.icon-brain     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2z'/%3E%3Cpath d='M12 8v4l3 2'/%3E%3C/svg%3E"); }
.icon-clock     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); }
.icon-check-circle { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%2334C789' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); }
.icon-lock      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E"); }
.icon-alert     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%237C6EF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E"); }

/* ---- Section Images ---- */

.section-banner {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.cta-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 36px;
  border: 2px solid var(--border);
  opacity: 0.85;
}

/* ---- Sections ---- */

.section { padding: 110px 0; }
.section-alt { background: var(--bg-2); }

/* ---- Split Layout ---- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse .split-visual { order: -1; }
.split-content p { color: var(--text-2); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }

/* ---- Steps Grid ---- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: left;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(124,110,246,0.1);
}

.step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(124,110,246,0.08);
  line-height: 1;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(124,110,246,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.step-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.step-card p { color: var(--text-2); font-size: 0.92rem; line-height: 1.65; }

/* ---- Check List ---- */

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-blue   { background: var(--accent-blue); }
.dot-green  { background: var(--accent-green); }
.dot-purple { background: var(--brand); }

/* ---- Link Badge ---- */

.link-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(124,110,246,0.1);
  border: 1px solid rgba(124,110,246,0.2);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--brand-light);
  transition: background 0.2s;
}
.link-badge:hover { background: rgba(124,110,246,0.18); }
.link-badge.green {
  background: rgba(52,199,137,0.1);
  border-color: rgba(52,199,137,0.22);
  color: var(--accent-green);
}

/* ---- Orbit Visual ---- */

.orbit {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.ring-1 { width: 320px; height: 320px; top: 0; left: 0; animation: spin 22s linear infinite; }
.ring-2 { width: 210px; height: 210px; top: 55px; left: 55px; border-color: rgba(124,110,246,0.22); animation: spin 16s linear infinite reverse; }
.ring-3 { width: 110px; height: 110px; top: 105px; left: 105px; border-color: rgba(124,110,246,0.4); animation: spin 10s linear infinite; }

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

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(124,110,246,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,110,246,0.2); }
  50% { box-shadow: 0 0 24px 8px rgba(124,110,246,0.25); }
}

.orbit-node {
  position: absolute;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.node-ai {
  background: var(--accent-blue);
  top: 50%; left: 50%;
  animation: orbit-outer 12s linear infinite;
}
.node-nav {
  background: var(--accent-green);
  top: 50%; left: 50%;
  animation: orbit-mid 9s linear infinite;
}
.node-md {
  background: var(--brand);
  top: 50%; left: 50%;
  animation: orbit-inner 7s linear infinite;
}

@keyframes orbit-outer {
  from { transform: rotate(0deg) translateX(139px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(139px) rotate(-360deg); }
}
@keyframes orbit-mid {
  from { transform: rotate(120deg) translateX(84px) rotate(-120deg); }
  to   { transform: rotate(480deg) translateX(84px) rotate(-480deg); }
}
@keyframes orbit-inner {
  from { transform: rotate(240deg) translateX(34px) rotate(-240deg); }
  to   { transform: rotate(600deg) translateX(34px) rotate(-600deg); }
}

/* ---- Marquee ---- */

.marquee {
  overflow: hidden;
  padding: 44px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-slow .marquee-track { animation-duration: 40s; }

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

.tag {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid;
}
.tag-1 { background: rgba(77,163,255,0.12); border-color: rgba(77,163,255,0.25); color: var(--accent-blue); }
.tag-2 { background: rgba(52,199,137,0.12); border-color: rgba(52,199,137,0.25); color: var(--accent-green); }
.tag-3 { background: rgba(124,110,246,0.12); border-color: rgba(124,110,246,0.25); color: var(--brand-light); }
.tag-4 { background: rgba(240,101,149,0.12); border-color: rgba(240,101,149,0.25); color: var(--accent-pink); }
.tag-5 { background: rgba(255,138,101,0.12); border-color: rgba(255,138,101,0.25); color: var(--accent-orange); }
.tag-6 { background: rgba(56,217,217,0.12); border-color: rgba(56,217,217,0.25); color: var(--accent-teal); }
.tag-7 { background: rgba(255,107,107,0.12); border-color: rgba(255,107,107,0.25); color: var(--accent-red); }

/* ---- Dashboard Mock ---- */

.dashboard-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.dash-card { display: flex; flex-direction: column; gap: 6px; }
.dash-label { font-size: 0.78rem; color: var(--text-3); }
.dash-val { font-size: 1.55rem; font-weight: 700; }
.dash-bar { height: 5px; background: var(--bg-3); border-radius: 3px; overflow: hidden; margin-top: 4px; }
.dash-bar-fill { height: 100%; border-radius: 3px; background: var(--accent-blue); }
.fill-green { background: var(--accent-green); }
.fill-purple { background: var(--brand); }

/* ---- People / Team ---- */

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 52px 0 56px;
}
.person-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.person-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.person-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.person-card p { font-size: 0.82rem; color: var(--text-2); }

.person-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 2px solid var(--border);
}

/* ---- Backed Box ---- */

.backed-box {
  background: linear-gradient(135deg, rgba(124,110,246,0.08), rgba(77,163,255,0.08));
  border: 1px solid rgba(124,110,246,0.18);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 680px;
  margin: 0 auto 56px;
}
.backed-box p { color: var(--text-2); font-size: 0.98rem; line-height: 1.7; }

/* ---- Advisors ---- */

.advisors-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.advisor {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
}
.advisor h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.advisor p { font-size: 0.78rem; color: var(--text-2); }
.advisor-photo {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 2px solid var(--border);
}

/* ---- Pricing ---- */

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
  text-align: left;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 64px rgba(124,110,246,0.12);
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  background: var(--brand);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}
.price-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.price-desc { font-size: 0.92rem; color: var(--text-2); margin-bottom: 26px; line-height: 1.6; }

.price-list {
  list-style: none;
  flex: 1;
  margin-bottom: 30px;
}
.price-list li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 0.88rem;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2334C789' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='11 4 5.5 10 3 7.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.price-list li.highlight {
  color: var(--text);
  font-weight: 600;
}
.price-list li.highlight::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%237C6EF6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='11 4 5.5 10 3 7.5'/%3E%3C/svg%3E");
}

/* ---- CTA Section ---- */

.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,110,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Benefit List ---- */

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

/* ---- Form ---- */

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.form-card form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 0.82rem; font-weight: 500; color: var(--text-2); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 0.92rem;
  padding: 12px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A0A0BE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field textarea { resize: vertical; min-height: 76px; }
.form-fine { font-size: 0.76rem; color: var(--text-3); text-align: center; }

/* Loading state */
.form-loading {
  display: none;
  text-align: center;
  padding: 72px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-loading.show { display: block; }
.form-loading p { color: var(--text-2); font-size: 0.95rem; margin-top: 20px; }

.loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--bg-3);
  border-top-color: var(--brand);
  border-radius: 50%;
  margin: 0 auto;
  animation: spinner 0.7s linear infinite;
}

@keyframes spinner { to { transform: rotate(360deg); } }

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
}
.btn.loading .btn-label { opacity: 0.5; }
.btn.loading .btn-spinner { display: inline-block; }
.btn.loading { pointer-events: none; opacity: 0.85; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 56px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-success.show { display: block; }
.success-check { margin-bottom: 18px; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.form-success p { color: var(--text-2); font-size: 0.98rem; }

/* ---- Team Carousel (Company page) ---- */

.team-carousel {
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.team-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.team-member {
  width: 220px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
}
.team-member h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.team-member p { font-size: 0.78rem; color: var(--text-2); }

/* ---- Spring Box ---- */

.spring-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 52px;
}
.spring-box p { color: var(--text-2); font-size: 1.02rem; line-height: 1.7; margin-bottom: 20px; }
.spring-sub { font-weight: 600; color: var(--text); }
.spring-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.spring-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.65;
}
.spring-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

/* ---- Prose (Company page) ---- */

.prose p {
  color: var(--text-2);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.prose-emphasis {
  color: var(--text) !important;
  font-weight: 500;
  font-style: italic;
  font-size: 1.12rem !important;
}

/* ---- Safety Visual ---- */

.safety-visual {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}
.safety-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(124,110,246,0.25);
  animation: spin 20s linear infinite;
}
.safety-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(124,110,246,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.safety-stat {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.3;
}
.safety-stat span { display: block; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.s1 { top: 0; left: 50%; transform: translateX(-50%); }
.s2 { bottom: 20px; left: -10px; }
.s3 { bottom: 20px; right: -10px; }

/* ---- Big Quote ---- */

.big-quote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  text-align: left;
}
.big-quote p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
}
.big-quote footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.big-quote footer strong { display: block; font-size: 0.95rem; }
.big-quote footer span { font-size: 0.82rem; color: var(--text-2); }
.quote-photo {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

/* ---- FAQ ---- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-hover); }

.faq-item summary {
  padding: 20px 28px;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-3);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }

.faq-body {
  padding: 0 28px 22px;
}
.faq-body p {
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ---- Legal Pages ---- */

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 44px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 28px 0 10px;
}
.legal-content p {
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-content a { color: var(--brand-light); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--brand); }
.legal-content ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.legal-content ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.6;
}
.legal-callout {
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--accent-red) !important;
  font-weight: 500;
}
.legal-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0 24px;
}
.legal-table-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 12px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.legal-table-row:last-child { border-bottom: none; }
.legal-table-header {
  background: var(--bg-3);
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .legal-table-row { grid-template-columns: 1fr; gap: 4px; }
  .legal-table-header { display: none; }
  .legal-table-row span::before { font-weight: 600; color: var(--text); }
}

/* ---- Footer ---- */

.footer {
  padding: 72px 0 36px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand p { color: var(--text-3); font-size: 0.88rem; margin-top: 12px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.86rem; font-weight: 600; margin-bottom: 4px; }
.footer-col a { font-size: 0.84rem; color: var(--text-3); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ---- Animations ---- */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-visual { order: 0; }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .advisors-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-row { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .dashboard-mock { max-width: 440px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .spring-box { padding: 40px 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    padding: 28px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
    transform: none;
  }
  .btn-sm { display: none; }

  .hero, .page-hero { padding: 120px 0 64px; }
  .hero-title { font-size: 2.2rem; letter-spacing: -1px; }
  .hero-image-row { gap: 12px; margin-top: 36px; }
  .hero-img { width: 160px; height: 200px; }
  .section { padding: 80px 0; }

  .people-grid { grid-template-columns: 1fr 1fr; }
  .advisors-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dashboard-mock { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .big-quote { padding: 36px 28px; }
  .spring-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-pills { gap: 8px; }
  .hero-pill { padding: 9px 16px; font-size: 0.8rem; }
  .hero-image-row { flex-direction: column; align-items: center; gap: 14px; }
  .hero-img { width: 100%; max-width: 320px; height: 200px; }
  .hero-img:nth-child(2) { transform: none; }
  .hero-img:nth-child(2):hover { transform: translateY(-4px); }
  .people-grid { grid-template-columns: 1fr; }
  .advisors-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
}
