:root {
  --ink: #04101f;
  --fog: #d9e6f6;
  --mist: #b8cce6;
  --paper: #eef4fb;
  --steel: #3f5570;
  --signal: #1d5fd6;
  --signal-deep: #1448a8;
  --blueprint: #062f6b;
  --line: rgba(4, 16, 31, 0.14);
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --max: 1400px;
}

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  background: var(--fog);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: color-mix(in oklab, var(--signal) 28%, white);
  color: var(--ink);
}

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--paper);
  overflow: visible;
  white-space: normal;
}

.font-display {
  font-family: var(--font-display);
}

.blueprint-grid {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .wrap {
    width: min(100% - 4rem, var(--max));
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 14px 32px rgba(10, 77, 179, 0.38);
}

.btn-primary:hover {
  background: var(--signal-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(11, 18, 32, 0.2);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(11, 18, 32, 0.03);
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}

.btn-ink:hover {
  background: rgba(11, 18, 32, 0.9);
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
}

/* Nav — light modern / airy */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  color: #f3f7fc;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    color 0.3s ease;
}

.nav.is-scrolled,
.nav.is-open {
  color: var(--ink);
  background: rgba(247, 250, 253, 0.9);
  border-bottom-color: rgba(6, 47, 107, 0.1);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 12px 40px rgba(6, 47, 107, 0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: inherit;
  white-space: nowrap;
}

.logo i {
  width: 1.5px;
  height: 1.05em;
  background: linear-gradient(180deg, #8fc0ff, #4da3ff);
}

.logo span {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(243, 247, 252, 0.72);
  transition: color 0.3s ease;
}

.nav.is-scrolled .logo span,
.nav.is-open .logo span {
  color: var(--steel);
}

.nav.is-scrolled .logo i,
.nav.is-open .logo i {
  background: linear-gradient(180deg, #4da3ff, #1d5fd6);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.35rem 1.5rem;
}

.nav-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(243, 247, 252, 0.78);
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a b {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(143, 192, 255, 0.85);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav.is-scrolled .nav-links a,
.nav.is-open .nav-links a {
  color: var(--steel);
}

.nav.is-scrolled .nav-links a b,
.nav.is-open .nav-links a b {
  color: rgba(29, 95, 214, 0.55);
}

.nav.is-scrolled .nav-links a:hover,
.nav.is-scrolled .nav-links a:focus-visible,
.nav.is-open .nav-links a:hover,
.nav.is-open .nav-links a:focus-visible {
  color: var(--ink);
}

.nav.is-scrolled .nav-links a:hover b,
.nav.is-scrolled .nav-links a:focus-visible b,
.nav.is-open .nav-links a:hover b,
.nav.is-open .nav-links a:focus-visible b {
  color: var(--signal);
}

.nav-links .nav-cta {
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.nav.is-scrolled .nav-links .nav-cta,
.nav.is-open .nav-links .nav-cta {
  border-color: rgba(4, 16, 31, 0.14);
  background: #fff;
  color: var(--ink);
}

.nav-links .nav-cta em {
  font-style: normal;
  transition: transform 0.25s ease;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}

.nav-links .nav-cta:hover em,
.nav-links .nav-cta:focus-visible em {
  transform: translateX(3px);
}

.nav-toggle {
  position: relative;
  z-index: 70;
  display: inline-grid;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav.is-scrolled .nav-toggle,
.nav.is-open .nav-toggle {
  border-color: rgba(4, 16, 31, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s ease;
}

.nav.is-scrolled .nav-toggle span,
.nav.is-open .nav-toggle span {
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Outside .nav so backdrop-filter on header cannot trap position:fixed */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-content: start;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(29, 95, 214, 0.18), transparent 50%),
    #f4f8ff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-inner {
  display: grid;
  gap: 0.35rem;
  padding-block: 6.5rem 3rem;
  min-height: 100%;
  box-sizing: border-box;
}

.nav-mobile-label {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}

.nav-mobile a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(6, 47, 107, 0.12);
  color: var(--ink);
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    color 0.2s ease;
}

.nav-mobile.is-open a {
  transform: none;
  opacity: 1;
}

.nav-mobile.is-open a:nth-child(2) { transition-delay: 0.05s; }
.nav-mobile.is-open a:nth-child(3) { transition-delay: 0.1s; }
.nav-mobile.is-open a:nth-child(4) { transition-delay: 0.15s; }
.nav-mobile.is-open a:nth-child(5) { transition-delay: 0.2s; }
.nav-mobile.is-open a:nth-child(6) { transition-delay: 0.25s; }

.nav-mobile a b {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--signal);
}

.nav-mobile a span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.nav-mobile a:hover,
.nav-mobile a:focus-visible {
  color: var(--signal);
}

body.nav-lock {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 900px) {
  .nav-bar {
    min-height: 5.5rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav-mobile,
  .nav-mobile a,
  .nav-toggle span,
  .nav-links .nav-cta,
  .nav-links .nav-cta em {
    transition: none;
  }

  .nav-mobile a {
    transform: none;
    opacity: 1;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: #04101f;
  color: #f3f7fc;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: translate3d(0, 0, 0);
  animation: hero-video-drift 22s ease-in-out infinite alternate;
}

@keyframes hero-video-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-2.5%, 0, 0);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.92) 0%, rgba(4, 16, 31, 0.72) 38%, rgba(4, 16, 31, 0.28) 62%, rgba(4, 16, 31, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 16, 31, 0.45) 0%, transparent 28%, transparent 62%, rgba(4, 16, 31, 0.55) 100%),
    radial-gradient(ellipse 55% 50% at 75% 45%, rgba(29, 95, 214, 0.22), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 100dvh;
  padding: 7rem 0 5rem;
}

.hero-copy {
  width: min(100%, 40rem);
  max-width: 100%;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-brand span {
  display: block;
  margin-top: 0.08em;
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8fc0ff;
}

.hero-title {
  margin: 1.35rem 0 0;
  max-width: 24ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgba(243, 247, 252, 0.92);
  text-wrap: balance;
}

.hero-text {
  margin: 1rem 0 0;
  max-width: 40ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(243, 247, 252, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.26s; }

@media (min-width: 900px) {
  .hero-content {
    align-items: center;
    padding: 6rem 0 5rem;
  }

  .hero-copy {
    width: min(48%, 36rem);
  }

  .hero-scrim {
    background:
      linear-gradient(95deg, rgba(4, 16, 31, 0.9) 0%, rgba(4, 16, 31, 0.62) 42%, rgba(4, 16, 31, 0.12) 68%, transparent 82%),
      linear-gradient(180deg, rgba(4, 16, 31, 0.35) 0%, transparent 30%, transparent 70%, rgba(4, 16, 31, 0.4) 100%),
      radial-gradient(ellipse 50% 55% at 78% 42%, rgba(29, 95, 214, 0.2), transparent 68%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-video {
    animation: none;
    transform: none;
  }
}

/* Process — sticky split, no card grid */
.process {
  background: #061a33;
  color: #e8f0fa;
  border-bottom: 1px solid rgba(77, 163, 255, 0.18);
  padding: 4.5rem 0;
}

.process-layout {
  display: grid;
  gap: 2.5rem;
}

.process-sticky h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.process-sticky p {
  margin: 1.15rem 0 0;
  max-width: 28ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(232, 240, 250, 0.68);
}

.process-meter {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7eb6ff;
}

.process-meter-line {
  flex: 1;
  max-width: 5rem;
  height: 1px;
  background: linear-gradient(90deg, #4da3ff, transparent);
}

.process-panels {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(232, 240, 250, 0.14);
}

.process-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(232, 240, 250, 0.14);
  cursor: default;
  overflow: hidden;
}

.process-panel-mark {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 10vw, 6.5rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(77, 163, 255, 0.18);
  transition: color 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(8px);
}

.process-panel-body {
  padding-top: 0.35rem;
  opacity: 0.45;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-panel-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.process-panel-body p {
  margin: 0.65rem 0 0;
  max-width: 36ch;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(232, 240, 250, 0.7);
}

.process-panel-body a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #9ecbff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.process-panel-body a:hover {
  color: #fff;
}

.process-panel.is-active .process-panel-mark {
  color: #4da3ff;
  transform: none;
}

.process-panel.is-active .process-panel-body {
  opacity: 1;
  transform: none;
}

.process-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #0a4db3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-panel.is-active::after {
  transform: scaleX(1);
}

@media (min-width: 960px) {
  .process {
    padding: 0;
  }

  .process-layout {
    grid-template-columns: minmax(280px, 0.9fr) 1.2fr;
    gap: 4rem;
    align-items: start;
    min-height: 100dvh;
    padding-block: 5rem;
  }

  .process-sticky {
    position: sticky;
    top: 6.5rem;
    align-self: start;
  }

  .process-panels {
    padding-bottom: 20vh;
  }

  .process-panel {
    min-height: 42vh;
    padding: 3rem 0 2.5rem;
    gap: 2rem;
    align-items: center;
  }

  .process-panel-body {
    max-width: 28rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-panel-mark,
  .process-panel-body,
  .process-panel::after {
    transition: none;
  }

  .process-panel-body {
    opacity: 1;
    transform: none;
  }

  .process-panel-mark {
    transform: none;
    color: rgba(77, 163, 255, 0.45);
  }
}

.section-lead {
  margin: 1rem 0 0;
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--steel);
}

/* Demos */
.demos {
  background: var(--fog);
  padding: 5rem 0;
}

.demos-head {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.demos-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.demos-head p {
  margin: 1rem 0 0;
  max-width: 54ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--steel);
}

.demos-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.demo-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(6, 47, 107, 0.22);
  background: var(--blueprint);
}

.demo-card-link {
  display: block;
  color: inherit;
  height: 100%;
  min-height: inherit;
}

.demo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.demo-card:hover img {
  transform: scale(1.04);
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 16, 31, 0.2) 0%, rgba(4, 16, 31, 0.82) 100%),
    linear-gradient(135deg, rgba(10, 77, 179, 0.55), transparent 60%);
}

.demo-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  height: 100%;
  padding: 1.5rem;
  color: #fff;
}

.demo-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.demo-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #90caf9;
}

.demo-index {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.demo-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.demo-body p {
  margin: 0.75rem 0 0;
  max-width: 32ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 77, 179, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.demo-cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

@media (min-width: 768px) {
  .demos {
    padding: 7rem 0;
  }

  .demos-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .demo-card,
  .demo-body {
    min-height: 400px;
  }

  .demo-body {
    padding: 1.75rem;
  }

  .demo-body h3 {
    font-size: 2.1rem;
  }
}

@media (min-width: 1100px) {
  .demos-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-card:first-child {
    grid-column: span 2;
  }

  .demo-card:first-child .demo-body,
  .demo-card:first-child {
    min-height: 440px;
  }
}

/* Demo detail page */
.page-demo {
  background: var(--fog);
}


.demo-detail {
  position: relative;
  display: grid;
  min-height: 100dvh;
  padding-top: 4.5rem;
}

.demo-detail-media {
  position: relative;
  min-height: 48vh;
  overflow: hidden;
  background:
    linear-gradient(160deg, #0a2448, #04101f 70%),
    var(--blueprint);
}

.demo-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.demo-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.demo-shot {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #071525;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8%);
  transition:
    opacity 0.45s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s;
}

.demo-shot.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 1;
}

.demo-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 48vh;
  object-fit: cover;
}

.demo-shot figcaption {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  padding: 0.4rem 0.7rem;
  background: rgba(4, 16, 31, 0.72);
  color: #e8f0fa;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

@media (min-width: 960px) {
  .demo-shot figcaption {
    top: 5.5rem;
  }
}

.demo-slider-ui {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem 1rem;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4, 16, 31, 0.45));
}

.demo-slider-nav {
  display: flex;
  gap: 0.45rem;
  pointer-events: auto;
}

.demo-slider-btn {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(4, 16, 31, 0.55);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.demo-slider-btn:hover,
.demo-slider-btn:focus-visible {
  background: rgba(29, 95, 214, 0.85);
  border-color: rgba(126, 182, 255, 0.7);
}

.demo-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  pointer-events: auto;
}

.demo-slider-dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.demo-slider-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

.demo-slider-count {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.demo-detail-panel {
  position: relative;
  z-index: 1;
  padding-block: 2.5rem 3rem;
}

.demo-detail-back {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--steel);
  transition: color 0.2s ease;
}

.demo-detail-back:hover {
  color: var(--signal);
}

.demo-detail-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

.demo-detail-title {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.demo-detail-text {
  margin: 1.1rem 0 0;
  max-width: 42ch;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--steel);
}

.demo-detail-points {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.demo-detail-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.98rem;
  color: var(--ink);
}

.demo-detail-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--signal);
}

