:root {
  --bg: #f6f7fb;
  --text: #0f172a;
  --muted: #5b6475;
  --accent: #2f6bff;
  --accent-dark: #1e4dd8;
  --dark: #0b1220;
  --border: #e2e8f0;
  --surface: #ffffff;
  --shadow: 0 26px 60px rgba(15, 23, 42, 0.15);
}

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

body.page {
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Sora", "Space Grotesk", "Trebuchet MS", sans-serif;
  --bg-shift: 0px;
  --header-offset: 0px;
  padding-top: var(--header-offset);
  background: radial-gradient(circle at 15% calc(20% + var(--bg-shift)), #edf3ff 0, transparent 55%),
    radial-gradient(circle at 85% calc(10% + var(--bg-shift)), #f9fbff 0, transparent 60%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.page::before {
  content: "";
  position: fixed;
  inset: -40% -20%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 55%);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  transform: translateY(calc(-20px + var(--bg-shift))) rotate(-4deg);
}

.page.contact-page::before {
  content: "";
  position: fixed;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 107, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(125, 211, 252, 0.16), transparent 60%);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.page.contact-page::after {
  content: "";
  position: fixed;
  inset: -40% -20%;
  background-image:
    repeating-linear-gradient(0deg, rgba(47, 107, 255, 0.08) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(47, 107, 255, 0.08) 0 1px, transparent 1px 32px);
  background-size: 32px 32px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  animation: contactGridSlide 18s linear infinite;
  will-change: transform;
}

@keyframes contactGridSlide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(80px, 60px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page.contact-page::after {
    animation: none;
  }
}

.contact-hero {
  padding: 120px 0 160px;
}

.contact-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: #2f6bff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.contact-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f6bff;
}

.contact-hero h1 {
  margin-top: 20px;
  font-size: clamp(34px, 5.4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  color: #111827;
  letter-spacing: -0.02em;
}

.contact-hero h1 span {
  color: #2f6bff;
}

.contact-hero p {
  margin-top: 18px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

.contact-info {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.9), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
}

.contact-info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #2f6bff, #6aa2ff);
  box-shadow: 0 10px 18px rgba(47, 107, 255, 0.3);
}

.info-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.info-body {
  display: grid;
  gap: 4px;
}

.info-value {
  color: #111827;
  font-weight: 600;
}

.info-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9aa4b2;
  font-weight: 700;
}

.contact-info a {
  color: #111827;
  font-weight: 600;
}

.contact-info a:hover {
  color: #1e40af;
}

.contact-hero-title,
.contact-hero-subtitle {
  transition: opacity 0.35s ease;
}

.contact-hero-title.is-hidden,
.contact-hero-subtitle.is-hidden {
  opacity: 0;
  filter: blur(6px);
}


.contact-form-section {
  opacity: 1;
  transition: opacity 0.35s ease;
}

.contact-form-section.is-visible {
  opacity: 1;
}

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

.contact-primary {
  background: #2f6bff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
}

.contact-secondary {
  background: transparent;
  color: #2f6bff;
  padding: 12px 10px;
  font-weight: 600;
}

.contact-form-section {
  padding: 80px 0 140px;
}

.contact-form-card {
  max-width: 760px;
  margin: 0 auto;
  background: #f7f8fb;
  border-radius: 36px;
  padding: 36px 40px 44px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  transform-style: preserve-3d;
  --tilt-x: 6deg;
  --tilt-y: -6deg;
  transform: translateY(0) rotateX(0deg) rotateY(0deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
  opacity: 1;
}

.contact-form-section.is-visible .contact-form-card {
  opacity: 1;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: translateY(0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.contact-form-head {
  text-align: left;
}

.form-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #edf2ff;
  color: #2f6bff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-form-head h2 {
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.contact-form-head h2 span {
  color: #2f6bff;
}

.contact-form-head p {
  margin-top: 12px;
  color: #6b7280;
  font-size: 15px;
}

.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #9aa4b2;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid #e6e9f0;
  background: #fdfdff;
  font-size: 14px;
  color: #111827;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  border-radius: 18px;
  min-height: 120px;
  resize: vertical;
}

.custom-select {
  position: relative;
}

.select-trigger {
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid #e6e9f0;
  background: #fdfdff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #111827;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.select-trigger.is-placeholder {
  color: #a6adba;
  font-style: italic;
}

.select-trigger:focus-visible,
.select-trigger:hover {
  border-color: #2f6bff;
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.12);
  background: #ffffff;
}

.select-arrow {
  font-size: 12px;
  color: #94a3b8;
}

.select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  padding: 8px;
  display: none;
  max-height: 180px;
  overflow-y: auto;
  z-index: 10;
}

.custom-select.is-open .select-menu {
  display: grid;
  gap: 4px;
}

.select-option {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.select-option:hover {
  background: #f3f4f6;
}

.select-option.is-selected {
  color: #2f6bff;
  background: #eef2ff;
  font-weight: 600;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a6adba;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2f6bff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.12);
}

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

.form-submit {
  margin-top: 8px;
  background: #0f6bdc;
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 760px) {
  .contact-form-card {
    padding: 36px 28px 44px;
  }

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

@media (max-width: 980px) {
  .page.contact-page .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page.contact-page .contact-hero-inner {
    text-align: center;
    margin: 0 auto;
    max-width: 720px;
  }
}

.page.contact-page main {
  padding: 60px 0 140px;
}

.page.contact-page .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

.page.contact-page .contact-hero,
.page.contact-page .contact-form-section {
  padding: 0;
}

.page.contact-page .contact-hero-inner {
  text-align: left;
  margin: 0;
  max-width: 520px;
}

.page.contact-page .contact-hero {
  align-self: center;
}

.page.contact-page .contact-hero-title,
.page.contact-page .contact-hero-subtitle {
  text-align: left;
}

.page.contact-page .contact-form-card {
  max-width: 100%;
}

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

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

.container {
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
}

.site-header {
  padding: 14px 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, calc(var(--bg-shift) * 0.25), 0);
  will-change: transform;
}

.nav::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(calc(var(--bg-shift) * -0.35), calc(var(--bg-shift) * 0.45), 0);
  will-change: transform;
}

.nav > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .nav::before,
  .nav::after {
    transform: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  display: block;
  max-width: 160px;
  max-height: 32px;
  width: auto;
  height: auto;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3a77ff, #2f6bff);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brand-name {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #5c667a;
}

.site-nav a {
  position: relative;
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 0 12px rgba(47, 107, 255, 0.35);
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: #0f172a;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 10px 20px rgba(15, 23, 42, 0.12),
    0 0 6px rgba(47, 107, 255, 0.08);
}

.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  opacity: 0;
  transform: scaleX(0);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  position: relative;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: #111827;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.22);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.18);
}

.nav-cta:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
}

