:root {
  --bg: #05070a;
  --bg-2: #080d12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #f6f8fb;
  --text-soft: rgba(246, 248, 251, 0.72);
  --muted: rgba(246, 248, 251, 0.54);
  --ink: #10151b;
  --paper: #f5f7fb;
  --paper-2: #ffffff;
  --paper-line: rgba(16, 21, 27, 0.11);
  --paper-muted: #637083;
  --cyan: #2dd4bf;
  --blue: #38bdf8;
  --green: #7ee787;
  --amber: #f9c74f;
  --rose: #ff6b9a;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 20px 60px rgba(10, 20, 30, 0.12);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: 180ms ease;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

section {
  scroll-margin-top: 88px;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 3000;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-2);
  font-weight: 800;
  text-decoration: none;
  transition: top var(--ease);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
}

.site-nav {
  width: min(1180px, calc(100% - 32px));
  height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 12px auto 0;
  padding: 0 14px 0 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--ease), border-color var(--ease), height var(--ease);
}

.site-nav.scrolled {
  height: 64px;
  background: rgba(5, 7, 10, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  text-decoration: none;
}

.brand-wordmark {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, #50ff2d 0%, #30df66 32%, #1cc9c8 64%, #1698f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark span {
  margin-left: 0.28em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: color var(--ease), background var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  min-width: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease);
}

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

.btn-primary {
  color: #031014;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 16px 38px rgba(56, 189, 248, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 20px 46px rgba(126, 231, 135, 0.22);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover,
.btn-glass:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.btn-glass {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-large {
  min-height: 52px;
  padding: 0 20px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  opacity: 0;
}

.mobile-menu {
  width: min(1180px, calc(100% - 32px));
  display: none;
  gap: 4px;
  margin: 8px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--text-soft);
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.section-dark {
  position: relative;
  color: var(--text);
  background:
    linear-gradient(135deg, #05070a 0%, #071016 38%, #0a0d12 66%, #05070a 100%);
  overflow: hidden;
}

.section-panel {
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

main > .page-wrapper > section:not(:first-child) {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.section-shell,
.hero-shell,
.footer-shell,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-shell {
  position: relative;
  z-index: 1;
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 820px;
  color: inherit;
  font-size: 3.35rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-heading p:not(.section-kicker),
.contact-copy p {
  color: var(--paper-muted);
  font-size: 1rem;
}

.section-dark .section-heading p:not(.section-kicker),
.section-dark .contact-copy p {
  color: var(--text-soft);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 108px;
  isolation: isolate;
}

.hero-canvas,
.hero-gradient,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-canvas {
  z-index: -4;
}

.hero-gradient {
  z-index: -3;
  opacity: 0.92;
  background:
    conic-gradient(from 160deg at 74% 26%, rgba(45, 212, 191, 0.34), rgba(56, 189, 248, 0.22), rgba(249, 199, 79, 0.16), rgba(255, 107, 154, 0.14), rgba(45, 212, 191, 0.34)),
    linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.58) 52%, rgba(5, 7, 10, 0.92));
  filter: blur(18px);
  transform: scale(1.06);
}

.hero-grid {
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.082) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.082) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.85));
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 52px;
  align-items: center;
  padding: 56px 0 96px;
}