.demo-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.demo-detail-actions .btn {
  min-width: 10.5rem;
}

.demo-craft {
  padding: 1rem 0 4rem;
  background:
    linear-gradient(180deg, transparent, rgba(10, 77, 179, 0.06) 30%, var(--fog));
  border-top: 1px solid rgba(6, 47, 107, 0.12);
}

.demo-faq {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: #eef4fb;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(29, 95, 214, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(10, 77, 179, 0.28), transparent 50%),
    #061526;
  border-top: 1px solid rgba(126, 182, 255, 0.12);
}

.demo-faq-layout {
  display: grid;
  gap: 2.5rem;
}

.demo-faq-head {
  max-width: 22rem;
}

.demo-faq-kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7eb6ff;
}

.demo-faq-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.demo-faq-head p:last-child {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(238, 244, 251, 0.62);
}

.demo-faq-list {
  display: grid;
  gap: 0.65rem;
}

.demo-faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 182, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #4da3ff, #1d5fd6);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-faq-item.is-open,
.demo-faq-item:hover {
  border-color: rgba(126, 182, 255, 0.35);
  background: rgba(29, 95, 214, 0.14);
}

.demo-faq-item.is-open {
  transform: translateY(-1px);
}

.demo-faq-item.is-open::before {
  transform: scaleY(1);
}

