﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  --primary: #6D28D9;
  --primary-hover: #7C3AED;
  --primary-soft: #F3E8FF;
  --secondary: #8B5CF6;
  --secondary-soft: #F3E8FF;
  --tertiary: #4C1D95;
  --surface: #FFFFFF;
  --surface-low: #FAF5FF;
  --surface-high: #F3E8FF;
  --white: #ffffff;
  --ink: #0F172A;
  --muted: #475569;
  --outline: #64748B;
  --outline-soft: #E2E8F0;
  --navy: #4C1D95;
  --navy-2: #6D28D9;
  --success-bg: #dcfce7;
  --success: #166534;
  --pending-bg: #fef9c3;
  --pending: #92400e;
  --failed-bg: #ffdad6;
  --failed: #93000a;
  --shadow: 0 18px 50px rgba(9, 30, 66, 0.16);
  --stagger-dur: 500ms;
  --stagger-distance: 12px;
  --stagger-stagger: 40ms;
  --stagger-blur: 3px;
  --stagger-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --panel-open-dur: 400ms;
  --panel-close-dur: 350ms;
  --panel-translate-y: 100px;
  --panel-blur: 2px;
  --panel-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

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

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

button,
a,
select {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.site-header {
  position: relative;
  z-index: 50;
  background: var(--surface);
  padding: 16px 0 0;
}

.nav-wrap {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--outline-soft);
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 72px rgba(59, 14, 140, 0.08);
  padding: 12px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--outline-soft);
  border-radius: 8px;
  background: var(--white);
  padding: 6px;
  box-shadow: 0 0 0 1px rgba(109, 40, 217, 0.08);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 19px;
  line-height: 1;
}

.brand-sub {
  color: var(--outline);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-width: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition:
    color 250ms cubic-bezier(0.22, 1, 0.36, 1),
    background 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  background: transparent;
  color: #6D28D9;
  box-shadow: none;
  outline: none;
}

.nav-link.active::after { display: none; }

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

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.nav-actions .btn {
  min-height: 42px;
  padding: 0 16px;
}

.nav-sales,
.nav-login {
  border-radius: 999px;
  background: var(--surface-low);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-actions .btn-primary {
  border-color: var(--ink);
  border-radius: 12px;
  background: var(--ink);
  font-size: 14px;
}

.nav-actions .btn-primary:hover {
  background: var(--tertiary);
}

.btn:focus-visible,
.icon-button:focus-visible,
.field:focus,
.select-field:focus,
.textarea-field:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.35);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

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