@media (min-width: 861px) {
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .nav-panel {
    display: contents;
  }

  .site-nav {
    justify-content: center;
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  color: #0f172a;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header.is-shrunk {
  padding: 10px 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.site-header.is-shrunk .brand-logo {
  max-height: 28px;
}

.site-header.is-shrunk .nav {
  padding: 8px 22px;
}

.hero {
  padding: 64px 0 110px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 560px;
  animation: fade-up 0.8s ease both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}

.pill-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.pill-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(47, 107, 255, 0.4);
  animation: pulse 2.2s ease infinite;
}

.pill::before,
.pill::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pill::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #0f172a;
  transform: translate(-50%, -6px) rotate(45deg);
  bottom: calc(100% + 6px);
  border-radius: 2px;
}

.pill::after {
  content: attr(data-tooltip);
  bottom: calc(100% + 12px);
  transform: translate(-50%, -6px);
  background: #0f172a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.2);
}

.pill:hover::after {
  opacity: 1;
  transform: translate(-50%, -2px);
}

.pill:hover::before {
  opacity: 1;
  transform: translate(-50%, -2px) rotate(45deg);
}

.hero-title {
  margin: 18px 0 40px;
  font-family: "Plus Jakarta Sans", "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #0f172a;
}

.hero-title span {
  display: block;
  color: var(--accent);
}

.hero-title .staggered-text {
  display: block;
  color: #0f172a;
}

.hero-title .staggered-text.accent {
  color: var(--accent);
}

.hero-text {
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 560px;
}

.hero-text strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn {
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6bff, #4b8dff);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 30px rgba(47, 107, 255, 0.28);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(47, 107, 255, 0.34);
  filter: brightness(1.05);
}

.primary-btn:active {
  transform: translateY(0);
  box-shadow: 0 12px 22px rgba(47, 107, 255, 0.24);
  filter: brightness(0.98);
}

.primary-btn:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
}

.secondary-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #d9e1ee;
  background: #fff;
  color: #1a2436;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #101827;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.logo-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #9aa4b2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.logo-pill {
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5eaf3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.logo-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7c8796;
  transition: transform 0.18s ease, color 0.18s ease;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.logo-label {
  letter-spacing: 0.12em;
}

.logo-pill:hover,
.logo-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 107, 255, 0.45);
  color: #1e4dd8;
  box-shadow: 0 10px 22px rgba(30, 77, 216, 0.15);
}

.logo-pill:hover .logo-icon,
.logo-pill:focus-visible .logo-icon {
  color: #1e4dd8;
  transform: scale(1.08);
}

.logo-pill:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(30, 77, 216, 0.12);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  position: relative;
  animation: fade-up 0.9s ease both;
  animation-delay: 0.1s;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: 5%;
  top: -10%;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.25), transparent 70%);
  filter: blur(6px);
  z-index: 0;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #9aa4b2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 1px solid #cfd6e6;
  border-radius: 14px;
  position: relative;
}

.scroll-mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  animation: wheel 1.6s ease infinite;
}

.device-card {
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  background: linear-gradient(160deg, #f3f6fb, #eef2f7);
  border: 1px solid #e1e8f2;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.device-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

.device-screen {
  position: absolute;
  top: 62px;
  left: 22px;
  right: 22px;
  bottom: 120px;
  border-radius: 24px;
  background: repeating-linear-gradient(
    to bottom,
    #202733 0,
    #202733 6px,
    #cfd5dd 6px,
    #cfd5dd 16px
  );
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.device-screen::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #1b222d;
  transform: translateX(-50%);
}

.device-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 16px;
  background: #f8f9ff;
  border: 1px solid #dbe3f3;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #51607a;
  text-transform: uppercase;
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.badge-text strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: #1b253a;
}

.device-chat {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  padding: 16px 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 251, 0.95));
  border: 1px solid #e6ebf4;
  box-shadow: 0 16px 26px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.line {
  height: 6px;
  width: 70%;
  background: #d3d9e3;
  border-radius: 999px;
}

.line.short {
  width: 45%;
  margin-left: 20px;
}

.dashboard {
  margin-top: 40px;
  padding: 30px 0 140px;
  position: relative;
  overflow: hidden;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}

.dashboard-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  perspective: 1400px;
}

.dashboard-header {
  max-width: 720px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #0f172a;
}

.section-text {
  margin: 14px auto 22px;
  color: #6c778d;
  font-size: 16px;
  line-height: 1.7;
}

.dark-btn {
  padding: 12px 28px;
  border-radius: 999px;
  background: #0b1220;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dark-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(15, 23, 42, 0.24);
  background: #111827;
}

.dark-btn:active {
  transform: translateY(0);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.2);
}

.dark-btn:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
}

.dashboard-mock {
  margin-top: 96px;
  width: min(980px, 100%);
  border-radius: 28px;
  background: #f8fafc;
  border: 1px solid #e3e9f3;
  box-shadow: 0 40px 70px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  opacity: var(--reveal-opacity, 1);
  transform: rotateX(var(--tilt, 0deg))
    translateY(calc(var(--lift, 0px) + var(--reveal, 0px)));
  transform-origin: center top;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out, opacity 0.3s ease-out;
  will-change: transform, opacity;
}

.window-bar {
  padding: 10px 16px;
  background: #f4f6fa;
  border-bottom: 1px solid #e5eaf4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.window-dots {
  position: absolute;
  left: 18px;
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d9e3;
}

.window-url {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #96a0b1;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4e9f3;
}

.bar-left,
.bar-center,
.bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bar-left {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
}

.bar-center {
  flex: 1;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}

.bar-right {
  font-size: 11px;
  color: #9aa4b2;
  gap: 10px;
}

.bar-logo {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.bar-caret {
  color: #9aa4b2;
  font-size: 12px;
}

.bar-doc {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #dfe5ef;
  background: #fff;
}

.bar-title {
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-meta {
  white-space: nowrap;
}

.bar-action {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid #e1e6f0;
  background: #fff;
  display: grid;
  place-items: center;
}

.window-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 560px;
  background: #fff;
}

.dash-sidebar {
  background: #f8f9fb;
  padding: 16px 14px;
  border-right: 1px solid #e3e8f3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  position: relative;
}

.sidebar-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: #5f6b7d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-row.active {
  background: #eef1f6;
  color: #111827;
  font-weight: 600;
}

.sidebar-icon {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: #e4e9f3;
  flex: 0 0 auto;
}

.sidebar-section {
  margin: 10px 10px 2px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a0a9b8;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-scroll {
  position: absolute;
  top: 110px;
  right: 6px;
  width: 4px;
  height: 240px;
  border-radius: 999px;
  background: #d9dee8;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1b253a;
}

.dash-brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3a77ff, #2f6bff);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  box-shadow: 0 10px 16px rgba(47, 107, 255, 0.3);
}

.dash-brand-name {
  font-size: 13px;
}

.dash-pill {
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e1e7f2;
  font-size: 12px;
  font-weight: 600;
  color: #2a3347;
}

.dash-nav {
  list-style: none;
  display: grid;
  gap: 14px;
  font-size: 12px;
  color: #7b8598;
  font-weight: 600;
}

.dash-main {
  padding: 34px 64px 46px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: left;
}

.main-block {
  width: min(560px, 100%);
  height: 70px;
  border-radius: 18px;
  background: #f5f6f8;
  border: 1px solid #edf1f6;
}

.main-block.small {
  height: 68px;
}

.main-block.large {
  height: 130px;
}

.dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dash-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #4b6dff;
}

