/* =========================================================
   Fin Ecosystem Deploy-Ready Static Website
   Brand: Fin Ecosystem
   Domain: finecosystem.com
   Author: Fin Ecosystem
========================================================= */

/* ------------------------------
   Design Tokens
------------------------------ */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f6fc;
  --bg-cream: #fbfaf7;
  --text: #0b1020;
  --text-soft: #2c3142;
  --muted: #626a7f;
  --muted-2: #848b9d;
  --navy: #090e22;
  --navy-2: #121936;
  --purple: #6d3ff2;
  --purple-dark: #41209c;
  --violet: #8b5cf6;
  --blue: #3468ff;
  --cyan: #1fb6aa;
  --green: #16a34a;
  --orange: #f59e0b;
  --red: #e11d48;
  --border: rgba(12, 16, 32, 0.1);
  --border-strong: rgba(109, 63, 242, 0.22);
  --card: rgba(255, 255, 255, 0.86);
  --glass: rgba(255, 255, 255, 0.66);
  --shadow-sm: 0 12px 30px rgba(20, 15, 48, 0.06);
  --shadow-md: 0 22px 60px rgba(20, 15, 48, 0.10);
  --shadow-lg: 0 34px 100px rgba(20, 15, 48, 0.15);
  --glow: 0 24px 80px rgba(109, 63, 242, 0.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1180px;
  --ease: 220ms ease;
}

/* ------------------------------
   Reset + Base
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(139, 92, 246, 0.13), transparent 28%),
    radial-gradient(circle at 92% 3%, rgba(52, 104, 255, 0.11), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fbfaff 44%, #fff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(109, 63, 242, 0.18);
  color: var(--text);
}

/* ------------------------------
   Layout Utilities
------------------------------ */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-tight {
  padding: 78px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 65% 0%, rgba(109, 63, 242, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(248, 247, 252, 0.88), rgba(255, 255, 255, 1));
  border-top: 1px solid rgba(12, 16, 32, 0.06);
  border-bottom: 1px solid rgba(12, 16, 32, 0.06);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 18% 14%, rgba(139, 92, 246, 0.24), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(52, 104, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #080d20, #111733 48%, #101932);
  overflow: hidden;
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  pointer-events: none;
}

.section-dark .container {
  position: relative;
  z-index: 2;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.center {
  text-align: center;
}

.max-760 {
  max-width: 760px;
}

.max-900 {
  max-width: 900px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------
   Typography
------------------------------ */
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  letter-spacing: -0.075em;
}

h2 {
  font-size: clamp(2.05rem, 4.3vw, 4.25rem);
}

h3 {
  font-size: clamp(1.16rem, 2vw, 1.55rem);
}

h4 {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: #4f5669;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(109, 63, 242, 0.18);
  border-radius: 999px;
  color: var(--purple-dark);
  background: rgba(109, 63, 242, 0.07);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

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

.section-header {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------
   Buttons + Pills
------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 850;
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), border var(--ease), background var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 14px 32px rgba(109, 63, 242, 0.24);
}

.btn-primary:hover {
  box-shadow: var(--glow);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.80);
  border-color: rgba(12, 16, 32, 0.12);
  box-shadow: 0 10px 26px rgba(12, 16, 32, 0.06);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  border-color: rgba(109, 63, 242, 0.32);
  background: #fff;
}

.btn-dark {
  color: #fff;
  background: var(--navy);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 999px;
  color: #525a70;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 760;
  box-shadow: 0 10px 28px rgba(20, 15, 48, 0.04);
}

.pill i {
  color: var(--purple);
}

/* ------------------------------
   Header / Navbar
------------------------------ */
.site-header {
  position: fixed;
  inset: 18px 0 auto 0;
  z-index: 1000;
  pointer-events: none;
}

.nav-wrap {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(19, 16, 40, 0.08);
  transition: background var(--ease), border var(--ease), box-shadow var(--ease);
}

.site-header.scrolled .nav-wrap {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(20, 22, 36, 0.10);
  box-shadow: 0 18px 52px rgba(19, 16, 40, 0.12);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.32), transparent 28%),
    linear-gradient(135deg, var(--purple-dark), var(--blue));
  box-shadow: 0 12px 26px rgba(109, 63, 242, 0.22);
  font-size: 0.84rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(12, 16, 32, 0.72);
  font-size: 0.91rem;
  font-weight: 780;
  transition: background var(--ease), color var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(109, 63, 242, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(109, 63, 242, 0.08);
}

