/* ==========================================================================
   Alpexus Technologies Ltd — corporate site v2
   Light lavender SaaS-landing style · dark accent bands · violet brand
   Inter body + Bricolage Grotesque display
   ========================================================================== */

:root {
  --bg: #ffffff;
  --lav-1: #d9cdf8;
  --lav-2: #ece6fb;
  --lav-3: #f6f3fd;
  --ink: #100d1a;
  --body: #4d4866;
  --muted: #8b86a3;
  --violet: #6d28d9;
  --violet-hov: #5b21b6;
  --violet-soft: #ede9fe;
  --violet-mid: #8b5cf6;
  --border: #e8e3f6;
  --card-shadow: 0 18px 50px rgba(84, 51, 168, 0.10);
  --dark: #150d26;
  --r-card: 24px;
  --r-panel: 36px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  font-size: 1.04rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(139, 92, 246, 0.25); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet); text-decoration: none; }

:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--violet); color: #fff; padding: 0.6rem 1.2rem;
  border-radius: 0 0 12px 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.container { max-width: 1140px; margin: 0 auto; padding-inline: clamp(1.25rem, 5vw, 2rem); }

section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; font-weight: 600; font-size: 1rem;
  padding: 0.85rem 1.7rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-violet {
  background: var(--violet); color: #fff;
  box-shadow: 0 10px 26px rgba(109, 40, 217, 0.32);
}
.btn-violet:hover { background: var(--violet-hov); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2440; color: #fff; transform: translateY(-2px); }
.btn-light {
  background: #fff; color: var(--ink); border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(84, 51, 168, 0.08);
}
.btn-light:hover { border-color: #d5ccf0; transform: translateY(-2px); color: var(--ink); }
.btn-ghost-dark { border: 1.5px solid rgba(255, 255, 255, 0.35); color: #fff; }
.btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.1); color: #fff; transform: translateY(-2px); }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.92rem; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 227, 246, 0.8);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--ink); font-family: var(--font-display); }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand-name { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.05; }
.brand-sub {
  display: block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { color: #3c3754; font-size: 0.96rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 0.8rem; }
.lang-pill {
  display: inline-flex; border: 1px solid var(--border); border-radius: 999px;
  overflow: hidden; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; background: #fff;
}
.lang-pill a, .lang-pill span { padding: 0.32rem 0.72rem; color: var(--muted); }
.lang-pill .active { background: var(--violet-soft); color: var(--violet); }
.lang-pill a:hover { color: var(--ink); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(8rem, 14vw, 10.5rem) 0 clamp(3.6rem, 7vw, 5.5rem);
  background:
    radial-gradient(ellipse 75% 55% at 50% -5%, rgba(150, 108, 245, 0.28), transparent 70%),
    linear-gradient(180deg, #efeafc 0%, #f8f6fe 55%, #ffffff 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(84, 51, 168, 0.10) 1px, transparent 0);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 10%, #000 20%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 60% at 50% 10%, #000 20%, transparent 72%);
}
.hero-inner { position: relative; text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 0.4rem 1rem; font-size: 0.82rem; font-weight: 600; color: #56506e;
  box-shadow: 0 4px 14px rgba(84, 51, 168, 0.08);
  margin-bottom: 1.7rem;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--violet-mid); }
@media (max-width: 560px) { .eb-x { display: none; } }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6.4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto 1.4rem;
}
.accent { color: var(--violet); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  max-width: 640px; margin: 0 auto 2.1rem;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* Hero stage: gradient panel + capability collage */
.hero-stage {
  position: relative;
  margin: clamp(3.2rem, 6vw, 4.5rem) auto 0;
  max-width: 1040px;
  border-radius: var(--r-panel) var(--r-panel) 0 0;
  background: linear-gradient(180deg, #cbb7f4 0%, #e2d8fa 55%, #f3effc 100%);
}
.collage {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.3rem; align-items: center;
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1.4rem, 4vw, 3rem) clamp(2rem, 5vw, 3.2rem);
}
.cg-card {
  background: #fff; border-radius: 18px; box-shadow: 0 18px 44px rgba(59, 27, 130, 0.18);
  padding: 1rem 1.15rem; text-align: left; font-size: 0.85rem;
}
.cg-1 { transform: translateY(18px) rotate(-1deg); }
.cg-3 { transform: translateY(-14px) rotate(1deg); }
.cg-wheel { text-align: center; padding: 1.3rem 1rem; }
.cg-wheel p { margin-top: 0.4rem; font-size: 0.82rem; color: var(--muted); }
@media (max-width: 760px) {
  .collage { grid-template-columns: 1fr; padding: 2rem 1.2rem; }
  .cg-1, .cg-3 { transform: none; }
}
.float-card {
  position: absolute;
  background: #fff; border-radius: 18px; box-shadow: 0 18px 44px rgba(59, 27, 130, 0.18);
  padding: 1rem 1.15rem; text-align: left; font-size: 0.85rem;
}
.fc-title { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.fc-icon {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: var(--violet-soft); color: var(--violet); flex: none;
}
.fc-passport { left: 4%; top: 60px; width: 218px; }
.ring { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.8rem; }
.ring svg { flex: none; }
.ring-label b { display: block; color: var(--ink); font-size: 1.02rem; line-height: 1.2; }
.ring-label span { color: var(--muted); font-size: 0.8rem; }
.fc-outreach { right: 3.5%; top: 120px; width: 250px; }
.or-row { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid #f1eefa; color: #56506e; }
.or-row:last-child { border-bottom: 0; }
.or-row .pill { flex: none; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; border-radius: 999px; padding: 0.14rem 0.55rem; }
.pill-green { background: #e7f7ef; color: #0f7a4d; }
.pill-violet { background: var(--violet-soft); color: var(--violet); }
.pill-amber { background: #fdf1dc; color: #a16207; }
.name-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-radius: 999px; padding: 0.34rem 0.85rem;
  font-size: 0.8rem; font-weight: 600; color: #fff;
  box-shadow: 0 10px 24px rgba(59, 27, 130, 0.25);
}
.name-chip::before {
  content: ""; position: absolute; top: -9px; left: -4px;
  border: 7px solid transparent; border-bottom-color: currentColor;
  transform: rotate(18deg);
}
.chip-orange { background: #f97362; }
.chip-orange::before { color: #f97362; }
.chip-blue { background: #4f8ff7; }
.chip-blue::before { color: #4f8ff7; }
.nc-1 { left: 10%; top: -14px; }
.nc-2 { right: 9%; bottom: -12px; }

@media (max-width: 900px) {
  .fc-passport { left: 2%; top: 30px; width: 190px; }
  .fc-outreach { right: 2%; top: 90px; width: 216px; }
}
@media (max-width: 700px) {
  .float-card, .name-chip { display: none; }
  .hero-stage { min-height: 0; }
  .hero-phone { margin-top: -40px; }
}

/* --------------------------------------------------------------------------
   Principles strip — slow marquee
   -------------------------------------------------------------------------- */
.strip { padding: 2.4rem 0 0.8rem; overflow: hidden; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.6rem; width: max-content;
  animation: marq 32s linear infinite;
}
.strip-line {
  display: flex; flex-wrap: nowrap; align-items: center; gap: 2.6rem; flex: none;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #a49ec0; white-space: nowrap;
}
.strip-line span { display: inline-flex; align-items: center; gap: 0.6rem; }
.strip-line .sep { width: 5px; height: 5px; border-radius: 50%; background: #d5cdf0; padding: 0; }
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* --------------------------------------------------------------------------
   Section heads
   -------------------------------------------------------------------------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(2.2rem, 5vw, 3.2rem); }
.kicker {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--violet); background: var(--violet-soft);
  border-radius: 999px; padding: 0.34rem 0.95rem; margin-bottom: 1rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.025em;
  color: var(--ink);
}
.section-head p { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   Bento product grid
   -------------------------------------------------------------------------- */
.bento { display: grid; gap: 1.15rem; }
.bento-row-2 { grid-template-columns: 1fr 1fr; }
.bento-row-3 { grid-template-columns: 1fr 1fr 1fr; margin-top: 1.15rem; }
.bcard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 1.9rem 1.8rem;
  box-shadow: 0 8px 30px rgba(84, 51, 168, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
.bcard h3 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 0.45rem; }
.bcard > p { font-size: 0.97rem; }
.bcard-tint-1 { background: linear-gradient(170deg, #faf8ff, #f1ecfd); }
.bcard-tint-2 { background: linear-gradient(170deg, #fffdf9, #fdf4ec); }
.bicon {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: var(--violet-soft); color: var(--violet); margin-bottom: 1rem;
}

/* mini-UI vignettes inside big bento cards */
.mini-ui {
  margin-top: 1.4rem; background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 30px rgba(84, 51, 168, 0.08);
  font-size: 0.88rem;
}
.mu-head { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: #fff; font-weight: 700; display: grid; place-items: center; font-size: 1.05rem;
}
.mu-head b { color: var(--ink); display: block; line-height: 1.25; }
.mu-head span { color: var(--muted); font-size: 0.8rem; }
.progress { height: 8px; border-radius: 999px; background: #efeafb; margin: 1rem 0 0.4rem; overflow: hidden; }
.progress i { display: block; height: 100%; width: 93%; border-radius: 999px; background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.progress-label { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.78rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.9rem; }
.chip {
  font-size: 0.75rem; font-weight: 600; color: #56506e;
  background: #f4f1fc; border: 1px solid var(--border); border-radius: 999px; padding: 0.22rem 0.7rem;
}
.mu-foot { margin-top: 1rem; color: var(--violet); font-weight: 600; font-size: 0.85rem; }

.file-row { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0; border-bottom: 1px solid #f1eefa; color: #56506e; font-size: 0.85rem; }
.file-row:last-child { border-bottom: 0; }
.file-ico { width: 30px; height: 30px; border-radius: 9px; background: #f4f1fc; display: grid; place-items: center; color: var(--violet); flex: none; }
.file-row .lock { margin-left: auto; color: var(--muted); }

.wheel-wrap { display: flex; justify-content: center; margin-top: 1.1rem; }

@media (max-width: 900px) {
  .bento-row-2, .bento-row-3 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Products — one product card + roadmap card
   -------------------------------------------------------------------------- */
.product-card {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(165deg, #faf8ff, #efe9fd);
  border: 1px solid var(--border); border-radius: 32px;
  padding: clamp(1.8rem, 4.5vw, 3.2rem);
  box-shadow: 0 16px 50px rgba(84, 51, 168, 0.10);
}
.product-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.product-brand img { height: 42px; width: auto; }
.product-brand .name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.02em; }
.product-pill {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--violet); background: #fff; border: 1px solid #ddd2f8;
  border-radius: 999px; padding: 0.3rem 0.85rem; margin-bottom: 1rem;
}
.product-card h3 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 0.8rem;
}
.product-card h3 .accent { color: var(--violet); }
.plist { list-style: none; display: grid; gap: 0.55rem; margin: 1.2rem 0 1.7rem; }
.plist li { display: flex; gap: 0.6rem; align-items: baseline; font-size: 0.96rem; }
.plist .tick { color: var(--violet); font-weight: 800; flex: none; }
.plist strong { color: var(--ink); font-weight: 600; }
.product-visual { display: flex; justify-content: center; }
.phone-mock {
  width: min(295px, 62vw);
  height: auto;
  filter: drop-shadow(0 32px 55px rgba(59, 27, 130, 0.30));
}

/* CSS laptop mockup — screenshot inside a device frame */
.laptop { width: 100%; max-width: 500px; }
.laptop-screen {
  border: 11px solid #191327; border-bottom-width: 14px;
  border-radius: 18px 18px 0 0;
  background: #191327;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 34px 70px rgba(59, 27, 130, 0.30);
}
.laptop-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.laptop-base {
  height: 15px;
  background: linear-gradient(180deg, #e9e4f6, #b9b1d4);
  border-radius: 2px 2px 15px 15px;
  box-shadow: 0 16px 34px rgba(59, 27, 130, 0.22);
  position: relative;
}
.laptop-base::before {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); top: 0;
  width: 96px; height: 6px; background: #a299c2; border-radius: 0 0 8px 8px;
}
.product-more {
  margin-top: 1.15rem;
  display: flex; gap: 1.1rem; align-items: center;
  border: 2px dashed #d9cdf6; border-radius: 24px;
  background: #fbfaff;
  padding: 1.5rem clamp(1.3rem, 3vw, 2.2rem);
}
.product-more .bicon { margin-bottom: 0; flex: none; }
.product-more b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.08rem; margin-bottom: 0.15rem; }
.product-more p { font-size: 0.95rem; }
@media (max-width: 860px) {
  .product-card { grid-template-columns: 1fr; }
  .product-more { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
}

/* --------------------------------------------------------------------------
   Dark mission band
   -------------------------------------------------------------------------- */
.mission-band {
  border-radius: 40px;
  background:
    radial-gradient(ellipse 60% 90% at 85% 0%, rgba(124, 58, 237, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 100%, rgba(56, 189, 248, 0.12), transparent 60%),
    var(--dark);
  color: #cdc6e4;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.6rem, 5vw, 4rem);
  overflow: hidden; position: relative;
}
.mission-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 600; line-height: 1.4; letter-spacing: -0.01em;
  color: #f1eefc; max-width: 800px;
}
.mission-text .hl { color: #c4b5fd; }
.facts-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  margin-top: clamp(2rem, 5vw, 3.2rem); padding-top: 2rem;
  border-top: 1px solid rgba(196, 181, 253, 0.2);
}
.fact-big { text-align: left; }
.fact-big b {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: #fff; letter-spacing: -0.02em;
}
.fact-big span { font-size: 0.85rem; color: #a79fc9; }
@media (max-width: 760px) { .facts-row { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   How it works — numbered steps + visual
   -------------------------------------------------------------------------- */
.how-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.steps { list-style: none; }
.step { display: flex; gap: 1.2rem; padding: 1.35rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: 0; }
.step-num {
  flex: none; font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: var(--violet-soft); color: var(--violet);
}
.step h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.step p { font-size: 0.97rem; }
.how-visual img {
  border-radius: 26px; border: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(84, 51, 168, 0.18);
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-visual { max-width: 440px; margin: 0 auto; }
}

/* --------------------------------------------------------------------------
   Founder note
   -------------------------------------------------------------------------- */
.founder-band {
  background: linear-gradient(180deg, #f4f0fd, #faf8ff);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1.6rem, 5vw, 4.5rem);
  text-align: center;
}
.founder-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 600; line-height: 1.45; letter-spacing: -0.01em;
  color: var(--ink); max-width: 820px; margin: 0.4rem auto 1.6rem;
}
.founder-quote::before { content: "\201C"; color: var(--violet-mid); font-weight: 800; margin-right: 0.06em; }
.founder-quote::after { content: "\201D"; color: var(--violet-mid); font-weight: 800; margin-left: 0.06em; }
:lang(fr) .founder-quote::before { content: "«\00A0"; }
:lang(fr) .founder-quote::after { content: "\00A0»"; }
.founder-sig b { display: block; color: var(--ink); font-weight: 700; }
.founder-sig span { font-size: 0.9rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: 40px;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255, 255, 255, 0.55), transparent 60%),
    linear-gradient(180deg, #d3c3f7, #b99df0);
  text-align: center;
  padding: clamp(2.8rem, 7vw, 5rem) clamp(1.6rem, 5vw, 4rem);
  overflow: hidden;
}
.cta-band h2 { color: #241458; }
.cta-band p { color: #4c3a85; max-width: 560px; margin: 0.9rem auto 1.9rem; }
.cta-band .cta-row { justify-content: center; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-panel);
  padding: clamp(1.9rem, 5vw, 3.4rem);
  box-shadow: 0 10px 36px rgba(84, 51, 168, 0.07);
}
.contact-grid h2 { margin-bottom: 0.7rem; }
.contact-email {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem); font-weight: 700; color: var(--violet);
  margin-top: 1.2rem; border-bottom: 2px solid #ded2f8; padding-bottom: 2px;
}
.contact-email:hover { color: var(--violet-hov); border-color: var(--violet-mid); }
.office {
  border-left: 3px solid #ded2f8; padding-left: 1.3rem;
  font-size: 0.93rem; font-style: normal; line-height: 1.85; color: var(--body);
}
.office .office-label {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem;
}
.office .co-name { color: var(--ink); font-weight: 700; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Contact page — form
   -------------------------------------------------------------------------- */
.page-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3rem); padding-top: clamp(7.5rem, 12vw, 9.5rem); }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-head p { margin-top: 0.9rem; }

.contact-page-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-panel);
  padding: clamp(1.9rem, 5vw, 3.2rem);
  box-shadow: 0 10px 36px rgba(84, 51, 168, 0.07);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
@media (max-width: 860px) { .contact-page-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.15rem; }
.field label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem;
}
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 0.85rem 1rem; outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #a8a1bf; }
.field input:focus, .field textarea:focus {
  border-color: var(--violet-mid);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}
.field textarea { min-height: 150px; resize: vertical; }

.invalid-feedback, .empty-feedback { display: none; color: #dc2626; font-size: 0.82rem; margin-top: 0.35rem; }
.was-validated :placeholder-shown:invalid ~ .empty-feedback { display: block; }
.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback { display: block; }
.was-validated :invalid { border-color: #dc2626; }

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 1rem; }
#result { margin-top: 1rem; font-weight: 600; font-size: 0.95rem; }
#result.ok { color: #0f7a4d; }
#result.err { color: #dc2626; }

.contact-side { border-left: 3px solid #ded2f8; padding-left: 1.4rem; }
.contact-side h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.contact-side > p { font-size: 0.95rem; margin-bottom: 1.4rem; }
@media (max-width: 860px) { .contact-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1.5rem; } }

/* --------------------------------------------------------------------------
   Footer (dark)
   -------------------------------------------------------------------------- */
footer {
  background: #120b20; color: #a79fc9;
  padding: clamp(2.8rem, 6vw, 4rem) 0 2.4rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2.2rem; border-bottom: 1px solid rgba(196, 181, 253, 0.16);
}
.footer-brand .brand { color: #fff; margin-bottom: 0.9rem; }
.footer-brand .brand-sub { color: #8d84b5; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.fcol h4 {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #eae5fb; margin-bottom: 0.9rem;
}
.fcol ul { list-style: none; display: grid; gap: 0.55rem; }
.fcol a { color: #a79fc9; }
.fcol a:hover { color: #fff; }
.statutory { padding-top: 2rem; line-height: 1.8; font-size: 0.85rem; max-width: 860px; }
.statutory p + p { margin-top: 0.5rem; }
.footer-meta {
  margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(196, 181, 253, 0.16);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.83rem;
  color: #8d84b5;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   Reveal-on-scroll (visible without JS) — directional variants + stagger
   -------------------------------------------------------------------------- */
html.js .rev, html.js .rev-l, html.js .rev-r, html.js .rev-sc {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.22, 0.9, 0.36, 1), transform 0.85s cubic-bezier(0.22, 0.9, 0.36, 1);
  will-change: opacity, transform;
}
html.js .rev { transform: translateY(30px); }
html.js .rev-l { transform: translateX(-44px); }
html.js .rev-r { transform: translateX(44px); }
html.js .rev-sc { transform: scale(0.95) translateY(20px); }
html.js .rev.in, html.js .rev-l.in, html.js .rev-r.in, html.js .rev-sc.in { opacity: 1; transform: none; }
/* stagger cards inside grids and facts inside the band */
html.js .bento > *:nth-child(2) { transition-delay: 0.12s; }
html.js .bento > *:nth-child(3) { transition-delay: 0.24s; }
html.js .facts-row > *:nth-child(2) { transition-delay: 0.1s; }
html.js .facts-row > *:nth-child(3) { transition-delay: 0.2s; }
html.js .facts-row > *:nth-child(4) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  html.js .rev, html.js .rev-l, html.js .rev-r, html.js .rev-sc { opacity: 1; transform: none; transition: none; }
}