.btn-secondary {
  background: var(--white);
  border-color: var(--outline-soft);
  color: var(--muted);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-dark:hover {
  background: var(--secondary-soft);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--outline-soft);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.icon-button:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Lines start translated down + blurred + invisible; .is-shown
   on the parent flips them to their resting state. The second
   line's transition-delay holds it back by --stagger-stagger
   so the eye lands on the headline first. */
.t-stagger-line {
  display: block;
  opacity: 0;
  transform: translateY(var(--stagger-distance));
  filter: blur(var(--stagger-blur));
  transition:
    opacity   var(--stagger-dur) var(--stagger-ease),
    transform var(--stagger-dur) var(--stagger-ease),
    filter    var(--stagger-dur) var(--stagger-ease);
  will-change: transform, opacity, filter;
}
.t-stagger-line--2 { transition-delay: var(--stagger-stagger); }
.t-stagger-line--3 { transition-delay: calc(var(--stagger-stagger) * 2); }
.t-stagger-line--4 { transition-delay: calc(var(--stagger-stagger) * 3); }
.t-stagger-line--5 { transition-delay: calc(var(--stagger-stagger) * 4); }

.t-stagger.is-shown .t-stagger-line {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* Exit decouples from the stagger: same fade for every line,
   no Y return, no blur, so the disappearance reads as a
   single quiet fade instead of a reverse reveal. */
.t-stagger.is-hiding .t-stagger-line {
  opacity: 0;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 200ms ease,
    transform 0s linear,
    filter 0s linear;
  transition-delay: 0s;
}

.t-panel-slide {
  transform: translateY(var(--panel-translate-y));
  opacity: 0;
  filter: blur(var(--panel-blur));
  pointer-events: none;
  transition:
    transform var(--panel-close-dur) var(--panel-ease),
    opacity   var(--panel-close-dur) var(--panel-ease),
    filter    var(--panel-close-dur) var(--panel-ease);
  will-change: transform, opacity, filter;
}
.t-panel-slide[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transition:
    transform var(--panel-open-dur) var(--panel-ease),
    opacity   var(--panel-open-dur) var(--panel-ease),
    filter    var(--panel-open-dur) var(--panel-ease);
}

.home-reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(3px);
  transition:
    opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 500ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(88vw, 360px);
  background: var(--white);
  border-left: 1px solid var(--outline-soft);
  box-shadow: var(--shadow);
  transform: translateX(104%);
  padding: 18px;
}

.drawer-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer.t-panel-slide {
  --panel-blur: 2px;
  transform: translateX(104%);
}

.mobile-drawer.t-panel-slide[data-open="true"] {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(6, 22, 46, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.drawer-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

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

.drawer-nav {
  display: grid;
  gap: 8px;
}

.drawer-nav .nav-link {
  justify-content: space-between;
  width: 100%;
  background: var(--surface-low);
}

.drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.main {
  flex: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 22, 46, 0.98), rgba(0, 61, 155, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(110, 243, 243, 0.28), transparent 28%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 72px);
  padding: 72px 0 86px;
}

.hero-inner-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 42px;
  min-height: auto;
  padding: 76px 0 0;
  text-align: center;
}

.hero-copy-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: min(100%, 900px);
  min-width: 0;
  max-width: 880px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
  color: rgba(255,255,255,0.82);
  padding: 5px 9px 5px 5px;
  font-size: 12px;
  transition: border-color 180ms ease, background 180ms ease;
}

.hero-pill:hover,
.hero-pill:focus-visible {
  border-color: rgba(110, 243, 243, 0.64);
  background: rgba(255,255,255,0.15);
  outline: none;
}

.hero-pill .material-symbols-outlined {
  font-size: 16px;
  transition: transform 180ms ease;
}

.hero-pill:hover .material-symbols-outlined {
  transform: translateX(2px);
}

.pill-code {
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 5px;
  background: rgba(255,255,255,0.11);
  color: var(--secondary-soft);
  font-family: "JetBrains Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 6px;
}

.pill-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.22);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy,
.page-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-copy-block .hero-copy {
  max-width: 720px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

.hero-actions-centered {
  justify-content: center;
  margin-top: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 800;
}

.hero-console {
  display: grid;
  gap: 14px;
}

.hero-showcase {
  position: relative;
  justify-self: center;
  width: min(100%, 1040px);
  min-width: 0;
  max-width: 100%;
  border-inline: 1px solid rgba(255,255,255,0.16);
  padding: 34px clamp(14px, 3vw, 34px) 46px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.12), transparent 62%);
  filter: blur(42px);
}

.showcase-divider {
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}

.showcase-divider.top {
  top: 0;
}

.showcase-divider.bottom {
  bottom: 0;
}

.corner {
  position: absolute;
  z-index: 1;
  width: 16px;
  height: 16px;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: var(--secondary-soft);
}

.corner::before {
  width: 1px;
  height: 16px;
}

.corner::after {
  width: 16px;
  height: 1px;
}

.corner-top-left {
  left: -8px;
  top: -8px;
}

.corner-top-right {
  right: -8px;
  top: -8px;
}

.corner-bottom-left {
  left: -8px;
  bottom: -8px;
}

.corner-bottom-right {
  right: -8px;
  bottom: -8px;
}

.corner-top-right::before,
.corner-bottom-right::before {
  right: 0;
}

.corner-bottom-left::before,
.corner-bottom-right::before {
  bottom: 0;
}

.corner-top-right::after,
.corner-bottom-right::after {
  right: 0;
}

.corner-bottom-left::after,
.corner-bottom-right::after {
  bottom: 0;
}

.hero-dashboard {
  overflow: hidden;
}