/* ------------------------------
   Hero
------------------------------ */
.hero {
  padding: 178px 0 92px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -250px;
  top: -180px;
  background: radial-gradient(circle, rgba(109, 63, 242, 0.16), transparent 62%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -280px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(52, 104, 255, 0.12), transparent 62%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 970px;
  margin: 0 auto 54px;
  text-align: center;
}

.hero-copy .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .lead {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-pills {
  justify-content: center;
  margin-top: 30px;
}

/* ------------------------------
   Product Dashboard Visual
------------------------------ */
.ecosystem-visual {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(109, 63, 242, 0.14);
  border-radius: var(--radius-xl);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64)),
    radial-gradient(circle at 50% 0%, rgba(109, 63, 242, 0.18), transparent 45%);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.ecosystem-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 63, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 63, 242, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 70%);
  pointer-events: none;
}

.visual-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(20, 15, 48, 0.06);
  margin-bottom: 20px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(109, 63, 242, 0.24);
}

.visual-search {
  flex: 1;
  max-width: 440px;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7a8091;
  padding: 0 14px;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 999px;
  background: rgba(248, 247, 252, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
}

.visual-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}

.visual-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
}

.visual-panel {
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(20, 15, 48, 0.07);
  padding: 18px;
}

.visual-panel.dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.36), transparent 38%),
    linear-gradient(145deg, #0c1020, #171c35);
  border-color: rgba(255, 255, 255, 0.12);
}

.visual-panel.dark h3,
.visual-panel.dark p {
  color: #fff;
}

.visual-panel.dark p {
  opacity: 0.72;
}

.panel-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.visual-panel.dark .panel-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.metric-large {
  font-size: 2.55rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
  margin-bottom: 8px;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 88px;
  margin-top: 22px;
}

.mini-chart span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.95), rgba(52, 104, 255, 0.75));
  min-height: 18px;
  box-shadow: 0 10px 28px rgba(109, 63, 242, 0.16);
}

.orbit-list,
.activity-list {
  display: grid;
  gap: 12px;
}

.orbit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 18px;
  background: rgba(248, 247, 252, 0.82);
}

.orbit-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 12px 26px rgba(109, 63, 242, 0.18);
}

.orbit-card strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.orbit-card span {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 680;
}

.activity-list {
  margin-top: 18px;
}

.activity-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.activity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(31, 182, 170, 0.12);
}

.activity-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.activity-item small {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 850;
}

/* ------------------------------
   Cards
------------------------------ */
.card {
  position: relative;
  border: 1px solid rgba(12, 16, 32, 0.10);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.80)),
    radial-gradient(circle at 90% 0%, rgba(109, 63, 242, 0.10), transparent 34%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 63, 242, 0.22);
  box-shadow: var(--shadow-md);
}

.product-card {
  padding: 28px;
}

.product-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 63, 242, 0.18), transparent 70%);
  pointer-events: none;
}

.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.product-icon,
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 16px 34px rgba(109, 63, 242, 0.20);
  font-size: 1.14rem;
}

.product-badge {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: rgba(109, 63, 242, 0.08);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-category {
  margin: 8px 0 12px;
  color: var(--purple-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.capability-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #42495c;
  font-size: 0.86rem;
  font-weight: 680;
}

.capability-list i {
  color: var(--green);
  margin-top: 4px;
  font-size: 0.76rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple-dark);
  font-weight: 920;
  font-size: 0.92rem;
}

.card-link i {
  transition: transform var(--ease);
}

.card:hover .card-link i {
  transform: translateX(4px);
}

.card-link-disabled,
.card-link-soon {
  color: var(--purple-dark);
}

.card-link-disabled {
  color: var(--muted-2);
  pointer-events: none;
  cursor: default;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: top var(--ease);
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(109, 63, 242, 0.35);
  outline-offset: 2px;
}

.product-suite-grid .product-card-compact {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-suite-grid .card-link {
  margin-top: auto;
}

.section-header h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.35rem);
  line-height: 1.08;
}

