/* =============================================
   Studio R&N – Feuille de style principale
   ============================================= */

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

:root {
  --violet-50: #F4F1FF;
  --violet-100: #EAE3FF;
  --violet-300: #B8A6FF;
  --violet-500: #6E56FF;
  --violet-600: #5B3FFF;
  --violet-700: #4A2EE0;
  --violet-900: #3E0079;
  --violet-light: #A15CFF;
  --violet-grad: linear-gradient(135deg, #A15CFF 0%, #6E56FF 50%, #3E0079 100%);
  --violet-grad-soft: linear-gradient(135deg, #F4F1FF 0%, #EAE3FF 100%);
  --bg: #FAFAFA;
  --bg-white: #FFFFFF;
  --bg-dark: #000000;
  --text: #0A0A0F;
  --text-mid: #525258;
  --text-light: #8B8B92;
  --border: #ECECF0;
  --shadow: 0 20px 60px rgba(110, 86, 255, 0.12);
  --shadow-strong: 0 30px 80px rgba(110, 86, 255, 0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

h1, h2, h3, h4, .display, .brand {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em;
}

/* ============= NAVBAR ============= */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-amp {
  background: var(--violet-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.brand-dot {
  width: 8px; height: 8px;
  background: var(--violet-500);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(110, 86, 255, 0.5); }
  50%       { transform: scale(1.3); opacity: 0.7; box-shadow: 0 0 0 8px rgba(110, 86, 255, 0); }
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--violet-grad);
  transition: width 0.3s cubic-bezier(.16, 1, .3, 1);
}
.nav-links a:hover { color: var(--violet-600); }
.nav-links a:hover::after { width: 100%; }

.btn-vms {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--text);
  background: transparent;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.4s cubic-bezier(.16, 1, .3, 1);
  z-index: 1;
}
.btn-vms::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--violet-grad);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
  z-index: -1;
}
.btn-vms:hover { color: white; border-color: transparent; }
.btn-vms:hover::before { transform: translateX(0); }

.btn-vms.filled {
  background: var(--text);
  color: white;
  border-color: var(--text);
}
.btn-vms.filled::before { transform: translateX(-101%); }
.btn-vms.filled:hover::before { transform: translateX(0); }

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: 80px 5% 100px;
  overflow: hidden;
  background: var(--bg);
}
.hero-orb-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 92, 255, 0.45) 0%, rgba(110, 86, 255, 0.12) 40%, transparent 70%);
  top: -200px; right: -200px;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 0, 121, 0.35) 0%, rgba(62, 0, 121, 0.08) 40%, transparent 70%);
  bottom: -200px; left: -100px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(110, 86, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(110, 86, 255, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at center, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.hero-tag-icon {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}
.hero-tag-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--text);
}
.hero h1 .accent { color: var(--violet-600); display: inline-block; }
.hero p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Hero browser mockup ===== */
.hero-visual {
  position: relative;
  height: 520px;
  perspective: 1400px;
}
.visual-glow {
  position: absolute;
  width: 110%; height: 110%;
  top: -5%; left: -5%;
  background: radial-gradient(circle at 60% 50%, rgba(161, 92, 255, 0.4) 0%, rgba(110, 86, 255, 0.15) 35%, transparent 65%);
  filter: blur(40px);
  z-index: 0;
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.05); }
}
.browser {
  position: absolute;
  top: 50%; left: 50%;
  width: 540px;
  transform: translate(-50%, -50%) rotateY(-14deg) rotateX(8deg);
  background: white;
  border-radius: 16px;
  box-shadow: 0 50px 100px rgba(110, 86, 255, 0.35), 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: float-browser 7s ease-in-out infinite;
  z-index: 2;
}
@keyframes float-browser {
  0%, 100% { transform: translate(-50%, -50%) rotateY(-14deg) rotateX(8deg) translateY(0); }
  50%       { transform: translate(-50%, -50%) rotateY(-14deg) rotateX(8deg) translateY(-18px); }
}
.browser-header {
  background: #F1F1F4;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #E4E4E8;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 11px; height: 11px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27C93F; }
.browser-url {
  flex: 1;
  background: white;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-mid);
  border: 1px solid #E4E4E8;
  text-align: center;
}
.browser-body { padding: 22px; background: white; min-height: 320px; }
.mini-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #F1F1F4;
  margin-bottom: 22px;
}
.mini-logo { width: 70px; height: 14px; background: var(--violet-grad); border-radius: 4px; }
.mini-menu { display: flex; gap: 14px; }
.mini-menu span { width: 32px; height: 7px; background: #E4E4E8; border-radius: 3px; }
.mini-cta { width: 60px; height: 22px; background: var(--text); border-radius: 999px; }
.mini-h1 {
  height: 20px;
  background: linear-gradient(90deg, var(--text) 0%, var(--text) 60%, transparent 60%);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 90%;
}
.mini-h1.accent {
  background: linear-gradient(90deg, var(--violet-light) 0%, var(--violet-500) 50%, transparent 50%);
  width: 70%;
}
.mini-text { height: 7px; background: #E4E4E8; border-radius: 3px; margin-bottom: 6px; width: 80%; }
.mini-text.short { width: 60%; margin-bottom: 18px; }
.mini-button {
  display: inline-block;
  width: 110px; height: 32px;
  background: var(--violet-grad);
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(110, 86, 255, 0.3);
}
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-card {
  height: 80px;
  background: #FAFAFA;
  border: 1px solid #F1F1F4;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-card::before {
  content: '';
  width: 24px; height: 24px;
  background: var(--violet-grad-soft);
  border: 1px solid rgba(110, 86, 255, 0.2);
  border-radius: 6px;
  display: block;
}
.mini-card::after {
  content: '';
  width: 70%; height: 6px;
  background: #E4E4E8;
  border-radius: 3px;
  display: block;
}

/* ===== Floating shapes ===== */
.float-shape { position: absolute; z-index: 3; }
.fs-square-1 {
  top: 5%; left: -5%;
  width: 60px; height: 60px;
  background: var(--violet-grad);
  border-radius: 12px;
  transform: rotate(15deg);
  animation: float-shape-a 8s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(110, 86, 255, 0.4);
}
@keyframes float-shape-a {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50%       { transform: rotate(25deg) translateY(-25px); }
}
.fs-square-2 {
  bottom: 8%; right: -2%;
  width: 44px; height: 44px;
  background: white;
  border: 2px solid var(--violet-500);
  border-radius: 10px;
  transform: rotate(-12deg);
  animation: float-shape-b 9s ease-in-out infinite;
}
@keyframes float-shape-b {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%       { transform: rotate(-22deg) translateY(20px); }
}
.fs-dot-1 {
  top: 15%; right: 5%;
  width: 18px; height: 18px;
  background: var(--violet-light);
  border-radius: 50%;
  animation: float-shape-a 6s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(161, 92, 255, 0.5);
}
.fs-dot-2 {
  bottom: 25%; left: 5%;
  width: 12px; height: 12px;
  background: var(--text);
  border-radius: 50%;
  animation: float-shape-b 7s ease-in-out infinite;
}
.fs-ring {
  top: 40%; left: -8%;
  width: 70px; height: 70px;
  border: 2px dashed var(--violet-500);
  border-radius: 50%;
  animation: spin-slow 18s linear infinite;
  opacity: 0.6;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-marquee-bottom {
  margin-top: 80px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  position: relative;
  z-index: 2;
}
.hero-marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to    { transform: translateX(-50%); }
}
.marquee-item {
  flex-shrink: 0;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.marquee-item::after { content: '✦'; color: var(--violet-500); font-size: 16px; }

/* ============= TRUST ============= */
.trust {
  background: var(--text);
  color: white;
  padding: 50px 5%;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(110, 86, 255, 0.4) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}
.trust-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.trust-num {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ============= SECTION ============= */
.section { padding: 130px 5%; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.section-head { margin-bottom: 80px; max-width: 720px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--violet-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--violet-500); }
.section-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.section-title .accent { color: var(--violet-600); }
.section-sub { font-size: 18px; color: var(--text-mid); line-height: 1.65; }

/* ============= SERVICES ============= */
.services-orb {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 92, 255, 0.22) 0%, transparent 70%);
  top: 10%; right: -100px;
  filter: blur(40px);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), box-shadow 0.4s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -50%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 92, 255, 0.4) 0%, transparent 60%);
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.service-card:hover::after { opacity: 1; }
.service-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--violet-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative; z-index: 1;
}
.service-icon {
  width: 64px; height: 64px;
  background: var(--violet-grad);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  position: relative; z-index: 1;
  box-shadow: 0 12px 30px rgba(110, 86, 255, 0.35);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.05;
  text-transform: uppercase;
  position: relative; z-index: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
.service-tag {
  font-size: 11px;
  background: var(--violet-50);
  color: var(--violet-700);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(110, 86, 255, 0.15);
}

/* ============= INDUSTRIES ============= */
.industries {
  background: var(--bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.industries-orb {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 86, 255, 0.30) 0%, transparent 60%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  pointer-events: none;
}
.industries .section-title { color: white; }
.industries .section-title .accent { color: var(--violet-light); }
.industries .section-sub { color: rgba(255, 255, 255, 0.6); }
.industries .section-tag { color: var(--violet-light); }
.industries .section-tag::before { background: var(--violet-light); }

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
.bento-card {
  border-radius: 20px;
  padding: 28px;
  height: 200px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bento-card:hover { transform: translateY(-6px); }
.bento-card:hover .bento-icon { transform: scale(1.15) rotate(-6deg); }
.bento-c1 { background: linear-gradient(135deg, #6E56FF 0%, #3E0079 100%); }
.bento-c2 { background: linear-gradient(135deg, #A15CFF 0%, #6E56FF 100%); }
.bento-c3 { background: linear-gradient(135deg, #1E1E28 0%, #0A0A0F 100%); border-color: rgba(110, 86, 255, 0.3); }
.bento-c4 { background: linear-gradient(135deg, #5B3FFF 0%, #1A0040 100%); }
.bento-c5 { background: linear-gradient(135deg, #2A1D5C 0%, #0A0A0F 100%); border-color: rgba(161, 92, 255, 0.25); }
.bento-c6 { background: linear-gradient(135deg, #A15CFF 0%, #4A2EE0 100%); }
.bento-c7 { background: linear-gradient(135deg, #16162A 0%, #0A0A0F 100%); border-color: rgba(110, 86, 255, 0.2); }
.bento-c8 { background: linear-gradient(135deg, #4A2EE0 0%, #6E56FF 100%); }
.bento-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 100% 100%, white 0%, transparent 30%),
    radial-gradient(circle at 0% 0%, white 0%, transparent 25%);
  pointer-events: none;
}
.bento-icon {
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
  position: relative; z-index: 1;
}
.bento-name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: white;
  position: relative; z-index: 1;
  line-height: 1.1;
}
.bento-meta {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* ============= PROCESS ============= */
.process { background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-step {
  position: relative;
  padding: 36px 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), box-shadow 0.4s;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 28px;
  background: var(--violet-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-line { width: 32px; height: 2px; background: var(--violet-500); margin-bottom: 20px; }
.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--text);
}
.step-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ============= ABOUT ============= */
.about { background: var(--bg-white); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.founder-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), box-shadow 0.4s;
}
.founder-card::before {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(110, 86, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; right: -100px;
  transition: transform 0.6s cubic-bezier(.16, 1, .3, 1);
}
.founder-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.founder-card:hover::before { transform: scale(1.4); }
.founder-header { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; position: relative; z-index: 1; }
.founder-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--violet-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(110, 86, 255, 0.35);
}
.founder-name {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text);
}
.founder-role {
  font-size: 13px;
  color: var(--violet-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.founder-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 26px;
  position: relative; z-index: 1;
}
.founder-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; position: relative; z-index: 1; }
.skill-tag {
  font-size: 11px;
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  position: relative; z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.linkedin-btn:hover { background: var(--violet-600); transform: translateY(-2px); }
.linkedin-btn svg { width: 14px; height: 14px; }

/* ============= CONTACT (CTA + FORM) ============= */
.cta-section { padding: 100px 5%; background: var(--bg); }
.cta-box {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-dark);
  border-radius: 32px;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  color: white;
}
.cta-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(161, 92, 255, 0.45) 0%, transparent 60%);
  border-radius: 50%;
  top: -300px; left: -150px;
  filter: blur(60px);
}
.cta-orb-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(110, 86, 255, 0.4) 0%, transparent 60%);
  border-radius: 50%;
  bottom: -250px; right: -100px;
  filter: blur(60px);
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 80%);
}
.cta-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.cta-tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--violet-light);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}
.cta-box h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: white;
}
.cta-box h2 .accent { color: var(--violet-light); }
.cta-box .lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 380px;
}
.direct-contact { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 28px; }
.direct-contact-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}
.contact-link:hover { color: var(--violet-light); transform: translateX(4px); }
.contact-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(110, 86, 255, 0.15);
  border: 1px solid rgba(110, 86, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
}
.contact-icon svg { width: 16px; height: 16px; }

.cta-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: white;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--violet-500);
  background: rgba(110, 86, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(110, 86, 255, 0.15);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 22px;
  cursor: pointer;
}
.consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--violet-500);
  flex-shrink: 0;
  cursor: pointer;
}
.consent span { font-size: 12px; color: rgba(255, 255, 255, 0.55); line-height: 1.5; }
.consent a { color: var(--violet-light); text-decoration: underline; }
.form-submit {
  width: 100%;
  background: white;
  color: var(--text);
  padding: 16px;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255, 255, 255, 0.15); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Sora', sans-serif;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}
.form-success.visible { display: block; }
.form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.form-success p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ============= FOOTER ============= */
footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 5% 30px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-brand-amp {
  background: var(--violet-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
}
.footer-col h5 {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--violet-light); }
.footer-col a svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--violet-light); }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.16, 1, .3, 1), transform 0.8s cubic-bezier(.16, 1, .3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============= LEGAL PAGES ============= */
.legal-hero {
  position: relative;
  background: var(--bg);
  padding: 80px 5% 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.legal-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 92, 255, 0.18) 0%, transparent 60%);
  top: -200px; right: -100px;
  filter: blur(60px);
  pointer-events: none;
}
.legal-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--violet-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  transition: transform 0.2s;
}
.legal-back:hover { transform: translateX(-4px); }
.legal-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.legal-hero h1 .accent { color: var(--violet-600); }
.legal-hero p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 600px;
}
.legal-update {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 5% 100px;
}
.legal-content h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin: 50px 0 18px;
  letter-spacing: -0.02em;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 30px 0 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 16px 24px;
}
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content a {
  color: var(--violet-600);
  text-decoration: underline;
  text-decoration-color: rgba(110, 86, 255, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.legal-content a:hover { text-decoration-color: var(--violet-600); }

.legal-info-box {
  background: var(--violet-50);
  border-left: 3px solid var(--violet-500);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 20px 0;
}
.legal-info-box p { margin-bottom: 6px; color: var(--text); font-size: 14px; }
.legal-info-box p:last-child { margin-bottom: 0; }
.legal-info-box strong { display: inline-block; min-width: 140px; color: var(--violet-700); font-weight: 600; }

/* ============= RESPONSIVE ============= */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 52px; }
  .section { padding: 80px 5%; }
  .section-title { font-size: 42px; }
  .cta-box { padding: 50px 32px; }
  .cta-content { grid-template-columns: 1fr; gap: 40px; }
  .cta-box h2 { font-size: 38px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links, .navbar > .btn-vms { display: none; }
  .burger { display: flex; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { height: 380px; }
  .browser { width: 90%; }
  .legal-hero h1 { font-size: 40px; }
  .legal-content h2 { font-size: 24px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 40px; }
  .section-title { font-size: 32px; }
  .cta-box h2 { font-size: 30px; }
  .bento { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