.dash-head h3 {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #1b253a;
}

.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f7ee;
  color: #2f8a55;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2fb463;
}

.dash-message {
  padding: 16px 18px;
  border-radius: 16px;
  background: #f4f6fa;
  border: 1px solid #e7ecf4;
  color: #5b6475;
  font-size: 13px;
  max-width: 420px;
}

.dash-response {
  align-self: flex-end;
  padding: 14px 18px;
  border-radius: 16px;
  background: #2f6bff;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 16px 24px rgba(47, 107, 255, 0.28);
  max-width: 380px;
}

.dash-card {
  margin-top: 4px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #f9fafc;
  border: 1px solid #e7ecf4;
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.08);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.card-title {
  font-size: 12px;
  font-weight: 600;
  color: #384152;
}

.card-action {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #dfe6f1;
  display: grid;
  place-items: center;
  color: #2f6bff;
  font-size: 14px;
}

.card-chart {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  height: 110px;
}

.card-chart .bar {
  display: block;
  background: #d7e3f9;
  border-radius: 12px;
  height: 44px;
}

.card-chart .bar:nth-child(2) {
  height: 58px;
}

.card-chart .bar:nth-child(3) {
  height: 92px;
  background: #2f6bff;
  box-shadow: 0 14px 26px rgba(47, 107, 255, 0.28);
}

.card-chart .bar:nth-child(4) {
  height: 56px;
}

.card-chart .bar:nth-child(5) {
  height: 68px;
}

.architecture {
  padding: 120px 0 140px;
  position: relative;
}

.architecture::before {
  content: none;
}

.architecture-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.architecture-title {
  margin-top: 12px;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #0f172a;
}

.architecture-title .staggered-text {
  display: block;
  color: #0f172a;
}

.architecture-title .staggered-text.accent {
  color: var(--accent);
}

.architecture-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.feature-card {
  background: #fff;
  border: 1px solid #e6ebf4;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(47, 107, 255, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  border-color: #d7e3f9;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.feature-card:hover::after,
.feature-card:focus-within::after {
  opacity: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #0f172a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 26px rgba(15, 23, 42, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.feature-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:hover .feature-icon,
.feature-card:focus-within .feature-icon {
  transform: translateY(-2px) scale(1.05);
  background: var(--accent);
  box-shadow: 0 18px 30px rgba(47, 107, 255, 0.28);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}

.feature-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #edf1f6;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  transition: color 0.2s ease;
}

.feature-link span {
  transition: transform 0.2s ease;
}

.feature-card:hover .feature-link,
.feature-card:focus-within .feature-link {
  color: var(--accent);
}

.feature-card:hover .feature-link span,
.feature-card:focus-within .feature-link span {
  transform: translateX(4px);
}

.comparison {
  padding: 120px 0 90px;
  position: relative;
}

.comparison-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.comparison::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f5f7fb;
  opacity: 1;
  filter: none;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
  pointer-events: none;
  z-index: 0;
}

.comparison::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22120%22%20height%3D%2284%22%20viewBox%3D%220%200%20120%2084%22%3E%3Cg%20fill%3D%22%23a8b8d9%22%20stroke%3D%22%23a8b8d9%22%20stroke-width%3D%224%22%20stroke-linecap%3D%22round%22%3E%3Ccircle%20cx%3D%2214%22%20cy%3D%2218%22%20r%3D%223%22/%3E%3Ccircle%20cx%3D%2214%22%20cy%3D%2242%22%20r%3D%223%22/%3E%3Ccircle%20cx%3D%2214%22%20cy%3D%2266%22%20r%3D%223%22/%3E%3Cline%20x1%3D%2228%22%20y1%3D%2218%22%20x2%3D%22102%22%20y2%3D%2218%22/%3E%3Cline%20x1%3D%2228%22%20y1%3D%2242%22%20x2%3D%22102%22%20y2%3D%2242%22/%3E%3Cline%20x1%3D%2228%22%20y1%3D%2266%22%20x2%3D%22102%22%20y2%3D%2266%22/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(rgba(15, 23, 42, 0.04) 0.5px, transparent 0.5px),
    radial-gradient(rgba(15, 23, 42, 0.03) 0.5px, transparent 0.5px);
  background-size: 180px 110px, 3px 3px, 5px 5px;
  background-position: 0 0, 0 0, 2px 2px;
  opacity: 0.12;
  animation: comparisonDrift 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes comparisonDrift {
  0% {
    background-position: 0 0, 0 0, 2px 2px;
  }
  50% {
    background-position: 80px -40px, 16px -10px, -10px 14px;
  }
  100% {
    background-position: 0 0, 0 0, 2px 2px;
  }
}

.comparison-title {
  margin-top: 10px;
  font-size: clamp(34px, 4.8vw, 57px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #0f172a;
}

.comparison-title .staggered-text {
  display: block;
  color: inherit;
}

.comparison-title .staggered-text.accent {
  color: var(--accent);
}

.comparison-text {
  margin: 14px auto 40px;
  color: #6c778d;
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  position: relative;
  --stack-start: 120px;
  --stack-step: 60px;
  padding-bottom: calc(3 * var(--stack-step) + 120px);
}

.comparison-card {
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 24px;
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.08);
  padding: 0;
  width: min(920px, 100%);
  min-height: 240px;
  text-align: left;
  position: sticky;
  top: var(--stack-start);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
  overflow: hidden;
}

.comparison-card + .comparison-card {
  margin-top: 24px;
}

.comparison-card:nth-child(1) {
}

.comparison-card:nth-child(2) {
  top: calc(var(--stack-start) + var(--stack-step));
}

.comparison-card:nth-child(3) {
  top: calc(var(--stack-start) + var(--stack-step) * 2);
}

.comparison-card:nth-child(4) {
  top: calc(var(--stack-start) + var(--stack-step) * 3);
}

.comparison-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: var(--stack-step);
  padding: 0 26px;
  background: #f8faff;
  border-bottom: 1px solid #eef2f7;
  position: relative;
  z-index: 2;
}

.card-tag {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  transition: color 0.2s ease;
}

.comparison-body {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 22px 26px 26px;
  z-index: 1;
}

.comparison-body::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 1px;
  background: #eef2f7;
  transform: translateX(-0.5px);
}

.vs-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f5f7fb;
  border: 1px solid #e4e9f3;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.14em;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.comparison-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 18px;
}

.comparison-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.comparison-col p {
  font-size: 14px;
  line-height: 1.75;
  color: #6c778d;
}

.comparison-col.muted h3 {
  color: #6b7280;
}

.col-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.col-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ef4444;
  display: grid;
  place-items: center;
  background: #ef4444;
  position: relative;
  color: #94a3b8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.col-icon.ok {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.comparison-card:hover,
.comparison-card:focus-within {
  transform: translateY(-6px);
  border-color: #d7e3f9;
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 75%);
}

.comparison-card:hover .card-tag,
.comparison-card:focus-within .card-tag {
  color: #2f6bff;
}

.comparison-card:hover .vs-pill,
.comparison-card:focus-within .vs-pill {
  color: #2f6bff;
  border-color: #d7e3f9;
  transform: translate(-50%, -50%) scale(1.06);
}