.hero-code {
  width: min(88%, 720px);
  margin: -18px auto 0;
  transform: none;
}

.product-panel,
.code-panel,
.metric-card,
.feature-card,
.form-card,
.timeline-card {
  border: 1px solid var(--outline-soft);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(223, 225, 230, 0.7);
}

.product-panel,
.code-panel {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--outline-soft);
  padding: 16px 18px;
}

.panel-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(22,101,52,0.12);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 18px;
}

.mini-stat {
  border-radius: 8px;
  background: var(--surface-low);
  padding: 14px;
}

.mini-stat strong {
  display: block;
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
}

.mini-stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.delivery-list {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.delivery-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(195, 198, 214, 0.65);
  border-radius: 8px;
  padding: 10px 12px;
}

.delivery-row span:first-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 800;
}

.badge.sent {
  background: var(--primary-soft);
  color: #4C1D95;
}

.badge.delivered {
  background: var(--success-bg);
  color: var(--success);
}

.badge.pending {
  background: var(--pending-bg);
  color: var(--pending);
}

.code-panel {
  transform: translateX(-28px);
  overflow: hidden;
}

.code-panel.hero-code {
  transform: none;
}

.code-panel pre {
  margin: 0;
  overflow-x: auto;
  padding: 18px;
  color: #d9f7ff;
  background: #2E1065;
  font-family: "JetBrains Mono", Menlo, monospace;
  font-size: 13px;
  line-height: 1.7;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 18px;
}

.feature-card h3,
.metric-card h3,
.form-card h2,
.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.feature-card p,
.metric-card p,
.timeline-card p {
  margin: 0;
  color: var(--muted);
}

.metric-band {
  background: var(--navy);
  color: var(--white);
  padding: 42px 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-card {
  min-height: 142px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
  padding: 22px;
}

.metric-card strong {
  display: block;
  color: var(--secondary-soft);
  font-size: 34px;
  line-height: 1;
}

.metric-card p {
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.api-window {
  overflow: hidden;
  border: 1px solid var(--outline-soft);
  border-radius: 12px;
  background: #2E1065;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  padding: 13px 16px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--outline);
}

.api-window pre {
  margin: 0;
  overflow-x: auto;
  padding: 22px;
  color: #dff9ff;
  font-family: "JetBrains Mono", Menlo, monospace;
  font-size: 13px;
  line-height: 1.8;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--primary));
  color: var(--white);
  padding: 86px 0 72px;
}

.page-hero h1 {
  max-width: 860px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background:
    radial-gradient(circle at 28% 24%, rgba(110,243,243,0.18), transparent 24%),
    radial-gradient(circle at 78% 74%, rgba(0,82,204,0.24), transparent 32%),
    linear-gradient(115deg, #4C1D95 0%, var(--primary) 44%, #4C1D95 100%);
  color: var(--white);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.2;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 70%);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% -10%;
  height: 48%;
  background: linear-gradient(to top, #4C1D95 12%, transparent);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 690px;
  padding: 76px 0 310px;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 18px 50px rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.88);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 250ms cubic-bezier(0.22, 1, 0.36, 1),
    background 250ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero-pill:hover,
.about-hero-pill:focus-visible {
  border-color: rgba(110,243,243,0.55);
  background: rgba(255,255,255,0.08);
  outline: none;
  transform: translateY(-1px);
}

.about-hero-pill .material-symbols-outlined {
  font-size: 17px;
}

.about-hero h1 {
  max-width: 780px;
  margin: 26px 0 22px;
  color: #f7f8fa;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.about-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.about-hero-actions .btn {
  min-height: 46px;
  background: #f4f5f7;
  color: #101214;
}

.about-demo-link {
  color: #f7f8fa;
  font-weight: 800;
  transition: color 180ms ease;
}

.about-demo-link:hover,
.about-demo-link:focus-visible {
  color: var(--secondary-soft);
  outline: none;
}

.about-hero-product {
  position: absolute;
  left: max(38px, calc(50% - 680px));
  right: -150px;
  bottom: -118px;
  perspective: 1200px;
}

.about-product-shell {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 310px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background:
    linear-gradient(105deg, rgba(218,226,255,0.1), rgba(110,243,243,0.035)),
    #2E1065;
  box-shadow:
    0 40px 140px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: rotateX(55deg) rotateZ(-7deg) translateY(38px);
  transform-origin: top left;
  overflow: hidden;
}

.about-product-sidebar {
  display: grid;
  align-content: start;
  gap: 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 28px 22px;
}

.about-product-sidebar strong {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.88);
}