.hero-content h1 {
  max-width: 880px;
  margin-top: 18px;
  font-size: 4.35rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 680px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.hero-metrics div {
  min-height: 96px;
  padding: 18px;
  background: rgba(5, 7, 10, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-metrics dt {
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.dashboard-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(7, 12, 18, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.dashboard-main {
  position: absolute;
  right: 0;
  top: 58px;
  width: min(450px, 100%);
  padding: 18px;
}

.dashboard-topline,
.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.dashboard-topline span,
.preview-header span,
.float-card span,
.result-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-topline strong,
.preview-header strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #071014;
  background: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.dashboard-kpis div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-kpis span,
.pipeline-list span,
.preview-table span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.dashboard-kpis strong {
  font-size: 1.32rem;
  line-height: 1;
}

.chart-panel,
.line-chart {
  height: 166px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 38px);
}

.chart-panel span,
.line-chart span {
  flex: 1;
  min-width: 12px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.chart-panel span:nth-child(2n),
.line-chart span:nth-child(2n) {
  background: linear-gradient(180deg, var(--amber), var(--cyan));
}

.pipeline-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.pipeline-list div,
.preview-table div {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.pipeline-list strong,
.preview-table strong {
  font-size: 0.82rem;
}

.float-card {
  position: absolute;
  width: 190px;
  display: grid;
  gap: 6px;
  padding: 16px;
  animation: floatCard 7s ease-in-out infinite;
}

.float-card strong {
  font-size: 2rem;
  line-height: 1;
}

.float-card small {
  color: var(--muted);
  font-weight: 800;
}

.float-card-one {
  left: -20px;
  top: 250px;
}

.float-card-two {
  right: 42px;
  bottom: 42px;
  animation-delay: -3s;
}

.marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.marquee-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: marqueeMove 18s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 58px;
  padding-right: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.founder-card,
.timeline-step {
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.belief-index {
  color: var(--paper-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.founder-card h3,
.timeline-step h3 {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.18;
}

.founder-card p,
.timeline-step p {
  color: var(--paper-muted);
  font-size: 0.95rem;
}

.founder-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.founder-card {
  display: block;
  padding: 22px;
}

.founder-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.founder-role {
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  color: #0f172a;
  background: #f8fbff;
  text-decoration: none;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

.icon-link:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.28);
  background: #eefafa;
}

.icon-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.tag-row span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(16, 21, 27, 0.1);
  border-radius: 999px;
  color: #243244;
  background: #f2f7fb;
  font-size: 0.74rem;
  font-weight: 850;
}

.services {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.services::before,
.clients::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.44;
  background:
    linear-gradient(115deg, transparent 0%, rgba(45, 212, 191, 0.14) 22%, transparent 46%),
    linear-gradient(245deg, transparent 8%, rgba(249, 199, 79, 0.12) 32%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  animation: gradientDrift 16s ease-in-out infinite alternate;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--amber));
  opacity: 0;
  transition: opacity var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(126, 231, 135, 0.36);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(45, 212, 191, 0.14);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #061014;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-size: 0.76rem;
  font-weight: 950;
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.15;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 41px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 21, 27, 0.24), transparent);
}

.timeline-step {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.timeline-step span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #061014;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-size: 0.72rem;
  font-weight: 950;
}

.clients {
  border-top: 1px solid var(--line-soft);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.logo-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
  text-align: center;
}

.client-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 14px;
}

.results-panel,
.preview-panel,
.testimonial-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.results-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px;
}

.result-stat {
  min-height: 142px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.result-stat strong {
  color: var(--text);
  font-size: 2.7rem;
  line-height: 1;
}

.result-stat p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.preview-panel {
  padding: 18px;
}

.preview-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.72fr);
  gap: 14px;
  margin-top: 14px;
}

.line-chart {
  height: 320px;
  margin-top: 0;
}

.preview-table {
  display: grid;
  gap: 10px;
  align-content: start;
}

.preview-table div {
  min-height: 76px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.testimonial-card {
  display: grid;
  gap: 20px;
  padding: 22px;
}

.testimonial-card blockquote {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.testimonial-card figcaption {
  display: grid;
  gap: 4px;
}

.testimonial-card strong {
  color: var(--text);
  font-size: 0.98rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}


.contact {
  border-top: 1px solid var(--line-soft);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 46px;
  align-items: start;
}

.contact-page-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
}

.contact-copy h2 {
  margin-top: 14px;
}

.contact-copy p {
  margin-top: 20px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.contact-methods a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 850;
  text-decoration: none;
}

.contact-support-box {
  padding: 24px;
  border: 1px solid rgba(10, 20, 30, 0.05);
  border-radius: var(--radius);
  background: rgba(10, 20, 30, 0.03);
}

.contact-form-card {
  padding: 40px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.form-help {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  padding: 0 13px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

textarea {
  min-height: 148px;
  padding-top: 13px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(56, 189, 248, 0.72);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

::placeholder {
  color: rgba(246, 248, 251, 0.38);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

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

/* ── About Page Components ── */

/* About Pillars */
.about-pillars {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about-pillars .pillar-item {
  flex: 1 1 220px;
}

/* About Cards with Icons */
.about-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(10, 20, 30, 0.14);
}

.about-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(126, 231, 135, 0.12), rgba(56, 189, 248, 0.12));
  color: var(--green);
}

.about-card-icon svg {
  width: 20px;
  height: 20px;
}

.about-card h3 {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.about-card p {
  color: var(--paper-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Belief Marquee */
.belief-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 22px;
  padding: 14px 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.belief-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: beliefScroll 22s linear infinite;
}

.belief-marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.belief-marquee-item .belief-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--green);
}

.belief-marquee-item p {
  color: var(--paper-muted);
  font-size: 0.88rem;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}

.belief-marquee-item strong {
  color: var(--ink);
}

.belief-dot {
  color: var(--green);
  font-size: 0.5rem;
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes beliefScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Vision Grid */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vision-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  transition: transform var(--ease), box-shadow var(--ease);
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.vision-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #031014;
  font-size: 0.75rem;
  font-weight: 900;
}

.vision-card h3 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 900;
}

.vision-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Founder Cards */
.founder-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.founder-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.founder-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #031014;
  font-size: 0.95rem;
  font-weight: 900;
  flex-shrink: 0;
}

.founder-role {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.founder-card h3 {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 900;
}

.founder-card > p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-tags span {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.04);
}

/* ── Services Page Components ── */

/* Service Card Grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.svc-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(10, 20, 30, 0.12);
}

.svc-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(126, 231, 135, 0.1), rgba(56, 189, 248, 0.1));
  color: var(--green);
}

.svc-card-icon svg {
  width: 18px;
  height: 18px;
}

.svc-card h3 {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.svc-card p {
  color: var(--paper-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Growth Stack Grid */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stack-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform var(--ease), box-shadow var(--ease);
}

.stack-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.stack-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(126, 231, 135, 0.14), rgba(56, 189, 248, 0.14));
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  width: fit-content;
}