.demo-faq-trigger {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem 1.1rem;
  width: 100%;
  padding: 1.15rem 1.15rem;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.demo-faq-index {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(77, 163, 255, 0.35);
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-faq-item.is-open .demo-faq-index {
  color: #4da3ff;
  transform: translateY(-1px);
}

.demo-faq-q {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: rgba(238, 244, 251, 0.88);
  transition: color 0.25s ease;
}

.demo-faq-item.is-open .demo-faq-q,
.demo-faq-item:hover .demo-faq-q {
  color: #fff;
}

.demo-faq-icon {
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(126, 182, 255, 0.28);
  background: rgba(4, 16, 31, 0.35);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}

.demo-faq-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 1.5px;
  background: #9ecbff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
}

.demo-faq-icon i:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.demo-faq-item.is-open .demo-faq-icon {
  background: #1d5fd6;
  border-color: #4da3ff;
  transform: rotate(90deg);
}

.demo-faq-item.is-open .demo-faq-icon i {
  background: #fff;
}

.demo-faq-item.is-open .demo-faq-icon i:last-child {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.demo-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-faq-item.is-open .demo-faq-panel {
  grid-template-rows: 1fr;
}

.demo-faq-panel > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.15rem 0 calc(1.15rem + 0.1rem);
  max-width: 52ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(238, 244, 251, 0.68);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.35s ease, padding 0.35s ease;
}

.demo-faq-item.is-open .demo-faq-panel > p {
  padding: 0 1.15rem 1.25rem calc(1.15rem + 2.8rem);
  opacity: 1;
  transform: none;
}

.page-demo .contact {
  border-top: 1px solid rgba(6, 47, 107, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .demo-faq-item,
  .demo-faq-item::before,
  .demo-faq-index,
  .demo-faq-icon,
  .demo-faq-icon i,
  .demo-faq-panel,
  .demo-faq-panel > p {
    transition: none;
  }
}

.demo-craft-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.demo-craft-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.demo-craft-head p {
  margin: 0.55rem 0 0;
  max-width: 48ch;
  color: var(--steel);
  line-height: 1.55;
}

.demo-craft-grid {
  display: grid;
  gap: 1rem;
}

.demo-craft-item {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(6, 47, 107, 0.14);
}

.demo-craft-item:last-child {
  border-bottom: 1px solid rgba(6, 47, 107, 0.14);
}

.demo-craft-num {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--signal);
}

.demo-craft-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.demo-craft-item p {
  margin: 0.55rem 0 0;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--steel);
}