.about-product-sidebar span {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 10px;
}

.about-product-sidebar .active {
  background: #f4f5f7;
  color: #101214;
}

.about-product-sidebar .material-symbols-outlined {
  font-size: 18px;
}

.about-product-main {
  padding: 28px;
}

.about-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.86);
  padding-bottom: 20px;
}

.about-product-top span {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
}

.about-product-top small {
  border: 1px solid rgba(110,243,243,0.28);
  border-radius: 999px;
  color: var(--secondary-soft);
  padding: 4px 10px;
  text-transform: uppercase;
}

.about-product-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.about-product-cards div {
  min-height: 130px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  padding: 22px;
}

.about-product-cards small,
.about-product-cards span {
  display: block;
  color: rgba(255,255,255,0.56);
}

.about-product-cards strong {
  display: block;
  margin: 9px 0 14px;
  color: #f7f8fa;
  font-size: 30px;
  line-height: 1;
}

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

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-card {
  padding: 24px;
}

.timeline-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 14px;
}

.form-card {
  padding: 28px;
}

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

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

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

.form-field label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field,
.select-field,
.textarea-field {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--outline-soft);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.textarea-field {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

.field::placeholder,
.textarea-field::placeholder {
  color: var(--outline);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  display: none;
  border-radius: 8px;
  margin-top: 16px;
  padding: 12px 14px;
  font-weight: 700;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: var(--success-bg);
  color: var(--success);
}

.form-status.error {
  background: var(--failed-bg);
  color: var(--failed);
}

.site-footer {
  background: #2E1065;
  color: var(--white);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid p,
.footer-link,
.footer-bottom {
  color: rgba(255,255,255,0.68);
}

.footer-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--secondary-soft);
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 38px;
  padding-top: 22px;
  font-size: 13px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  font-size: 21px;
}

@keyframes drawerIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .t-stagger-line { transition: none !important; }
  .t-panel-slide { transition: none !important; }
  .home-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-actions,
  .nav-panel {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .hero-inner,
  .section-head,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 58px 0 72px;
  }

  .hero-inner-centered {
    padding-bottom: 0;
  }

  .code-panel {
    transform: none;
  }

  .feature-grid,
  .metrics,
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero {
    min-height: 760px;
  }

  .about-hero-inner {
    min-height: 760px;
    padding-bottom: 360px;
  }

  .about-hero-product {
    left: 22px;
    right: -260px;
    bottom: -82px;
  }

  .about-product-shell {
    grid-template-columns: 190px 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    min-height: 66px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .hero-copy,
  .page-copy,
  .section-lede {
    font-size: 16px;
  }

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

  .hero-pill {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-showcase {
    padding: 22px 10px 34px;
  }

  .corner-top-right,
  .corner-bottom-right {
    right: -1px;
  }

  .corner-top-left,
  .corner-bottom-left {
    left: -1px;
  }

  .hero-code {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .panel-grid,
  .feature-grid,
  .metrics,
  .about-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    padding: 60px 0 54px;
  }

  .about-hero {
    min-height: 700px;
  }

  .about-hero-inner {
    min-height: 700px;
    padding: 58px 0 300px;
  }

  .about-hero h1 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .about-hero p {
    font-size: 17px;
  }

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

  .about-demo-link {
    text-align: center;
  }

  .about-hero-product {
    left: 12px;
    right: -520px;
    bottom: -70px;
  }

  .about-product-shell {
    grid-template-columns: 170px 620px;
    min-height: 280px;
    transform: rotateX(58deg) rotateZ(-8deg) translateY(52px);
  }

  .about-product-cards {
    grid-template-columns: repeat(3, 190px);
  }

  .form-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}