.comparison-card:hover .col-icon.ok,
.comparison-card:focus-within .col-icon.ok {
  transform: scale(1.05);
  box-shadow: 0 10px 18px rgba(47, 107, 255, 0.28);
}

.private-section {
  padding: 120px 0 140px;
}

.private-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.private-copy {
  max-width: 520px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #0b1220;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.18);
}

.tag-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 11px;
}

.private-title {
  margin-top: 16px;
  font-size: clamp(40px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #0f172a;
}

.private-title .staggered-text {
  display: block;
  color: #0f172a;
}

.private-title .staggered-text + .staggered-text {
  margin-top: 9px;
}

.private-title .staggered-text.accent {
  color: var(--accent);
}

.private-text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #6c778d;
}

.private-text strong {
  color: #1f2937;
  font-weight: 700;
}

.private-panel {
  background: radial-gradient(circle at 20% 20%, rgba(59, 92, 255, 0.2), transparent 60%),
    linear-gradient(135deg, #0b1220, #0f172a 60%, #0b1220);
  border-radius: 30px;
  padding: 28px;
  color: #e2e8f0;
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.private-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 78px rgba(15, 23, 42, 0.28);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.panel-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.panel-head span {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
}

.panel-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a2338, #111827);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.panel-icon::before,
.panel-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(120, 167, 255, 0.8);
  border-radius: 999px;
}

.panel-icon::before {
  width: 18px;
  height: 10px;
  top: 10px;
}

.panel-icon::after {
  width: 18px;
  height: 10px;
  top: 22px;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.panel-row:last-child {
  margin-bottom: 0;
}

.panel-row:hover,
.panel-row:focus-within {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(127, 176, 255, 0.35);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.25);
  transform: translateY(-2px);
}

.panel-row:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.22);
}

.panel-row span {
  color: #cbd5f5;
  font-weight: 600;
}

.panel-row .value {
  font-size: 12px;
  font-weight: 700;
  color: #7fb0ff;
  text-transform: none;
  letter-spacing: 0;
}

.panel-row:hover .value,
.panel-row:focus-within .value {
  color: #cfe3ff;
}

.panel-row .value.success {
  color: #34d399;
}

.panel-row .value.accent {
  color: #8b5cf6;
}

.private-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.private-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e6ecf5;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  text-align: left;
  min-height: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.private-card:hover,
.private-card:focus-within,
.private-card.is-active {
  transform: translateY(-6px);
  border-color: #d7e3f9;
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f1f6ff 100%);
}

.private-card:focus-visible {
  outline: none;
}

.private-card.is-accent h3 {
  color: var(--accent);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.private-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #eef2ff;
  border: 1px solid #e2e8f5;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 20px rgba(47, 107, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.private-icon svg * {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #e5ecf6;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.private-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.private-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #6c778d;
}

.card-line {
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: #e5ecf6;
  margin-top: auto;
  transition: width 0.25s ease, background 0.25s ease;
}

.private-card.is-active .card-line {
  width: 48px;
  background: var(--accent);
}

.mobile-section {
  padding: 120px 0 150px;
}

.mobile-inner {
  text-align: center;
}

.mobile-title {
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.mobile-title .staggered-text {
  display: block;
  color: #0f172a;
}

.mobile-title .staggered-text.accent {
  color: var(--accent);
}

.mobile-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.mobile-col {
  display: grid;
  gap: 36px;
  padding-inline: 12px;
}

.mobile-col.align-right {
  justify-items: end;
  text-align: right;
}

.mobile-feature {
  max-width: 260px;
  display: grid;
  gap: 10px;
}

.mobile-feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.mobile-feature p {
  font-size: 15px;
  line-height: 1.75;
  color: #6c778d;
}

.mobile-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #0b1220;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
}

.mobile-icon svg {
  width: 30px;
  height: 30px;
}

.mobile-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-stack {
  position: relative;
  width: clamp(320px, 38vw, 480px);
  height: clamp(470px, 54vw, 680px);
  display: grid;
  place-items: center;
}

.phone-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.28));
}

.domains {
  padding: 120px 0 150px;
}

.domains-inner {
  text-align: center;
}

.domains-title {
  margin-top: 10px;
  font-size: clamp(34px, 4.6vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.domains-title span {
  display: block;
  color: var(--accent);
}

.domains-text {
  margin: 14px auto 44px;
  color: #6c778d;
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
  perspective: 1200px;
}

.domain-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  --scale: 1;
  --reveal-y: 0px;
  --mx: 20%;
  --my: 0%;
  --icon-x: 0px;
  --icon-y: 0px;
  --title-x: 0px;
  --title-y: 0px;
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.06);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transform: translateY(calc(var(--lift) + var(--reveal-y))) rotateX(var(--tilt-x))
    rotateY(var(--tilt-y)) scale(var(--scale));
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.6s ease;
}

.domain-card.wide-card {
  grid-column: span 1;
}

.domain-card.accent-card {
  background: linear-gradient(160deg, #3a6bff 0%, #2f56f5 55%, #2837d6 100%);
  border-color: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 250px;
}

.domain-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f4f7ff;
  border: 1px solid #e1e9f5;
  display: grid;
  place-items: center;
  color: var(--accent);
  box-shadow: 0 12px 20px rgba(47, 107, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  transform: translate3d(var(--icon-x), var(--icon-y), 0);
  position: relative;
}

.domain-icon svg {
  width: 21px;
  height: 21px;
}

.domain-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.domain-icon.inverse {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.2);
}

.domain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(47, 107, 255, 0.16), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.accent-card::after {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.22), transparent 45%);
}