@media (min-width: 960px) {
  .demo-detail {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    min-height: 100dvh;
    padding-top: 0;
  }

  .demo-detail-media {
    position: sticky;
    top: 0;
    height: 100dvh;
    min-height: 100dvh;
  }

  .demo-slider,
  .demo-slider-track,
  .demo-shot img {
    min-height: 100%;
    height: 100%;
  }

  .demo-slider-ui {
    padding: 1.1rem 1.25rem 1.25rem;
  }

  .demo-detail-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 0 4rem;
    min-height: 100dvh;
    position: sticky;
    top: 0;
  }

  .demo-craft {
    padding: 3rem 0 4.5rem;
  }

  .demo-faq {
    padding: 5.5rem 0 6rem;
  }

  .demo-faq-layout {
    grid-template-columns: minmax(14rem, 0.75fr) 1.35fr;
    gap: 3.5rem 4rem;
    align-items: start;
  }

  .demo-faq-head {
    position: sticky;
    top: 6.5rem;
  }

  .demo-faq-trigger {
    padding: 1.35rem 1.4rem;
    gap: 1rem 1.35rem;
  }

  .demo-faq-item.is-open .demo-faq-panel > p {
    padding-left: calc(1.4rem + 3.2rem);
    padding-right: 1.4rem;
    padding-bottom: 1.45rem;
  }

  .demo-craft-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
  }

  .demo-craft-item {
    padding: 1.6rem 0;
    border-top: 1px solid rgba(6, 47, 107, 0.14);
    border-bottom: 1px solid rgba(6, 47, 107, 0.14);
  }

  .demo-craft-item:last-child {
    border-bottom: 1px solid rgba(6, 47, 107, 0.14);
  }
}

