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

  :root {
	--purple:        #6B3FA0;
	--purple-dark:   #4C2B8A;
	--purple-mid:    #9B76D0;
	--purple-light:  #EDE9FA;
	--purple-tint:   rgba(107,63,160,0.1);
	--purple-border: rgba(107,63,160,0.2);
	--bg-dark:       #0E0B14;
	--surface-dark:  #1A1225;
	--bg-light:      #FFFFFF;
	--bg-off:        #F7F5FC;
	--text-on-dark:  #F5F2FF;
	--text-dim:      #8A8299;
	--text-dark:     #1A1225;
	--text-mid:      #4A4560;
	--text-soft:     #7A7490;
	--max-w:         1080px;
	--page-inset:    clamp(42px, 6vw, 96px);
	--font: 'Plus Jakarta Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
	background: var(--bg-dark);
	color: var(--text-on-dark);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0.025em;
	word-spacing: 0.1em;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
  }

  a,
  button,
  input,
  textarea {
	word-spacing: normal;
  }

  .container {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 52px;
  }
  @media (max-width: 768px) { .container { padding: 0 22px; } }

  /* ── NAV ── */
  nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 200;
	padding: 20px 0;
	transition: background 0.3s, border-color 0.3s;
	border-bottom: 0.5px solid transparent;
  }
  nav.scrolled {
	background: rgba(14,11,20,0.9);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom-color: var(--purple-border);
  }
  .nav-inner {
	max-width: none;
	margin: 0 auto;
	padding: 0 var(--page-inset);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
  }
  @media (max-width: 768px) { .nav-inner { padding: 0 22px; } }

  .nav-logo img {
	height: 56px;
	width: auto;
	display: block;
  }
  .nav-logo { flex-shrink: 0; }

  .nav-right { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); min-width: 0; }
  .nav-links { display: flex; gap: clamp(16px, 2vw, 26px); list-style: none; }
  .nav-links a {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-dim);
	text-decoration: none;
	transition: color 0.2s;
	white-space: nowrap;
	letter-spacing: 0.025em;
  }
  .nav-links a:hover { color: var(--text-on-dark); }

  .nav-cta {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 600;
	padding: 9px 20px;
	border-radius: 6px;
	border: 1px solid var(--purple-border);
	background: transparent;
	color: var(--text-on-dark);
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
	letter-spacing: 0.025em;
  }
  .nav-cta:hover { background: var(--purple-tint); border-color: var(--purple); color: var(--text-on-dark); }

  .menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--purple-border);
	border-radius: 8px;
	background: rgba(107,63,160,0.08);
	color: var(--purple-mid);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
  }
  .menu-toggle span {
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 0.2s, opacity 0.2s;
  }
  nav.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  nav.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
	display: none;
	position: absolute;
	top: calc(100% - 10px);
	left: 22px;
	right: 22px;
	padding: 12px;
	border: 1px solid var(--purple-border);
	border-radius: 8px;
	background: rgba(14,11,20,0.96);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  }
  .mobile-menu a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 0 12px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dim);
	text-decoration: none;
  }
  .mobile-menu a:hover { color: var(--text-on-dark); background: var(--purple-tint); }
  .mobile-menu__cta {
	margin-top: 6px;
	color: #fff !important;
	background: var(--purple);
	justify-content: center;
  }
  .mobile-menu__cta:hover { background: var(--purple-dark) !important; }

  @media (max-width: 760px) {
	.nav-right { display: none; }
	.menu-toggle { display: flex; }
	nav.menu-open,
	nav.scrolled { background: rgba(14,11,20,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
	nav.menu-open .mobile-menu { display: block; }
  }

  /* ── HERO ── */
  .hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 130px 0 110px;
	overflow: hidden;
  }

  /* Hex texture — faded right side, purple tinted */
  .hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('images/hex-bg.jpg');
	background-size: cover;
	background-position: right center;
	background-attachment: fixed;
	opacity: 0.17;
	filter: saturate(0);
	pointer-events: none;
  }

  .hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
	  radial-gradient(ellipse 60% 70% at 90% 45%, rgba(107,63,160,0.26) 0%, transparent 65%),
	  linear-gradient(to right, var(--bg-dark) 22%, transparent 72%);
	pointer-events: none;
	z-index: 1;
  }

  /* Bottom fade into light section */
  .hero::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 160px;
	background: linear-gradient(to bottom, transparent, var(--bg-dark));
	pointer-events: none;
  }

  .hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: none;
	padding: 0 var(--page-inset);
  }
  @media (max-width: 900px) { .hero-content { max-width: 100%; } }

  .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--purple-mid);
	margin-bottom: 28px;
  }
  .eyebrow::before {
	content: '';
	width: 24px; height: 1px;
	background: currentColor;
	flex-shrink: 0;
  }

  .hero h1 {
	font-size: clamp(44px, 5.5vw, 76px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: 0.005em;
	color: var(--text-on-dark);
	max-width: 600px;
	margin-bottom: 28px;
	white-space: nowrap;
	word-spacing: 0.08em;
  }
  .hero h1 .accent { color: var(--purple-mid); }
  @media (max-width: 900px) { .hero h1 { white-space: normal; max-width: 100%; } }

  .hero h2 {
	font-size: clamp(24px, 2.7vw, 34px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0.01em;
	color: var(--text-on-dark);
	max-width: 820px;
	margin-bottom: 18px;
	word-spacing: 0.08em;
	white-space: nowrap;
  }
  @media (max-width: 760px) { .hero h2 { white-space: normal; } }

  .hero-sub {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--text-dim);
	max-width: 460px;
	margin-bottom: 48px;
  }

  .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

  .btn-primary {
	display: inline-block;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 700;
	padding: 14px 32px;
	background: var(--purple);
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	letter-spacing: -0.01em;
  }
  .btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); }

  .btn-outline {
	display: inline-block;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	padding: 14px 32px;
	background: transparent;
	color: var(--text-dim);
	border-radius: 8px;
	text-decoration: none;
	border: 1px solid rgba(138,130,153,0.25);
	transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--text-dim); color: var(--text-on-dark); }

  .scroll-hint {
	position: absolute;
	bottom: 32px; left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: var(--purple-mid);
	opacity: 1;
	animation: bob 2.2s ease-in-out infinite;
  }
  .scroll-hint svg { width: 36px; height: 36px; }
  @keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

  /* ── LIGHT SECTIONS ── */
  .light { background: var(--bg-light); color: var(--text-dark); }
  .off { background: var(--bg-off); color: var(--text-dark); }

  section { padding: 96px 0; }

  .section-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--purple);
	margin-bottom: 14px;
  }

  .section-heading {
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.06;
	margin-bottom: 18px;
  }
  .light .section-heading, .off .section-heading { color: var(--text-dark); }

  .section-sub {
	font-size: 17px;
	line-height: 1.7;
	color: var(--text-soft);
	max-width: 500px;
  }

  /* ── WHAT WE DO ── */
  .what-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
  }
  @media (max-width: 768px) { .what-layout { grid-template-columns: 1fr; gap: 40px; } }

  .service-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
  }
  @media (max-width: 440px) { .service-grid { grid-template-columns: 1fr; } }

  .service-card {
	border: 1px solid #E8E4F3;
	border-radius: 12px;
	padding: 22px 20px;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
  }
  .service-card:hover {
	border-color: var(--purple-mid);
	box-shadow: 0 4px 20px rgba(107,63,160,0.08);
  }

  .service-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--purple);
	margin-bottom: 14px;
  }

  .service-card h3 {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 7px;
	letter-spacing: -0.01em;
  }
  .service-card p { font-size: 13px; line-height: 1.6; color: var(--text-soft); }

  /* ── HOW IT WORKS ── */
  .steps-layout {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-top: 56px;
  }
  @media (max-width: 768px) { .steps-layout { grid-template-columns: 1fr 1fr; gap: 1px; } }
  @media (max-width: 480px) { .steps-layout { grid-template-columns: 1fr; } }

  .step-card {
	background: #fff;
	padding: 28px 24px;
	position: relative;
  }
  .step-card:first-child { border-radius: 12px 0 0 12px; }
  .step-card:last-child { border-radius: 0 12px 12px 0; }
  @media (max-width: 768px) {
	.step-card:nth-child(1) { border-radius: 12px 0 0 0; }
	.step-card:nth-child(2) { border-radius: 0 12px 0 0; }
	.step-card:nth-child(3) { border-radius: 0 0 0 12px; }
	.step-card:nth-child(4) { border-radius: 0 0 12px 0; }
  }

  .step-num {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--purple);
	margin-bottom: 16px;
	display: block;
  }
  .step-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 8px;
	letter-spacing: -0.02em;
  }
  .step-card p { font-size: 13px; line-height: 1.65; color: var(--text-soft); }

  .step-line {
	position: absolute;
	top: 28px; right: 0;
	width: 2px; height: 20px;
	background: var(--bg-off);
  }
  .step-card:last-child .step-line { display: none; }

  /* ── WHY US ── */
  .why-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
  }
  @media (max-width: 768px) { .why-layout { grid-template-columns: 1fr; gap: 48px; } }

  .why-list { list-style: none; margin-top: 28px; }
  .why-item {
	display: flex;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid #EDE9FA;
  }
  .why-item:first-child { border-top: 1px solid #EDE9FA; }

  .why-icon {
	width: 22px; height: 22px;
	flex-shrink: 0;
	margin-top: 1px;
	background: var(--purple-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .why-icon svg { width: 11px; height: 11px; }

  .why-item strong { font-size: 14px; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 3px; }
  .why-item span { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

  /* Stats panel */
  .stats-panel {
	background: var(--bg-dark);
	border-radius: 16px;
	padding: 36px;
	position: relative;
	overflow: hidden;
  }
  .stats-panel::before {
	content: '';
	position: absolute;
	top: -60px; right: -60px;
	width: 240px; height: 240px;
	background: radial-gradient(circle, rgba(107,63,160,0.3) 0%, transparent 65%);
	pointer-events: none;
  }

  .stats-panel-inner { position: relative; z-index: 1; }

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

  .stat-block {
	background: rgba(255,255,255,0.05);
	border: 0.5px solid rgba(107,63,160,0.25);
	border-radius: 10px;
	padding: 18px 16px;
  }
  .stat-num {
	font-size: 32px;
	font-weight: 800;
	color: var(--text-on-dark);
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 5px;
  }
  .stat-num em { font-style: normal; color: var(--purple-mid); }
  .stat-label { font-size: 12px; color: var(--text-dim); line-height: 1.45; }

  .tools-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-dim);
	margin-bottom: 12px;
  }

  .tool-tags { display: flex; flex-wrap: wrap; gap: 7px; }
  .tool-tag {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 5px 10px;
	border-radius: 5px;
	border: 0.5px solid rgba(107,63,160,0.25);
	color: var(--purple-mid);
	background: rgba(107,63,160,0.1);
  }

  /* ── IN PRODUCTION ── */
  .inprod-grid {
	display: grid;
	grid-template-columns: 5fr 3fr 3fr;
	gap: 12px;
	margin-top: 52px;
  }
  @media (max-width: 768px) { .inprod-grid { grid-template-columns: 1fr; } }

  .inprod-card {
	border: 1px solid #E8E4F3;
	border-radius: 12px;
	padding: 26px 24px 22px;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: border-color 0.2s;
  }
  .inprod-card:hover { border-color: var(--purple-mid); }

  .live-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--purple);
	background: var(--purple-light);
	padding: 4px 10px;
	border-radius: 20px;
	align-self: flex-start;
  }
  .live-badge::before {
	content: '';
	width: 5px; height: 5px;
	border-radius: 50%;
	background: var(--purple);
	animation: pulse 1.8s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .soon-badge {
	display: inline-flex;
	align-items: center;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-soft);
	background: var(--bg-off);
	padding: 4px 10px;
	border-radius: 20px;
	align-self: flex-start;
  }

  .inprod-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: -0.02em;
	line-height: 1.3;
  }
  .inprod-card p { font-size: 13px; line-height: 1.6; color: var(--text-soft); }
  .inprod-meta {
	font-size: 11px;
	color: #B0AABB;
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid #F0EBF8;
  }

  /* ── FRAMEVAULT ── */
  .framevault-band {
	position: relative;
	overflow: hidden;
	background: var(--bg-dark);
	color: var(--text-on-dark);
	border-top: 0.5px solid rgba(107,63,160,0.2);
	border-bottom: 0.5px solid rgba(107,63,160,0.2);
  }
  .framevault-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
	  radial-gradient(ellipse 52% 70% at 82% 45%, rgba(107,63,160,0.26), transparent 68%),
	  linear-gradient(135deg, rgba(255,255,255,0.04), transparent 42%);
	pointer-events: none;
  }
  .framevault-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 72px;
	align-items: center;
  }
  .framevault-logo-placeholder {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 28px;
	border: 1px dashed rgba(155,118,208,0.48);
	border-radius: 18px;
	background: rgba(155,118,208,0.08);
	color: var(--purple-mid);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
  }
  .framevault-logo-placeholder img {
	  max-height: 100px;
	  width: auto;
	  border-radius: 18px;
  }
  .framevault-copy h2 {
	font-size: clamp(36px, 5vw, 62px);
	line-height: 1;
	letter-spacing: 0.005em;
	margin-bottom: 18px;
  }
  .framevault-copy p:not(.section-label) {
	max-width: 520px;
	color: var(--text-dim);
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 34px;
  }
  .framevault-preview {
	border: 1px solid rgba(155,118,208,0.28);
	border-radius: 12px;
	background: rgba(255,255,255,0.04);
	padding: 16px;
	box-shadow: 0 24px 70px rgba(0,0,0,0.32);
  }
  .framevault-preview img {
	  max-height: 600px;
	  width: auto;
	  border-radius: 18px;
  }
 
  .preview-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.8fr 0.8fr;
	gap: 10px;
	margin-bottom: 14px;
  }
  .preview-frame {
	min-height: 150px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.08);
	background:
	  linear-gradient(145deg, rgba(155,118,208,0.18), rgba(255,255,255,0.02)),
	  #14101e;
  }
  .preview-frame.is-active {
	background:
	  linear-gradient(145deg, rgba(155,118,208,0.35), rgba(255,255,255,0.04)),
	  #171121;
  }

  @media (max-width: 768px) {
	.framevault-layout { grid-template-columns: 1fr; gap: 42px; }
	.preview-grid { grid-template-columns: 1fr; }
	.preview-frame { min-height: 92px; }
  }

  /* ── CONTACT ── */
  .contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
  }
  @media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

  .contact-detail {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
  }
  .contact-detail a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-mid);
	text-decoration: none;
	transition: color 0.2s;
  }
  .contact-detail a:hover { color: var(--purple); }
  .contact-detail a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }

  .contact-form { display: flex; flex-direction: column; gap: 13px; }

  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
  @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

  .form-field label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-soft);
  }
  .form-field input,
  .form-field textarea {
	background: var(--bg-off);
	border: 1px solid #E0DAF0;
	border-radius: 8px;
	padding: 12px 16px;
	font-family: var(--font);
	font-size: 14px;
	color: var(--text-dark);
	outline: none;
	transition: border-color 0.2s, background 0.2s;
	width: 100%;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: #B8B2CC; }
  .form-field input:focus,
  .form-field textarea:focus { border-color: var(--purple); background: #fff; }
  .form-field textarea { resize: vertical; min-height: 110px; }

  /* ── FOOTER ── */
  footer {
	background: var(--bg-dark);
	border-top: 0.5px solid rgba(107,63,160,0.2);
	padding: 32px 0;
  }
  .footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
  }
  .footer-logo img { height: 34px; width: auto; opacity: 0.78; }
  .footer-copy { font-size: 12px; color: var(--text-dim); }
  .footer-links { display: flex; gap: 24px; list-style: none; }
  .footer-links a { font-size: 12px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-on-dark); }

  /* ── ANIMATIONS ── */
  .fade-up {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: none; }