.domain-card:hover,
.domain-card:focus-within {
  --lift: -6px;
  --scale: 1.01;
  border-color: #d7e3f9;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.domain-card:hover::after,
.domain-card:focus-within::after {
  opacity: 1;
}

.domain-card.is-tapped::after,
.domain-card:active::after {
  opacity: 1;
}

.blog {
  padding: 120px 0 150px;
}

.blog-inner {
  text-align: left;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.blog-copy {
  max-width: 640px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4e9ff;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 600;
}

.blog-copy h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f172a;
}

.blog-cta {
  padding: 12px 24px;
  border-radius: 999px;
  background: #0b1220;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-cta:hover,
.blog-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
  background: #111827;
}

.blog-cta:hover span,
.blog-cta:focus-visible span {
  transform: translateX(3px);
}

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

.blog-card {
  background: #fff;
  border: 1px solid #e7ecf4;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(47, 107, 255, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-6px);
  border-color: #d7e3f9;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.blog-card:hover::after,
.blog-card:focus-within::after {
  opacity: 1;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #2f6bff;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  align-self: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  transition: color 0.2s ease;
}

.blog-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #6c778d;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-date,
.blog-card:focus-within .blog-date {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(47, 107, 255, 0.25);
}

.blog-card:hover h3,
.blog-card:focus-within h3 {
  color: #1e4dd8;
}

.blog-card:hover p,
.blog-card:focus-within p {
  color: #4b5563;
}

.site-footer {
  margin-top: 20px;
  padding: 90px 0 40px;
  background: #0b1220;
  color: #cbd5f5;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.footer-logo-img {
  display: block;
  max-width: 170px;
  max-height: 32px;
  width: auto;
  height: auto;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2f6bff, #5d8bff);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
}

.footer-logo-name {
  font-size: 14px;
}

.footer-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #9aa4b2;
  max-width: 320px;
}

.footer-badges {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5f5;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-col h4 {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a {
  font-size: 13px;
  color: #e2e8f0;
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: #94a3b8;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: #e2e8f0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.domain-card:hover .domain-icon,
.domain-card:focus-within .domain-icon {
  transform: translate3d(var(--icon-x), var(--icon-y), 0) translateY(-2px) scale(1.05);
  background: #e7efff;
  box-shadow: 0 18px 30px rgba(47, 107, 255, 0.24);
}

.accent-card:hover,
.accent-card:focus-within {
  --lift: -6px;
  --scale: 1.02;
  box-shadow: 0 34px 70px rgba(47, 107, 255, 0.25);
}

.accent-card:hover .domain-icon.inverse,
.accent-card:focus-within .domain-icon.inverse {
  transform: translate3d(var(--icon-x), var(--icon-y), 0) scale(1.05);
}

.domain-card.reveal-card {
  opacity: 0;
  --reveal-y: 24px;
}

.domain-card.reveal-card.is-visible {
  opacity: 1;
  --reveal-y: 0px;
}

.domain-card.is-tapped,
.domain-card:active {
  --lift: -2px;
  --scale: 0.98;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.domain-icon.inverse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: haloPulse 2.6s ease infinite;
}

.domain-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  transform: translate3d(var(--title-x), var(--title-y), 0);
  transition: transform 0.25s ease;
}

.domain-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #6c778d;
}

.accent-card h3,
.accent-card p {
  color: #fff;
}


.col-icon::before {
  content: "\2715";
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.col-icon.ok::before {
  content: "\2713";
  color: #ffffff;
}


.staggered-text {
  display: inline-block;
}

.staggered-text .char-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  filter: blur(4px);
  animation: charEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
  will-change: transform, opacity, filter;
}

.staggered-text.is-visible .char-reveal {
  animation-play-state: running;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal.scale-reveal {
  transform: translateY(24px) scale(0.96);
}

.reveal.scale-reveal.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 107, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(47, 107, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 107, 255, 0);
  }
}

@keyframes haloPulse {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  40% {
    opacity: 0.7;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
}

@keyframes charEntrance {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
    margin-top: 32px;
  }

  .scroll-hint {
    position: static;
    transform: none;
    margin-top: 32px;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    border-right: none;
    border-bottom: 1px solid #e3e8f3;
  }

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

  .private-top {
    grid-template-columns: 1fr;
  }

  .private-panel {
    margin-top: 24px;
  }

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

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

  .mobile-col {
    justify-items: center;
    text-align: center;
  }

  .mobile-col.align-right {
    justify-items: center;
    text-align: center;
  }

  .phone-stack {
    margin: 30px auto;
  }

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

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

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

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

  .sidebar-scroll {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 7rem;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-panel::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .site-header.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    letter-spacing: 0.12em;
  }

  .nav-cta {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
  }

  .window-bar {
    flex-wrap: wrap;
  }

  .bar-center {
    order: 3;
    flex: 1 1 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 40px 0 80px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    justify-content: center;
  }

  .section-title {
    font-size: 32px;
  }

  .section-text {
    font-size: 15px;
  }

  .dashboard {
    padding-bottom: 110px;
  }

  .dash-main {
    padding: 24px;
  }

  .dash-response {
    align-self: stretch;
  }

  .window-url {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .bar-center {
    display: none;
  }

  .main-block {
    width: 100%;
  }

  .architecture {
    padding: 90px 0 110px;
  }

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

  .comparison {
    padding: 90px 0 110px;
  }

  .comparison-list {
    padding-bottom: 0;
  }

  .comparison-card {
    position: static;
    top: auto;
  }

  .comparison-card + .comparison-card {
    margin-top: 20px;
  }

  .comparison-body {
    grid-template-columns: 1fr;
  }

  .comparison-col + .comparison-col {
    border-top: 1px solid #eef2f7;
    padding-top: 18px;
  }

  .comparison-body::before,
  .vs-pill {
    display: none;
  }

  .comparison-col {
    padding: 4px 0 6px;
  }

  .private-section {
    padding: 90px 0 120px;
  }

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

  .private-text {
    font-size: 15px;
  }

  .mobile-section {
    padding: 90px 0 120px;
  }

  .mobile-feature {
    max-width: 320px;
  }

  .domains {
    padding: 90px 0 120px;
  }

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

  .blog {
    padding: 90px 0 120px;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .char-reveal {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .domain-icon.inverse::after {
    animation: none !important;
    opacity: 0;
  }
}

/* Features page hero */
.features-hero {
  padding: 120px 0 140px;
}

.features-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.features-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.features-title {
  margin-top: 18px;
  font-size: clamp(42px, 6.2vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: #111827;
}

.features-subtitle {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: #667085;
  line-height: 1.7;
}

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

.features-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
}

.features-link:hover {
  color: var(--accent-dark);
}

.features-media {
  padding: 10px 0 120px;
}

.features-media-card {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #e9eef7;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  height: 690px;
}

.features-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.features-demo {
  padding: 90px 0 140px;
}

.features-demo-inner {
  display: grid;
  gap: 36px;
}

.features-demo-head {
  text-align: center;
}

.features-demo-head h2 {
  font-size: clamp(32px, 4.4vw, 46px);
  color: #111827;
  font-weight: 800;
}

.features-demo-head p {
  margin-top: 12px;
  color: #6b7280;
  font-size: 16px;
}

.features-demo-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  position: relative;
  padding: 56px 32px 32px;
  background: #f6f7fb;
  border-radius: 40px;
  border: 1px solid #e4e8f0;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
  transform: perspective(1200px) rotateX(var(--demo-tilt-x, 0deg)) rotateY(var(--demo-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  align-items: start;
  min-height: 620px;
}

.features-demo-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  border-bottom: 1px solid #0b1220;
  background: #0b1220;
  border-radius: 40px 40px 0 0;
}

.features-demo-grid::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: 16px 0 0 #ffbd2e, 32px 0 0 #27c93f;
}

.demo-suggestions {
  display: grid;
  gap: 18px;
  transform: translateZ(16px);
}

.demo-suggestions-logo {
  width: 170px;
  height: auto;
  margin: 0 0 10px 6px;
}

.demo-chip {
  padding: 18px 22px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  text-align: left;
}

.demo-chip.is-active {
  border-color: #2f6bff;
  color: #1d4ed8;
  box-shadow: 0 14px 28px rgba(47, 107, 255, 0.2);
}

.demo-chat {
  background: #f8fafc;
  border-radius: 32px;
  padding: 36px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateZ(28px);
}

.demo-chat-header {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.demo-user-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.demo-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e5e7eb;
  color: #94a3b8;
  font-size: 14px;
}

.demo-reply {
  margin-top: 0;
  display: none;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.demo-reply.is-active {
  display: grid;
  animation: demoFade 0.35s ease;
}

.demo-bot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dbeafe;
  color: #2563eb;
  font-size: 14px;
}

.demo-reply-bubble {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 13px;
  color: #111827;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.demo-file {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #eff6ff;
  border-radius: 12px;
}

.demo-file-icon {
  font-size: 16px;
  color: #2563eb;
}

.demo-file-name {
  flex: 1;
  font-size: 12px;
  color: #1d4ed8;
  font-weight: 600;
}

.demo-file-btn {
  padding: 6px 12px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.demo-input {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 999px;
  color: #94a3b8;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

.demo-input button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.features-steps {
  padding: 100px 0 140px;
}

.features-steps-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.features-steps-head h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.features-steps-head p {
  margin-top: 16px;
  color: #6b7280;
  font-size: 16px;
}

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

.features-steps-grid::before {
  content: "";
  position: absolute;
  top: 86px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(148, 163, 184, 0.6) 0,
    rgba(148, 163, 184, 0.6) 4px,
    transparent 4px,
    transparent 10px
  );
  z-index: 0;
}

.features-step {
  --mx: 50%;
  --my: 30%;
  --icon-x: 0px;
  --icon-y: 0px;
  --title-x: 0px;
  --title-y: 0px;
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
  position: relative;
  z-index: 1;
  padding: 12px 10px;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.features-step::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(59, 130, 246, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.features-step:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.16);
}

.features-step:hover::after {
  opacity: 1;
}

.step-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px #e5e7eb;
  transform: translate3d(var(--icon-x), var(--icon-y), 0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: #2563eb;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s ease;
}

.step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.features-step:hover .step-badge {
  transform: scale(1.12);
}

.features-step:hover .step-icon {
  transform: translateY(-2px) scale(1.04);
  background: #eef2ff;
  box-shadow: 0 14px 24px rgba(59, 130, 246, 0.18);
}

.features-step:hover .step-icon svg {
  stroke: #1d4ed8;
}

.features-step h3 {
  font-size: 18px;
  color: #111827;
  font-weight: 700;
  transform: translate3d(var(--title-x), var(--title-y), 0);
  transition: transform 0.28s ease;
}

.features-step p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 280px;
}

.features-step p strong {
  color: #111827;
  font-weight: 700;
}

@media (max-width: 960px) {
  .features-steps-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 70%);
    grid-template-columns: none;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .features-steps-grid::before {
    display: none;
  }

  .features-step {
    scroll-snap-align: start;
  }
}

.features-layers {
  padding: 110px 0 140px;
}

.features-industries {
  padding: 120px 0 150px;
  background: #ffffff;
}

.features-industries-head {
  max-width: 640px;
}

.features-industries-head h2 {
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111827;
}

.features-industries-head h2 span {
  color: #2563eb;
}

.features-industries-head p {
  margin-top: 16px;
  color: #6b7280;
  font-size: 18px;
  font-weight: 500;
  max-width: 600px;
}

.features-industries-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 36px;
  align-items: stretch;
}

.industries-list {
  display: grid;
  gap: 18px;
}

.industry-pill {
  border: none;
  text-align: left;
  padding: 20px 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #eef2f7;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.industry-pill.is-active {
  background: #2f6bff;
  color: #fff;
  box-shadow: 0 24px 50px rgba(47, 107, 255, 0.32);
  transform: scale(1.02);
}

.industry-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.industry-pill.is-active .industry-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #f1f5ff;
  color: #2563eb;
  display: grid;
  place-items: center;
  font-size: 18px;
}

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