/* Adapt */
.adapt {
  background:
    radial-gradient(circle at 15% 20%, rgba(10, 77, 179, 0.45), transparent 40%),
    linear-gradient(160deg, #062f6b 0%, #04101f 55%, #0a4db3 140%);
  color: var(--paper);
  border-block: 1px solid rgba(6, 47, 107, 0.35);
  padding: 5rem 0;
}

.adapt-grid {
  display: grid;
  gap: 3rem;
}

.adapt-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}

.adapt h2 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.adapt-lead {
  margin: 1.25rem 0 0;
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(245, 247, 251, 0.7);
}

.adapt-points {
  display: grid;
}

.adapt-point {
  border-top: 1px solid rgba(245, 247, 251, 0.15);
  padding: 1.75rem 0;
}

.adapt-point h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.adapt-point p {
  margin: 0.5rem 0 0;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245, 247, 251, 0.65);
}

@media (min-width: 768px) {
  .adapt {
    padding: 7rem 0;
  }

  .adapt-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, rgba(10, 77, 179, 0.1), transparent 40%),
    var(--fog);
  border-top: 1px solid rgba(6, 47, 107, 0.18);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-copy h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.contact-copy > p {
  margin: 1.15rem 0 0;
  max-width: 40ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--steel);
}

.contact-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.contact-points li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--signal);
}

.contact-mail {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--signal-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 1.35rem;
  padding: 1.65rem;
  background: var(--paper);
  border: 1px solid rgba(6, 47, 107, 0.14);
  box-shadow: 0 18px 40px rgba(6, 47, 107, 0.1);
}

.field {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(6, 47, 107, 0.2);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23062F6B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 7px;
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7a8fa8;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(29, 95, 214, 0.16);
}

.field textarea {
  resize: vertical;
  min-height: 132px;
  grid-column: 1 / -1;
}

.contact-submit {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.15rem;
  grid-column: 1 / -1;
}

.contact-submit .btn {
  justify-self: start;
  min-height: 2.85rem;
  padding-inline: 1.35rem;
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--steel);
}

@media (min-width: 768px) {
  .contact {
    padding: 7rem 0;
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
    align-items: start;
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem 1.5rem;
    padding: 2.15rem;
  }
}

/* Inner pages — about / blog / refs */
.page-inner {
  background: var(--fog);
}

.page-hero {
  padding: 8rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(29, 95, 214, 0.14), transparent 55%),
    linear-gradient(180deg, #f7fafd 0%, var(--fog) 100%);
  border-bottom: 1px solid rgba(6, 47, 107, 0.1);
}

.page-hero-inner {
  max-width: 46rem;
}

.page-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--ink);
}

.page-lead {
  margin: 1.15rem 0 0;
  max-width: 48ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--steel);
}

.page-section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.page-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.page-section-head p {
  margin: 0.55rem 0 0;
  color: var(--steel);
  line-height: 1.55;
}

/* Shared web-hero (biz-kimiz / referanslar / blog) */
.web-hero {
  position: relative;
  min-height: min(86vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f3f7fc;
  background:
    radial-gradient(ellipse 70% 70% at 55% 45%, rgba(29, 95, 214, 0.22), transparent 62%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(20, 72, 168, 0.18), transparent 55%),
    #04101f;
}

.web-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-web {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-web canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.web-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 16, 31, 0.18) 0%, rgba(4, 16, 31, 0.05) 40%, rgba(4, 16, 31, 0.62) 100%),
    linear-gradient(105deg, rgba(4, 16, 31, 0.55) 0%, rgba(4, 16, 31, 0.18) 42%, transparent 72%);
}

.web-hero-content {
  position: relative;
  z-index: 2;
  padding: 8.5rem 0 3.5rem;
  max-width: 40rem;
}