.stack-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Package Table */
.pkg-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.pkg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pkg-table thead {
  background: rgba(10, 20, 30, 0.04);
}

.pkg-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-bottom: 2px solid var(--paper-line);
}

.pkg-table td {
  padding: 16px 18px;
  color: var(--paper-muted);
  border-bottom: 1px solid var(--paper-line);
  vertical-align: top;
}

.pkg-table td strong {
  color: var(--ink);
}

.pkg-table tbody tr:last-child td {
  border-bottom: none;
}

.pkg-highlight {
  background: linear-gradient(135deg, rgba(126, 231, 135, 0.04), rgba(56, 189, 248, 0.04));
}

.priority-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.priority-badge.medium {
  background: rgba(250, 189, 0, 0.12);
  color: #b8860b;
}

.priority-badge.high {
  background: rgba(126, 231, 135, 0.14);
  color: #1a8a3a;
}

.priority-badge.critical {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

/* FAQ Accordion */
.faq-list {
  display: grid;
  gap: 8px;
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transition: box-shadow var(--ease);
}

.faq-item[open] {
  box-shadow: 0 8px 32px rgba(10, 20, 30, 0.08);
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  transition: transform var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 20px 16px;
  color: var(--paper-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Careers Page Components ── */

/* Career Meta Strip */
.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.career-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.career-meta-item svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  opacity: 0.9;
}

.career-meta-item div {
  display: flex;
  flex-direction: column;
}

.career-meta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  margin-bottom: 2px;
}

.career-meta-item strong {
  font-size: 0.95rem;
  color: var(--text);
}

/* Roles Grid & Cards */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.role-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
  text-align: left;
}

.role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(10, 20, 30, 0.12);
}

.role-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.role-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(126, 231, 135, 0.1), rgba(56, 189, 248, 0.1));
  color: var(--green);
  flex-shrink: 0;
}

.role-card-icon svg {
  width: 22px;
  height: 22px;
}