.product-suite-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card-compact h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.product-description {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-ideal {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(109, 63, 242, 0.12);
  background: rgba(109, 63, 242, 0.04);
}

.product-badge-live {
  color: #166534;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.product-ideal-label {
  color: var(--purple-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-ideal-users {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 650;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

/* Five cards laid out as three then two: a 6-track grid lets row one use three
   spans of 2 and row two two spans of 3. Scoped above the 1080px breakpoint so
   it never overlaps the 2-column and 1-column rules further down. */
@media (min-width: 1081px) {
  .why-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .why-grid .feature-card {
    grid-column: span 2;
  }

  .why-grid .feature-card:nth-child(4),
  .why-grid .feature-card:nth-child(5) {
    grid-column: span 3;
  }
}

.built-for-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.built-for-card {
  min-height: 168px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform var(--ease), background var(--ease), border var(--ease);
}

.built-for-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

.built-for-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  margin-bottom: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.built-for-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  color: #fff;
}

.built-for-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-simple {
  padding: 36px 0;
}

.footer-simple-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-simple-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-simple-nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color var(--ease);
}

.footer-simple-nav a:hover {
  color: #fff;
}

.footer-simple-copy {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
}

/* ------------------------------
   Signal Strip / Stats
------------------------------ */
.signal-strip {
  margin-top: 34px;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(20, 15, 48, 0.05);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(248, 247, 252, 0.72);
  color: #4f5669;
  font-weight: 830;
  font-size: 0.88rem;
}

.signal-item i {
  color: var(--purple);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat-card {
  padding: 20px;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.8rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

/* ------------------------------
   Platform / Feature Blocks
------------------------------ */
.platform-layout,
.split-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 44px;
  align-items: center;
}

.image-card {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.9) contrast(1.04);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(12, 16, 32, 0.88)),
    radial-gradient(circle at 30% 20%, rgba(109, 63, 242, 0.18), transparent 36%);
}

.image-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.image-overlay h3 {
  color: #fff;
  margin-bottom: 8px;
}

.image-overlay p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 20px;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(20, 15, 48, 0.05);
  transition: transform var(--ease), border var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 63, 242, 0.22);
}

.feature-card .feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 15px;
  color: var(--purple-dark);
  background: rgba(109, 63, 242, 0.09);
  box-shadow: none;
  font-size: 0.95rem;
}

.feature-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.feature-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.feature-card.dark-card {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.11);
}

.feature-card.dark-card strong {
  color: #fff;
}

.feature-card.dark-card span {
  color: rgba(255, 255, 255, 0.64);
}

.feature-card.dark-card .feature-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ------------------------------
   Product Page Hero
------------------------------ */
.product-hero {
  padding: 168px 0 92px;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -260px;
  top: -230px;
  background: radial-gradient(circle, rgba(109, 63, 242, 0.18), transparent 62%);
}

.product-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.product-hero-copy h1 {
  font-size: clamp(2.8rem, 5.3vw, 5.7rem);
}

.product-hero-copy .lead {
  max-width: 740px;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.product-hero-card {
  border: 1px solid rgba(109, 63, 242, 0.15);
  border-radius: var(--radius-xl);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.66)),
    radial-gradient(circle at 50% 0%, rgba(109, 63, 242, 0.18), transparent 45%);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.mock-window {
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 28px;
  background: rgba(255,255,255,0.84);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid rgba(12,16,32,0.08);
}

.mock-title {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.mock-body {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.mock-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(12,16,32,0.07);
  border-radius: 18px;
  background: rgba(248,247,252,0.82);
}

.mock-row-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.mock-row strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.mock-row span {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.mock-chip {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: rgba(109,63,242,0.09);
  font-size: 0.72rem;
  font-weight: 900;
}

/* ------------------------------
   Process / Architecture
------------------------------ */
.process {
  position: relative;
  display: grid;
  gap: 16px;
  counter-reset: process;
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
}

.process-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  font-weight: 950;
}

.process-card h3 {
  margin-bottom: 6px;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.flow-card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(12,16,32,0.08);
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
}

.flow-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  margin-bottom: 14px;
  color: var(--purple-dark);
  background: rgba(109,63,242,0.09);
}

.flow-card strong {
  display: block;
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}

.flow-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

/* ------------------------------
   Industries
------------------------------ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.industry-card {
  min-height: 164px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform var(--ease), background var(--ease), border var(--ease);
}

.industry-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

.industry-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.industry-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.industry-card p {
  font-size: 0.86rem;
}

/* ------------------------------
   Roadmap
------------------------------ */
.roadmap-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.roadmap-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(12, 16, 32, 0.10);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.roadmap-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--purple), var(--blue));
}