.web-hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}

.web-hero-brand span {
  display: block;
  color: #9ecbff;
}

.web-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.web-hero-lead {
  margin: 1.15rem 0 0;
  max-width: 38ch;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(243, 247, 252, 0.75);
}

/* Referanslar — kar taneleri */
.web-hero--refs {
  background:
    radial-gradient(ellipse 55% 60% at 70% 35%, rgba(29, 95, 214, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 45% at 20% 80%, rgba(158, 203, 255, 0.1), transparent 55%),
    #04101f;
}

.web-hero--refs .web-hero-scrim {
  background:
    linear-gradient(105deg, rgba(4, 16, 31, 0.7) 0%, rgba(4, 16, 31, 0.28) 45%, rgba(4, 16, 31, 0.1) 75%, transparent 90%),
    linear-gradient(180deg, rgba(4, 16, 31, 0.2) 0%, transparent 40%, rgba(4, 16, 31, 0.58) 100%);
}

/* Blog — yıldız alanı */
.web-hero--blog {
  background:
    radial-gradient(ellipse 50% 55% at 70% 35%, rgba(29, 95, 214, 0.32), transparent 58%),
    radial-gradient(ellipse 35% 40% at 20% 80%, rgba(79, 142, 240, 0.12), transparent 55%),
    #030a14;
}

.web-hero--blog .web-hero-scrim {
  background:
    linear-gradient(105deg, rgba(4, 16, 31, 0.7) 0%, rgba(4, 16, 31, 0.28) 45%, rgba(4, 16, 31, 0.1) 75%, transparent 90%),
    linear-gradient(180deg, rgba(4, 16, 31, 0.2) 0%, transparent 40%, rgba(4, 16, 31, 0.58) 100%);
}

.about-intro {
  padding: 4.5rem 0 2rem;
  background: var(--fog);
}

.about-intro-layout {
  display: grid;
  gap: 2.5rem;
}

.about-intro-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

.about-intro-sticky h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--ink);
}

.about-intro-copy {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.about-intro-copy p {
  margin: 0;
  max-width: 42ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--steel);
}

.about-intro-link {
  width: fit-content;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-intro-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.about-intro-link:hover {
  border-bottom-color: rgba(29, 95, 214, 0.45);
}

.about-intro-link:hover span {
  transform: translateX(4px);
}

.about-identity {
  padding: 0 0 5rem;
  background: var(--fog);
}

.about-pedigree {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3.25rem;
  color: #eef4fb;
  background:
    radial-gradient(ellipse 55% 80% at 85% 20%, rgba(29, 95, 214, 0.35), transparent 58%),
    radial-gradient(ellipse 40% 60% at 8% 90%, rgba(20, 72, 168, 0.25), transparent 55%),
    #061526;
}

.about-pedigree::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(158, 203, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 203, 255, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 10%, transparent 90%);
  pointer-events: none;
}

.about-pedigree-inner {
  position: relative;
  z-index: 1;
}

.about-pedigree-kicker {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ecbff;
}

.about-pedigree-chain {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.about-pedigree-node {
  display: grid;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
}

a.about-pedigree-node {
  width: fit-content;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

a.about-pedigree-node:hover {
  transform: translateY(-2px);
}

.about-pedigree-node em {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(158, 203, 255, 0.7);
}

.about-pedigree-node strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.about-pedigree-node.is-current strong {
  color: #fff;
}

a.about-pedigree-node strong {
  color: #9ecbff;
  border-bottom: 1px solid rgba(158, 203, 255, 0.35);
}

a.about-pedigree-node:hover strong {
  border-bottom-color: #9ecbff;
}

.about-pedigree-link {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  max-width: 22rem;
}

.about-pedigree-link i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158, 203, 255, 0.55));
  position: relative;
  overflow: hidden;
}

.about-pedigree-link i:last-child {
  background: linear-gradient(90deg, rgba(158, 203, 255, 0.55), transparent);
}

.about-pedigree-link i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: #9ecbff;
  animation: pedigree-pulse 2.4s ease-in-out infinite;
}

.about-pedigree-link i:last-child::after {
  left: auto;
  right: 0;
  animation-delay: 0.35s;
}

@keyframes pedigree-pulse {
  0%,
  100% { opacity: 0.2; transform: scaleX(0.6); }
  50% { opacity: 1; transform: scaleX(1); }
}

.about-pedigree-link b {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 244, 251, 0.55);
  white-space: nowrap;
}