.role-card h3 {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.role-tags {
  display: flex;
  gap: 8px;
}

.role-tags span {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(10, 20, 30, 0.05);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.role-card > p {
  color: var(--paper-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.role-tasks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.role-tasks li {
  position: relative;
  padding-left: 20px;
  color: var(--paper-muted);
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.role-tasks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.role-card .btn {
  width: 100%;
}

/* ── Application Modal ── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 10, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink);
}

.modal-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--paper-line);
}

.modal-header h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}

.modal-header h2 span {
  color: var(--green);
}

.modal-header p {
  color: var(--paper-muted);
  font-size: 0.95rem;
}

.modal-body {
  padding: 32px;
}

.selected-role-display {
  font-size: 0.95rem;
  color: var(--paper-muted);
  margin-bottom: 24px;
}

.selected-role-display strong {
  color: var(--blue);
  font-weight: 800;
}

.apply-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.apply-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--paper-muted);
}

.apply-form .honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.apply-form textarea {
  min-height: 140px;
  padding-top: 16px;
  resize: vertical;
}

.apply-form select {
  appearance: auto;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: #a0aebc;
}

.apply-form .form-actions {
  margin-top: 32px;
}

/* ── Social Icons ── */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: color 280ms ease, border-color 280ms ease, background 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  color: var(--text);
  border-color: rgba(126, 231, 135, 0.5);
  background: rgba(126, 231, 135, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(126, 231, 135, 0.18);
}

.social-icon[aria-label="Instagram"]:hover {
  border-color: rgba(225, 48, 108, 0.5);
  background: rgba(225, 48, 108, 0.12);
  box-shadow: 0 4px 18px rgba(225, 48, 108, 0.18);
}

.social-icon[aria-label="LinkedIn"]:hover {
  border-color: rgba(10, 102, 194, 0.5);
  background: rgba(10, 102, 194, 0.12);
  box-shadow: 0 4px 18px rgba(10, 102, 194, 0.18);
}

.social-icon[aria-label="WhatsApp"]:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.12);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.18);
}

.social-icon[aria-label="Email"]:hover {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.12);
  box-shadow: 0 4px 18px rgba(56, 189, 248, 0.18);
}

.site-footer {
  color: var(--text-soft);
  background: #030507;
  border-top: 1px solid var(--line-soft);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(140px, 0.5fr) minmax(180px, 0.6fr);
  gap: 42px;
  padding: 58px 0 34px;
}

.footer-brand p {
  max-width: 440px;
  margin-top: 18px;
  color: var(--muted);
}

.site-footer h2 {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  list-style: none;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 750;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line-soft);
  color: rgba(246, 248, 251, 0.44);
  font-size: 0.84rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 4000;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(5, 7, 10, 0.94);
  box-shadow: var(--shadow);
  line-height: 1.45;
  white-space: pre-line;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

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

/* ── Text Accent ── */
.text-accent {
  color: transparent;
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: inherit;
}

.section-heading em,
h2 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
}

.section-panel .section-heading em,
.section-panel h2 em {
  background: linear-gradient(90deg, #0f766e, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Pillar List (Hero) ── */
.pillar-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.pillar-item {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  line-height: 1.4;
}

.pillar-item strong {
  flex: 0 0 auto;
  color: var(--text);
  white-space: nowrap;
}

.pillar-item span {
  color: var(--text-soft);
}

/* ── Stats Bar ── */
.stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.stats-bar-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.stat-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 28px 14px;
  text-align: center;
}

.stat-item strong {
  color: var(--text);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

/* ── Home Services Grid ── */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-service-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
}

.home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(10, 20, 30, 0.14);
}

.home-service-card h3 {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.15;
}

.home-service-card > p {
  color: var(--paper-muted);
  font-size: 0.95rem;
}

.home-service-card ul {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding: 0;
  list-style: none;
}