.roadmap-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  margin-bottom: 18px;
  color: var(--purple-dark);
  background: rgba(109, 63, 242, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roadmap-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(12, 16, 32, 0.07);
  border-radius: 18px;
  background: rgba(248, 247, 252, 0.82);
  color: #42495c;
  font-weight: 760;
  font-size: 0.92rem;
}

.roadmap-list i {
  color: var(--purple);
}

/* ------------------------------
   CTA + Contact
------------------------------ */
.cta-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.cta-box .lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.72);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-box .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
}

.cta-box .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.76)),
    radial-gradient(circle at 10% 0%, rgba(109, 63, 242, 0.10), transparent 35%);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}

.contact-info {
  padding: 20px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #444b5f;
  font-weight: 780;
}

.contact-list i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--purple-dark);
  background: rgba(109, 63, 242, 0.09);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(12, 16, 32, 0.08);
  border-radius: 28px;
  background: rgba(248, 247, 252, 0.78);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #3f4658;
  font-size: 0.82rem;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(12, 16, 32, 0.11);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  outline: none;
  transition: border var(--ease), box-shadow var(--ease), background var(--ease);
}

.field-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(109, 63, 242, 0.52);
  box-shadow: 0 0 0 4px rgba(109, 63, 242, 0.10);
  background: #fff;
}

.form-note {
  color: var(--muted-2);
  font-size: 0.8rem;
}

.form-note.is-success {
  color: #137a3a;
}

.form-note.is-error {
  color: #b42318;
}

.form-note.is-loading {
  color: #41209c;
}

.contact-form button[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
}

/* ------------------------------
   Legal Pages
------------------------------ */
.legal-page {
  padding: 160px 0 90px;
}

.legal-content {
  max-width: 900px;
  padding: 34px;
  border: 1px solid rgba(12,16,32,0.09);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
}

.legal-content h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin-bottom: 18px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

/* ------------------------------
   Footer
------------------------------ */
.footer {
  padding: 64px 0 28px;
  color: #fff;
  background: #070a14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer .logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer p {
  max-width: 370px;
  color: rgba(255,255,255,0.58);
  font-size: 0.92rem;
}

.footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  transition: color var(--ease);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  color: rgba(255,255,255,0.50);
  font-size: 0.86rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.07);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.social-links a:hover {
  color: #fff;
  background: rgba(109, 63, 242, 0.55);
  transform: translateY(-2px);
}

/* ------------------------------
   Reveal Animation
------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-wrap {
    border-radius: 28px;
  }

  .nav-links.mobile-open {
    display: grid;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    padding: 14px;
    border: 1px solid rgba(12, 16, 32, 0.10);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.mobile-open a {
    padding: 13px 14px;
  }

  .visual-grid,
  .platform-layout,
  .split-layout,
  .product-hero-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .signal-strip,
  .industry-grid,
  .built-for-grid,
  .why-grid,
  .product-suite-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .architecture-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero-card {
    max-width: 720px;
  }

  .image-card {
    min-height: 420px;
  }
}

@media (max-width: 840px) {
  .section {
    padding: 84px 0;
  }

  .hero,
  .product-hero {
    padding-top: 142px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .feature-grid,
  .roadmap-layout,
  .footer-grid,
  .product-suite-grid,
  .why-grid,
  .built-for-grid {
    grid-template-columns: 1fr;
  }

  .footer-simple-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .visual-topbar {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 22px;
  }

  .visual-search {
    max-width: 100%;
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-box {
    padding: 34px 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    inset: 12px 0 auto 0;
  }

  .nav-wrap {
    width: min(100% - 24px, var(--container));
    padding: 10px;
  }

  .logo span:last-child {
    font-size: 0.96rem;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-copy,
  .product-hero-copy {
    text-align: left;
  }

  .hero-copy .eyebrow {
    margin-left: 0;
  }

  .hero-copy .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions,
  .product-hero-actions,
  .hero-pills,
  .cta-actions {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .product-hero-actions .btn {
    width: auto;
  }

  .signal-strip,
  .industry-grid,
  .built-for-grid,
  .why-grid,
  .product-suite-grid,
  .stat-grid,
  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .ecosystem-visual,
  .product-hero-card {
    padding: 14px;
    border-radius: 30px;
  }

  .product-card,
  .roadmap-card,
  .legal-content {
    padding: 22px;
  }

  .contact-panel {
    padding: 16px;
  }

  .mock-row {
    grid-template-columns: auto 1fr;
  }

  .mock-chip {
    grid-column: 1 / -1;
    width: fit-content;
  }
}