.about-pedigree-copy {
  margin: 1.75rem 0 0;
  max-width: 40ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(238, 244, 251, 0.68);
}

.about-vm {
  display: grid;
  gap: 0;
  padding-top: 0.5rem;
}

.about-vm-block {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 2.75rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(6, 47, 107, 0.14);
}

.about-vm-block--vision {
  border-top: 1px solid rgba(6, 47, 107, 0.14);
}

.about-vm-glyph {
  position: absolute;
  right: -0.1em;
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 22vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(29, 95, 214, 0.22);
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke-color 0.35s ease, color 0.35s ease;
}

.about-vm-block:hover .about-vm-glyph {
  color: rgba(29, 95, 214, 0.06);
  -webkit-text-stroke-color: rgba(29, 95, 214, 0.4);
}

.about-vm-body {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.about-vm-label {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

.about-vm-body h2 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--ink);
}

.about-vm-body p:last-child {
  margin: 0.95rem 0 0;
  max-width: 38ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--steel);
}

.about-process {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 100%),
    var(--paper);
}

.about-process-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.about-process-head h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-process-head > p:last-child {
  margin: 0.65rem 0 0;
  color: var(--steel);
  line-height: 1.55;
}

.about-process-steps {
  display: grid;
  gap: 2rem;
  position: relative;
}

.about-process-steps article {
  position: relative;
  padding-top: 0.25rem;
}

.about-process-num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(29, 95, 214, 0.55);
  transition: color 0.35s ease, -webkit-text-stroke-color 0.35s ease;
}

.about-process-steps article:hover .about-process-num {
  color: rgba(29, 95, 214, 0.12);
  -webkit-text-stroke-color: var(--signal);
}

.about-process-steps h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-process-steps p {
  margin: 0.55rem 0 0;
  max-width: 32ch;
  color: var(--steel);
  line-height: 1.6;
}

/* Blog article detail */
.blog-article-hero {
  position: relative;
  min-height: min(72vh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #04101f;
  color: #f3f7fc;
}

.blog-article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 16, 31, 0.25) 0%, rgba(4, 16, 31, 0.82) 100%),
    linear-gradient(90deg, rgba(4, 16, 31, 0.55), transparent 70%);
}

.blog-article-hero-copy {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 2.75rem;
  max-width: 48rem;
}

.blog-article-back {
  display: inline-flex;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(243, 247, 252, 0.7);
  transition: color 0.2s ease;
}

.blog-article-back:hover {
  color: #fff;
}

.blog-article-tag {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fc0ff;
}

.blog-article-hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.blog-article-hero time {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(243, 247, 252, 0.65);
}

.blog-article-layout {
  display: grid;
  gap: 2.5rem;
  padding: 2.75rem 0 4rem;
}

.blog-article-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

.blog-article-content p {
  margin: 0 0 1.15rem;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--steel);
}

.blog-article-aside {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(6, 47, 107, 0.14);
}

.blog-aside-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

.blog-article-aside h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.blog-article-aside p {
  margin: 0;
  color: var(--steel);
  line-height: 1.55;
}

.blog-article-aside .btn {
  width: fit-content;
}

.blog-related {
  padding: 0 0 5rem;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .blog-article-layout {
    grid-template-columns: 1.4fr 0.7fr;
    gap: 3.5rem;
    padding: 3.5rem 0 5rem;
    align-items: start;
  }

  .blog-article-aside {
    position: sticky;
    top: 6.5rem;
    padding: 1.75rem;
    border-top: 0;
    border: 1px solid rgba(6, 47, 107, 0.14);
    background: rgba(255, 255, 255, 0.72);
  }

  .blog-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.blog-section {
  padding: 5.5rem 0 2.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.blog-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  color: #f3f7fc;
  background: #061526;
  isolation: isolate;
}

.blog-card-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 16, 31, 0.05) 30%, rgba(4, 16, 31, 0.88) 100%),
    linear-gradient(135deg, rgba(29, 95, 214, 0.28), transparent 50%);
  transition: opacity 0.35s ease;
}

.blog-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.blog-card-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ecbff;
}

.blog-card-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(243, 247, 252, 0.45);
}

.blog-card-foot {
  display: grid;
  gap: 0.55rem;
}

.blog-card h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card time {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(243, 247, 252, 0.62);
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.1);
}

.blog-card:hover h2 {
  transform: translateY(-3px);
}