.home-service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--paper-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.home-service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ── Timeline Dark Variant ── */
.timeline-step-dark {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.timeline-step-dark h3 {
  color: var(--text);
}

.timeline-step-dark p {
  color: var(--text-soft);
}

.process.section-dark .timeline::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

/* ── Page Transition Overlay ── */
/* ── Page Wrapper Enter Animation ── */
/* ── Page Hero (sub-pages) ── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  padding-top: calc(var(--nav-height) + 48px);
  isolation: isolate;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 58px 0 72px;
}

.page-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: 3.8rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
}

.page-hero-subtitle {
  max-width: 620px;
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 1.1rem;
}

/* ── Page CTA Block ── */
.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding: 28px 32px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.section-dark .page-cta {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page-cta p {
  font-size: 1.12rem;
  font-weight: 800;
  color: inherit;
}

@keyframes gradientDrift {
  0% {
    transform: translate3d(-1%, 0, 0) scale(1.06);
  }
  100% {
    transform: translate3d(1.5%, -1%, 0) scale(1.08);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes marqueeMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-33.333%, 0, 0);
  }
}

@media (max-width: 1120px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.8rem;
  }

  .hero-shell,
  .section-heading,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 490px;
  }

  .dashboard-main {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

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

  .client-grid,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 66px;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 24px));
    margin-top: 8px;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
    position: relative;
    z-index: 1200;
  }

  .mobile-menu {
    max-height: calc(100svh - 90px);
    overflow-y: auto;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-shell {
    padding-bottom: 88px;
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }

  .page-hero {
    min-height: 44vh;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .hero-metrics,
  .logo-strip,
  .preview-body,
  .testimonial-grid,
  .roles-grid,
  .timeline,
  .home-services-grid,
  .svc-grid,
  .stack-grid,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .pkg-table {
    min-width: 680px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .founder-layout {
    grid-template-columns: 1fr;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item strong {
    font-size: 1.8rem;
  }

  .pillar-item {
    flex-direction: column;
    gap: 4px;
  }

  .timeline::before {
    display: none;
  }

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

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .contact-page-shell {
    gap: 34px;
  }

  .contact-form-card {
    padding: 28px;
  }

  .modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-nav,
  .mobile-menu {
    width: calc(100% - 20px);
  }

  .site-nav {
    height: 62px;
    padding: 0 10px 0 12px;
  }

  .brand-wordmark {
    font-size: 1.55rem;
  }

  .btn {
    min-height: 48px;
    padding: 11px 14px;
    line-height: 1.2;
    white-space: normal;
  }

  .section-shell,
  .hero-shell,
  .footer-shell,
  .footer-bottom {
    width: min(1180px, calc(100% - 24px));
  }

  .section-shell {
    padding: 64px 0;
  }

  .page-hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 34px);
  }

  .page-hero-inner {
    padding: 34px 0 48px;
  }

  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .page-cta {
    flex-direction: column;
    text-align: center;
  }

  .page-cta .btn {
    width: 100%;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: 2.05rem;
    overflow-wrap: anywhere;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .eyebrow,
  .section-kicker {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .eyebrow::before,
  .section-kicker::before {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 1rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .contact-page-shell {
    gap: 28px;
  }

  .contact-support-box .btn {
    width: 100%;
  }

  .contact-support-box,
  .contact-form-card {
    padding: 22px;
  }

  .apply-form input,
  .apply-form select,
  .apply-form textarea {
    min-height: 48px;
    padding: 11px 13px;
    font-size: 0.92rem;
  }

  .apply-form textarea {
    min-height: 180px;
  }

  .hero-visual {
    display: grid;
    gap: 10px;
    min-height: auto;
  }

  .dashboard-main {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
  }

  .dashboard-kpis,
  .about-grid,
  .services-grid,
  .apply-form .form-row,
  .form-row,
  .footer-shell,
  .role-card,
  .stats-bar-inner {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: auto;
  }

  .float-card {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 10px;
  }

  .float-card-one {
    margin-top: 0;
  }

  .role-card .btn {
    width: 100%;
  }

  .career-meta {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding-top: 22px;
  }

  .career-meta-item {
    align-items: flex-start;
    min-width: 0;
  }

  .career-meta-item strong,
  .role-card h3,
  .role-card p,
  .role-tasks li {
    overflow-wrap: anywhere;
  }

  .role-card-header,
  .role-tags {
    flex-wrap: wrap;
  }

  .modal-overlay {
    padding: 12px;
  }

  .modal-content {
    max-height: calc(100svh - 24px);
  }

  .modal-header,
  .modal-body {
    padding: 24px;
  }

  .modal-header h2 {
    padding-right: 42px;
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .modal-close {
    width: 40px;
    height: 40px;
  }

  .toast {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-nav,
  .mobile-menu {
    width: calc(100% - 16px);
  }

  .brand-wordmark {
    font-size: 1.42rem;
  }

  .hero-content h1 {
    font-size: 1.95rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 1.82rem;
  }

  .page-hero h1 {
    font-size: 1.78rem;
  }

  .contact-support-box,
  .contact-form-card {
    padding: 16px;
  }

  .modal-header,
  .modal-body {
    padding: 20px;
  }

  .apply-form .form-row {
    gap: 14px;
    margin-bottom: 14px;
  }

  .dashboard-main,
  .service-card,
  .belief-card,
  .timeline-step,
  .role-card,
  .contact-form {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