.industry-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: inherit;
}

.industry-text small {
  display: block;
  margin-top: 4px;
  color: inherit;
  opacity: 0.7;
  font-size: 12px;
  line-height: 1.5;
}

.industries-demo {
  position: relative;
  background: #f5f5f7;
  border-radius: 48px;
  padding: 28px;
  border: 1px solid #eaedf3;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.08);
}

.industries-card {
  background: #f7f8fb;
  border-radius: 36px;
  padding: 36px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
}

.industries-meta {
  display: grid;
  gap: 10px;
}

.meta-pill {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #2563eb;
}

.meta-sub {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

.industries-card h3 {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}

.industries-answer {
  margin-top: 18px;
  border-left: 3px solid #2563eb;
  padding-left: 16px;
}

.answer-pill {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #2563eb;
}

.industries-answer p {
  margin-top: 10px;
  color: #6b7280;
  font-style: italic;
  line-height: 1.7;
}

.industries-footer {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.industries-stat strong {
  display: block;
  font-size: 30px;
  color: #2563eb;
}

.industries-stat span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #94a3b8;
  font-weight: 700;
}

.industries-cta {
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.industries-cta span {
  transition: transform 0.2s ease;
}

.industries-cta:hover span {
  transform: translateX(4px);
}

.industries-demo::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 240px;
  height: 240px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
}

.industries-card,
.industries-meta,
.industries-card h3,
.industries-answer,
.industries-footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .features-industries-grid {
    grid-template-columns: 1fr;
  }

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

.features-integration {
  padding: 110px 0 150px;
}

.features-industries + .features-integration {
  margin-top: 120px;
}

.features-integration-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.integration-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #eef2ff;
  color: #2563eb;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 22px;
}

.features-integration-head h2 {
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
}