.blog-card:hover::after {
  border-color: rgba(126, 182, 255, 0.45);
}

.refs {
  padding: 5.5rem 0 2.5rem;
}

.refs-list {
  display: grid;
  border-top: 1px solid rgba(6, 47, 107, 0.16);
}

.refs-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(6, 47, 107, 0.14);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.refs-index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--signal);
}

.refs-main {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.refs-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.refs-meta {
  font-size: 0.92rem;
  color: var(--steel);
}

.refs-demo {
  display: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--signal);
}

.refs-go {
  font-size: 1.25rem;
  color: var(--steel);
  transition: transform 0.25s ease, color 0.25s ease;
}

.refs-item:hover {
  padding-left: 0.35rem;
}

.refs-item:hover .refs-go {
  color: var(--signal);
  transform: translateX(4px);
}

.page-cta {
  padding: 3.5rem 0 5rem;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(29, 95, 214, 0.12), transparent 55%),
    #061526;
  color: #eef4fb;
}

.page-cta-inner {
  max-width: 40rem;
}

.page-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.page-cta p {
  margin: 0.85rem 0 0;
  color: rgba(238, 244, 251, 0.68);
  line-height: 1.55;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.page-cta .btn-ink {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.page-cta .btn-ink:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a[aria-current="page"] {
  color: #fff;
  font-weight: 700;
  border-bottom-color: rgba(158, 203, 255, 0.85);
}

.nav-links a[aria-current="page"] b {
  color: #9ecbff;
}

.nav.is-scrolled .nav-links a[aria-current="page"],
.nav.is-open .nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--signal);
}

.nav.is-scrolled .nav-links a[aria-current="page"] b,
.nav.is-open .nav-links a[aria-current="page"] b {
  color: var(--signal);
}

.nav-mobile a[aria-current="page"] span {
  color: var(--signal);
}

@media (min-width: 900px) {
  .page-hero {
    padding: 9.5rem 0 4.5rem;
  }

  .web-hero {
    min-height: min(82vh, 700px);
  }

  .web-hero-content {
    padding: 10rem 0 4.5rem;
  }

  .about-intro {
    padding: 5.5rem 0 2.5rem;
  }

  .about-intro-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .about-intro-sticky {
    position: sticky;
    top: 6.5rem;
  }

  .about-identity {
    padding: 0 0 6rem;
  }

  .about-pedigree {
    padding: 4.5rem 0 4rem;
  }

  .about-pedigree-chain {
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem 2rem;
    align-items: end;
  }

  .about-pedigree-link {
    max-width: none;
    margin-bottom: 0.55rem;
  }

  .about-pedigree-copy {
    margin-top: 2.25rem;
  }

  .about-vm {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0 3.5rem;
    padding-top: 1rem;
  }

  .about-vm-block {
    padding: 3.5rem 0 3rem;
    border-bottom: 0;
  }

  .about-vm-block--vision {
    border-top: 0;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(6, 47, 107, 0.14);
  }

  .about-vm-block--mission {
    padding-top: 5.5rem;
  }

  .about-vm-glyph {
    right: 0.2em;
  }

  .about-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .about-process-steps::before {
    content: "";
    position: absolute;
    top: 2.1rem;
    left: 0.25rem;
    right: 0.25rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(29, 95, 214, 0.45), rgba(29, 95, 214, 0.08));
    pointer-events: none;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .blog-card {
    aspect-ratio: 1 / 1;
  }

  .blog-card-body {
    padding: 1.5rem 1.45rem;
  }

  .blog-card h2 {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    max-width: 12ch;
  }

  .refs-item {
    grid-template-columns: 3rem 1fr auto auto;
    gap: 1.5rem;
    padding: 1.7rem 0.25rem;
  }

  .refs-demo {
    display: inline;
  }

  .nav-links {
    gap: 0.2rem 0.85rem;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .nav-links a b {
    display: none;
  }
}

@media (min-width: 1100px) {
  .nav-links a b {
    display: inline;
  }

  .nav-links {
    gap: 0.35rem 1.15rem;
  }
}

/* Footer */
.footer {
  border-top: 1px solid rgba(11, 18, 32, 0.1);
  background: var(--paper);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-brand span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
}

.footer-copy {
  margin: 0.5rem 0 0;
  max-width: 36ch;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--steel);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  font-size: 0.875rem;
  color: var(--steel);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(11, 18, 32, 0.1);
  padding: 1rem 0;
  font-size: 0.75rem;
  color: var(--steel);
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