.features-integration-head p {
  margin-top: 16px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

.features-integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.integration-strip {
  margin-top: 190px;
  text-align: center;
}

.integration-strip h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 36px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.integration-logos span {
  color: #c0c4cc;
  transition: color 0.2s ease, transform 0.2s ease;
}

.integration-bar {
  margin-top: 28px;
  background: #2f6bff;
  border-radius: 22px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.integration-bar-text {
  text-align: left;
  max-width: 560px;
}

.integration-bar-text h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.integration-bar-text p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
}

.integration-bar-metrics {
  display: flex;
  gap: 12px;
}

.bar-metric {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 110px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bar-metric strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.bar-metric span {
  font-size: 11px;
  opacity: 0.85;
}

.integration-logos span:hover {
  color: #1e4dd8;
  transform: translateY(-2px);
}

.integration-bar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.integration-bar:hover .bar-metric {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.integration-card {
  background: #f4f5f7;
  border-radius: 30px;
  padding: 32px;
  border: 1px solid #eceff4;
  display: grid;
  gap: 18px;
  min-height: 360px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.integration-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.integration-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.integration-note {
  margin-top: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #94a3b8;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.integration-note strong {
  color: #2563eb;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.note-lines {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.note-lines span {
  height: 4px;
  background: #e5e7eb;
  border-radius: 999px;
}

.note-lines span:last-child {
  width: 70%;
  background: #c7d2fe;
}

.integration-card.is-dark {
  background: #0b1220;
  border-color: transparent;
  color: #e2e8f0;
}

.integration-card.is-dark h3 {
  color: #ffffff;
}

.integration-card.is-dark p {
  color: #94a3b8;
}

.integration-lock {
  display: flex;
  align-items: center;
  gap: 12px;
}

.integration-lock span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #1d4ed8;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.integration-chip {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.integration-card:hover,
.integration-card:focus-within {
  transform: translateY(-6px);
  border-color: #d7e3f9;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.integration-card:hover .integration-note,
.integration-card:focus-within .integration-note {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.integration-card:hover .integration-lock span,
.integration-card:focus-within .integration-lock span {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.3);
}

.integration-card:hover .integration-chip,
.integration-card:focus-within .integration-chip {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
}

.integration-chip strong {
  display: block;
  color: #e2e8f0;
  font-weight: 600;
}

.integration-chip span {
  color: #94a3b8;
  font-size: 11px;
}

.integration-chip button {
  background: #2563eb;
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.integration-foot {
  margin-top: 6px;
  font-size: 11px;
  color: #64748b;
}

@media (max-width: 960px) {
  .features-integration-grid {
    grid-template-columns: 1fr;
  }

  .integration-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.features-faq {
  padding: 120px 0 160px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  overflow-anchor: none;
}

.features-faq-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/arkapla-122.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: clamp(240px, 30vw, 520px) auto;
  transform-origin: left center;
  transform: translateZ(0) rotateX(0deg) rotateY(0deg);
  transition: transform 700ms ease;
  pointer-events: auto;
  z-index: 0;
}

.features-faq-icon {
  position: absolute;
  right: clamp(24px, 6vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(120px, 16vw, 200px);
  height: auto;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}

.features-faq::before {
  content: "";
  position: absolute;
  inset: -10% -10%;
  background-image: radial-gradient(circle, rgba(47, 107, 255, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 6px 8px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.features-faq::after {
  content: "";
  position: absolute;
  inset: -30% -30%;
  background: radial-gradient(circle at 50% 30%, rgba(47, 107, 255, 0.16), transparent 60%);
  opacity: 0.28;
  filter: blur(12px);
  animation: faqGlowDrift 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.features-faq .container {
  position: relative;
  z-index: 2;
}

@keyframes faqGlowDrift {
  0% {
    transform: translateY(0);
    opacity: 0.32;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0);
    opacity: 0.32;
  }
}

.features-faq-bg:hover {
  transform: translateZ(50px) rotateX(6deg) rotateY(-8deg);
}

@media (prefers-reduced-motion: reduce) {
  .features-faq-bg {
    transition: none;
  }

}

.features-faq h2 {
  text-align: center;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  color: #111827;
  margin-bottom: 36px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: #2563eb;
}

.faq-item:hover {
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  border-color: #d7e3f9;
  background-color: #f8faff;
}

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

.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  border-color: #2563eb;
}

.faq-item p {
  margin-top: 12px;
  color: #6b7280;
  line-height: 1.7;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.features-cta {
  padding: 90px 0 140px;
  background: #ffffff url("../assets/images/arkaplan-122.png") center/cover no-repeat;
}

.features-cta-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.features-cta-card h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
}

.cta-actions {
  margin-top: 24px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.features-cta-card p {
  margin-top: 18px;
  color: #6b7280;
  font-size: 14px;
}

.faq-item[open] {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.08);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.96));
}

.faq-item[open] summary {
  color: #1e40af;
}

.faq-item[open] p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .faq-item {
    padding: 20px 24px;
  }

  .faq-item p {
    font-size: 15px;
  }
}

.features-layers-head {
  max-width: 640px;
  margin-bottom: 54px;
}

.features-layers-head h2 {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
}

.features-layers-head h2 span {
  color: #111827;
  font-weight: 700;
}

.features-layers-head h2 .staggered-text {
  display: block;
  color: #111827;
  font-weight: 800;
}

.features-layers-head h2 .staggered-text.accent {
  color: #111827;
  font-weight: 700;
}

.features-layers-head p {
  margin-top: 16px;
  color: #6b7280;
  font-size: 16px;
  max-width: 520px;
}

.features-layers-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 28px;
  align-items: stretch;
}

.features-layers-grid-secondary {
  margin-top: 24px;
}

.features-layers-grid-reverse {
  grid-template-columns: 30% 70%;
}

.features-layers-grid-tertiary {
  margin-top: 24px;
  grid-template-columns: 30% 30%;
  justify-content: start;
}

.features-layer-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 34px 32px 30px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  border: 1px solid #eef1f6;
  display: grid;
  gap: 18px;
  min-height: 280px;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.features-layer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
}

.features-layer-card.is-dark {
  background: linear-gradient(160deg, #0b1220 0%, #0f172a 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.35);
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.features-layer-card.is-dark::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--mx, 60%) var(--my, 20%), rgba(90, 140, 255, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.features-layer-card.is-dark:hover::after {
  opacity: 1;
}

.features-layer-card.is-half {
  width: 50%;
  max-width: 360px;
  justify-self: end;
}

.features-layer-card.is-dark h3 {
  color: #ffffff;
}

.features-layer-card.is-dark p {
  color: #94a3b8;
}

.features-layer-card.is-dark .layer-icon {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.features-layer-card.is-dark .layer-icon svg {
  stroke: #7ab0ff;
}

.features-layer-card.is-dark .layer-link {
  color: #7ab0ff;
}

.features-layer-card.is-wide {
  min-height: 340px;
}

.layer-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px #e5e7eb, 0 10px 18px rgba(15, 23, 42, 0.08);
}

.layer-icon svg {
  width: 24px;
  height: 24px;
  stroke: #2563eb;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features-layer-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: -4px;
}

.layer-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.layer-title h3 {
  margin-right: 6px;
}

.layer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e6efff;
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.18), 0 6px 18px rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.features-layer-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 14px;
}

.layer-link {
  margin-top: auto;
  justify-self: start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2563eb;
  transition: transform 0.2s ease;
}

.layer-link span {
  margin-left: 6px;
}

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

.layer-icon-pulse {
  animation: iconPulse 3.6s ease-in-out infinite;
}

.layer-badge-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
  animation: badgeShimmer 3.2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes badgeShimmer {
  0% {
    transform: translateX(-120%);
  }
  55% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 960px) {
  .features-layers-grid {
    grid-template-columns: 1fr;
  }

  .features-layer-card.is-half {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

@keyframes demoFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .features-demo-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog page */
.blog-hero {
  padding: 120px 0 90px;
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

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

.blog-hero-title {
  margin-top: 0;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.blog-hero-subtitle {
  margin-top: 20px;
  font-size: 16px;
  color: #6b7280;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.blog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.blog-section-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: #0f172a;
}

.blog-section-head p {
  margin-top: 10px;
  color: #6b7280;
  max-width: 520px;
}

.blog-section-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4e9ff;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.blog-latest {
  padding: 10px 0 80px;
}

.blog-latest .container,
.release-notes .container {
  width: min(980px, 100% - 48px);
}

.blog-latest + .release-notes {
  border-top: 1px solid #e7ecf4;
  padding-top: 70px;
  margin-top: 10px;
}

.blog-read {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: #2f6bff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read:hover {
  transform: translateX(4px);
}

.release-notes {
  padding: 0 0 120px;
}

.release-timeline {
  display: grid;
  gap: 18px;
  border-left: 1px solid #e5e7eb;
  padding-left: 24px;
}

.release-item {
  position: relative;
  background: #fff;
  border: 1px solid #e7ecf4;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.release-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2f6bff;
  box-shadow: 0 0 0 6px rgba(47, 107, 255, 0.16);
}

.release-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: #0b1220;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.release-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.release-date {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

.release-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  list-style: none;
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
}

.release-list li {
  position: relative;
  padding-left: 16px;
}

.release-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #2f6bff;
}


/* About page */
.about-hero {
  padding: 130px 0 110px;
  text-align: center;
}

.about-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: #2f6bff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about-title {
  margin-top: 18px;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.about-title .accent {
  color: #2f6bff;
}

.about-subtitle {
  margin-top: 16px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

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

.about-metrics {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-metric {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #eef2ff;
  color: #2f6bff;
  font-size: 16px;
  margin-bottom: 10px;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.about-metric-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-metric strong {
  display: block;
  font-size: 20px;
  color: #111827;
  transition: color 0.2s ease;
}

.about-metric-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  transition: color 0.2s ease;
}

.about-metric:hover,
.about-metric:focus-within {
  transform: translateY(-4px);
  border-color: #d7e3f9;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.about-metric:hover .about-metric-icon,
.about-metric:focus-within .about-metric-icon {
  background: #e0e7ff;
  color: #1e4dd8;
  transform: scale(1.05);
}

.about-metric:hover strong,
.about-metric:focus-within strong {
  color: #1e4dd8;
}

.about-metric:hover .about-metric-label,
.about-metric:focus-within .about-metric-label {
  color: #374151;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4e9ff;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.about-focus {
  padding: 20px 0 110px;
}

.about-focus-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-focus-copy h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.about-focus-copy p {
  margin-top: 14px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.about-focus-visual {
  position: relative;
  height: 360px;
  border-radius: 28px;
  border: 1px solid #e7ecf4;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-focus-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-visual-card {
  position: absolute;
  left: 24px;
  bottom: 22px;
  background: #2f6bff;
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 260px;
  box-shadow: 0 18px 36px rgba(47, 107, 255, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-visual-card h3 {
  font-size: 14px;
  font-weight: 700;
}

.about-visual-card p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.about-focus-list {
  margin: 18px 0 22px;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #475569;
  font-size: 14px;
}

.about-focus-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-focus-list li:hover,
.about-focus-list li:focus-within {
  transform: translateY(-2px);
  border-color: #d7e3f9;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.about-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #e0ecff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-check::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #2f6bff;
  border-bottom: 2px solid #2f6bff;
  transform: rotate(-45deg);
  margin-top: -1px;
}

.about-focus-list li:hover .about-check,
.about-focus-list li:focus-within .about-check {
  background: #dbeafe;
  transform: scale(1.05);
}

.about-focus-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-focus-cta:hover,
.about-focus-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(47, 107, 255, 0.25);
}

.about-focus-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.2);
}

.about-focus-visual:hover img {
  transform: scale(1.04);
}

.about-focus-visual:hover .about-visual-card {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(47, 107, 255, 0.35);
}

.about-focus-list li.reveal:nth-child(1) {
  transition-delay: 60ms;
}

.about-focus-list li.reveal:nth-child(2) {
  transition-delay: 120ms;
}

.about-focus-list li.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.about-focus-list li.reveal:nth-child(4) {
  transition-delay: 240ms;
}

.about-focus-visual.reveal {
  transition-delay: 120ms;
}

.about-focus-visual.reveal.is-visible {
  box-shadow: none;
}

.about-focus-visual.reveal.is-visible:hover {
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.2);
}

.about-values {
  padding: 10px 0 120px;
}

.about-values-head {
  text-align: center;
  margin-bottom: 36px;
}

.about-values-head h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #111827;
}

.about-values-rule {
  display: inline-block;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: #2f6bff;
  margin-top: 12px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 24px;
  justify-content: center;
}

.about-value-card {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
  width: 100%;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eef4ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f6bff;
  margin-bottom: 14px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-value-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  transition: color 0.2s ease;
}

.about-value-card p {
  margin-top: 10px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  transition: color 0.2s ease;
}

.about-value-card:hover,
.about-value-card:focus-within {
  transform: translateY(-6px);
  border-color: #d7e3f9;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.about-value-card:hover .about-value-icon,
.about-value-card:focus-within .about-value-icon {
  background: #e0e7ff;
  color: #1e4dd8;
  transform: scale(1.05);
}

.about-value-card:hover h3,
.about-value-card:focus-within h3 {
  color: #1e4dd8;
}

.about-value-card:hover p,
.about-value-card:focus-within p {
  color: #4b5563;
}

.about-section-head {
  text-align: left;
  max-width: 720px;
}

.about-section-head h2 {
  margin-top: 14px;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  color: #0f172a;
}

.about-section-head p {
  margin-top: 12px;
  color: #6b7280;
  line-height: 1.7;
}

.about-timeline {
  padding: 0 0 120px;
}

.about-journey-head {
  text-align: left;
  max-width: 520px;
}

.about-journey-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f172a;
}

.about-journey-head p {
  margin-top: 10px;
  color: #6b7280;
  line-height: 1.7;
  font-size: 14px;
}

.about-journey-track {
  margin-top: 36px;
  position: relative;
}

.about-journey-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  height: 2px;
  background: #e4e9f2;
}

.about-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.about-journey-item {
  display: grid;
  gap: 6px;
  padding: 12px 12px 14px;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.about-journey-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #2f6bff;
  border: 4px solid #e7efff;
  margin-bottom: 8px;
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-journey-item strong {
  font-size: 18px;
  color: #2f6bff;
  transition: color 0.2s ease;
}

.about-journey-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  transition: color 0.2s ease;
}

.about-journey-item p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.about-journey-item:hover,
.about-journey-item:focus-within {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: #d7e3f9;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.about-journey-item:hover .about-journey-dot,
.about-journey-item:focus-within .about-journey-dot {
  transform: scale(1.05);
  box-shadow: 0 0 0 5px rgba(47, 107, 255, 0.18);
}

.about-journey-item:hover strong,
.about-journey-item:focus-within strong {
  color: #1e4dd8;
}

.about-journey-item:hover h3,
.about-journey-item:focus-within h3 {
  color: #1e4dd8;
}

.about-journey-item:hover p,
.about-journey-item:focus-within p {
  color: #4b5563;
}

@media (max-width: 980px) {
  .blog-hero-inner {
    grid-template-columns: 1fr;
  }

  .release-timeline {
    padding-left: 18px;
  }

  .about-focus-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-focus-visual {
    height: 300px;
  }
}

@media (max-width: 700px) {
  .blog-hero {
    padding: 90px 0 60px;
  }

  .blog-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-hero {
    padding: 90px 0 60px;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-journey-grid {
    grid-template-columns: 1fr;
  }

  .about-journey-line {
    display: none;
  }

  .about-focus-visual {
    height: 260px;
  }

  .about-visual-card {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
.private-card:hover .private-icon,
.private-card:focus-within .private-icon,
.private-card.is-active .private-icon {
  transform: translateY(-2px) scale(1.04);
  background: #e7efff;
  box-shadow: 0 18px 28px rgba(47, 107, 255, 0.22);
}
.private-card.is-active .card-number {
  color: rgba(47, 107, 255, 0.25);
}
