:root {
  --ink: #07111f;
  --ink-2: #0d1828;
  --panel: #122238;
  --panel-2: #172940;
  --text: #eff7ff;
  --muted: #9eb0c7;
  --line: rgba(156, 189, 225, 0.18);
  --blue: #087bff;
  --cyan: #19c7d9;
  --green: #21d697;
  --violet: #7b61ff;
  --amber: #f2a93b;
  --rose: #ff5c7a;
  --paper: #f6f9fc;
  --paper-text: #142033;
  --paper-muted: #617089;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(25, 199, 217, 0.45);
  border-radius: 8px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 22px;
  font-weight: 800;
  box-shadow: inset 0 0 24px rgba(25, 199, 217, 0.12);
}

.brand-text {
  display: grid;
  gap: 0;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-text strong {
  color: #ffffff;
}

.brand-text span {
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover,
.email-link:hover {
  color: var(--cyan);
}

.main-nav a,
.email-link {
  transition:
    color 180ms ease-out,
    opacity 180ms ease-out;
}

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

.language-toggle,
.button {
  min-height: 44px;
  border: 1px solid rgba(25, 199, 217, 0.34);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  transition:
    transform 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out,
    box-shadow 180ms ease-out;
}

.language-toggle {
  min-width: 48px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.language-toggle:hover {
  border-color: rgba(242, 169, 59, 0.56);
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  font-weight: 750;
  box-shadow: 0 16px 34px rgba(8, 123, 255, 0.22);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 36px rgba(8, 123, 255, 0.28),
    0 0 0 1px rgba(242, 169, 59, 0.18);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: rgba(242, 169, 59, 0.5);
  background: rgba(242, 169, 59, 0.08);
}

.section-pad {
  padding: clamp(74px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 74px);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.case-copy p,
.contact-copy p,
.service-large p,
.service-list p,
.timeline p,
.problem-grid p {
  color: var(--muted);
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 32px;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-row {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 180ms ease-out,
    border-color 180ms ease-out,
    color 180ms ease-out;
}

.trust-row span:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 169, 59, 0.42);
  color: #ffffff;
}

.hero-visual {
  position: relative;
}

.hero-showcase {
  display: grid;
  align-content: center;
  min-height: 660px;
  transform: translateY(28px);
}

.showcase-stage {
  position: relative;
  width: min(1040px, 65vw);
  aspect-ratio: 16 / 10.2;
  border-radius: 8px;
  background: #0b1728;
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(156, 189, 225, 0.09);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
  pointer-events: none;
}

.showcase-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.showcase-slide:not(.is-active) .product-frame {
  filter: none;
}

.product-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(156, 189, 225, 0.24);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(156, 189, 225, 0.14);
}

.frame-bar span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.frame-bar strong {
  margin-left: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-frame img {
  width: 100%;
  height: calc(100% - 42px);
  object-fit: cover;
  object-position: top left;
  filter: brightness(1.06) contrast(0.96) saturate(1.02);
}

.brand-finale {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(156, 189, 225, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 123, 255, 0.08), transparent 38%),
    radial-gradient(circle at 72% 58%, rgba(25, 199, 217, 0.16), transparent 34%),
    #02040a;
  box-shadow: none;
}

.brand-finale::before {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.brand-finale-inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 42px;
  text-align: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(25, 199, 217, 0.28);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.brand-lockup-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(25, 199, 217, 0.72);
  border-radius: 8px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 25px;
  font-weight: 800;
}

.brand-lockup-text {
  display: grid;
  justify-items: start;
  line-height: 1.02;
}

.brand-lockup-text strong {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
}

.brand-lockup-text span {
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
}

.brand-finale-inner p {
  max-width: 420px;
  margin: 0;
  color: #b9c8db;
  font-size: 18px;
}

.showcase-controls {
  position: absolute;
  right: 0;
  bottom: 76px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(600px, 64%);
  margin-top: 0;
  border: 1px solid rgba(156, 189, 225, 0.14);
  border-radius: 8px;
  background: rgba(8, 18, 32, 0.9);
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-showcase .metric-strip {
  position: absolute;
  right: 0;
  bottom: -28px;
  z-index: 4;
  width: min(640px, 68%);
  margin-top: 0;
}

.showcase-controls button {
  min-height: 52px;
  padding: 11px 14px;
  border: 0;
  border-right: 1px solid rgba(156, 189, 225, 0.1);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  box-shadow: none;
  cursor: pointer;
  transition:
    color 180ms ease-out,
    background 180ms ease-out,
    opacity 180ms ease-out;
}

.showcase-controls button:last-child {
  border-right: 0;
}

.showcase-controls button:hover,
.showcase-controls button.is-active {
  background: rgba(25, 199, 217, 0.08);
}

.showcase-controls span,
.showcase-controls strong {
  display: block;
}

.showcase-controls span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.showcase-controls strong {
  margin-top: 3px;
  font-size: 15px;
}

.product-concept {
  min-height: 520px;
}

.concept-ui {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  min-height: 470px;
  background:
    linear-gradient(135deg, rgba(8, 123, 255, 0.08), rgba(25, 199, 217, 0.05)),
    #0d1828;
}

.concept-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 18px;
  border-right: 1px solid rgba(156, 189, 225, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.concept-sidebar span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(156, 189, 225, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.concept-sidebar span:nth-child(2) {
  border-color: rgba(25, 199, 217, 0.46);
  background: rgba(25, 199, 217, 0.12);
}

.concept-main {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.concept-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.concept-toolbar small {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concept-toolbar strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 26px;
}

.concept-toolbar > span {
  padding: 8px 10px;
  border: 1px solid rgba(33, 214, 151, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(33, 214, 151, 0.08);
  font-size: 12px;
  font-weight: 800;
}

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

.concept-cards article,
.chart-panel,
.module-stack div {
  border: 1px solid rgba(156, 189, 225, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.concept-cards article {
  padding: 18px;
}

.concept-cards span,
.module-stack span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.concept-cards strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 30px;
}

.concept-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  gap: 12px;
}

.chart-panel {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(rgba(156, 189, 225, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 189, 225, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 100% 42px, 72px 100%;
}

.chart-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18%;
  height: 44%;
  border-right: 4px solid var(--cyan);
  border-bottom: 4px solid var(--cyan);
  border-radius: 0 0 8px 0;
  transform: skewX(-20deg);
  opacity: 0.92;
  box-shadow: 12px 18px 40px rgba(25, 199, 217, 0.18);
}

.module-stack {
  display: grid;
  gap: 12px;
}

.module-stack div {
  padding: 16px;
}

.module-stack strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 14px;
}

.metric-strip {
  position: absolute;
  right: 4%;
  bottom: -34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  width: min(640px, 86%);
}

.metric-strip div {
  padding: 16px;
  border: 1px solid rgba(25, 199, 217, 0.28);
  border-radius: var(--radius);
  background: rgba(13, 24, 40, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.metric-strip strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
}

.metric-strip span {
  color: var(--muted);
  font-size: 12px;
}

.band {
  padding: clamp(74px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--paper-text);
}

.band .eyebrow {
  color: var(--blue);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
}

.values {
  padding-bottom: clamp(28px, 3.5vw, 44px);
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding-top: clamp(38px, 4vw, 56px);
}

.faq .section-heading {
  margin-bottom: 0;
}

.section-heading p,
.band .problem-grid p,
.band .case-copy p {
  color: var(--paper-muted);
}

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

.problem-grid article,
.values-grid article {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(20, 32, 51, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
}

.problem-grid article::before,
.values-grid article::before,
.service-list article::before,
.timeline article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--blue);
  opacity: 0;
  transition: opacity 180ms ease-out;
}

.problem-grid article:hover::before,
.values-grid article:hover::before,
.service-list article:hover::before,
.timeline article:hover::before {
  opacity: 1;
}

.icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 900;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
}

.service-large,
.service-list article,
.timeline article,
.lead-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 190ms ease-out,
    border-color 190ms ease-out,
    background 190ms ease-out,
    box-shadow 190ms ease-out;
}

.service-large {
  min-height: 440px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(8, 123, 255, 0.16), rgba(242, 169, 59, 0.08) 58%, rgba(25, 199, 217, 0.07)),
    rgba(255, 255, 255, 0.04);
}

.service-large h3 {
  max-width: 420px;
  font-size: clamp(28px, 3vw, 42px);
}

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

.service-list article {
  padding: 24px;
  min-height: 210px;
}

.service-list article:hover,
.timeline article:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 199, 217, 0.36);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.service-list article:nth-child(2)::before,
.values-grid article:nth-child(2)::before,
.timeline article:nth-child(2)::before {
  background: var(--green);
}

.service-list article:nth-child(3)::before,
.values-grid article:nth-child(3)::before,
.timeline article:nth-child(3)::before {
  background: var(--amber);
}

.service-list article:nth-child(4)::before,
.values-grid article:nth-child(4)::before,
.timeline article:nth-child(4)::before {
  background: var(--violet);
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.ecosystem .section-heading {
  max-width: 1020px;
}

.ecosystem-core {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-bottom: 26px;
  padding: 24px;
  border: 1px solid rgba(20, 32, 51, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(9, 19, 34, 0.08);
}

.ecosystem-core h3 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}

.ecosystem-core p {
  color: var(--paper-muted);
}

.ecosystem-core img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: top left;
  border: 1px solid rgba(20, 32, 51, 0.14);
  border-radius: 8px;
}

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

.branch {
  overflow: hidden;
  border: 1px solid rgba(20, 32, 51, 0.12);
  border-radius: 8px;
  background: #ffffff;
  transition:
    transform 190ms ease-out,
    box-shadow 190ms ease-out,
    border-color 190ms ease-out;
}

.branch:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 32, 51, 0.2);
  box-shadow: 0 22px 64px rgba(9, 19, 34, 0.12);
}

.branch-copy {
  min-height: 210px;
  padding: 24px;
}

.branch-copy span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 900;
}

.branch-copy h3 {
  font-size: 26px;
}

.branch-copy p {
  color: var(--paper-muted);
}

.tinted-shot {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  background: #0d1828;
}

.tinted-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.tinted-shot::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.02), rgba(7, 17, 31, 0.34)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.tinted-shot img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top left;
  filter: saturate(0.92) contrast(1.04) brightness(0.96);
}

.dual-shot {
  height: 260px;
}

.dual-shot img {
  position: absolute;
  inset: auto;
  max-width: none;
  filter: none;
}

.dual-shot::after {
  display: none;
}

.dual-shot .shot-primary {
  inset: 0;
  width: 100%;
  height: 260px;
}

.dual-shot .shot-secondary {
  right: 16px;
  bottom: 16px;
  width: 58%;
  height: 58%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.crm-dual-shot .shot-primary {
  object-position: top left;
}

.crm-dual-shot .shot-secondary {
  width: 56%;
  height: 60%;
  border-color: rgba(255, 255, 255, 0.88);
}

.tint-violet::after {
  background: rgba(118, 84, 255, 0.34);
}

.tint-green::after {
  background: rgba(21, 185, 131, 0.3);
}

.tint-gold::after {
  background: rgba(219, 156, 46, 0.3);
}

.branch-crm .branch-copy span,
.branch-crm h3 {
  color: #7654ff;
}

.branch-collections .branch-copy span,
.branch-collections h3 {
  color: #009f75;
}

.branch-billing .branch-copy span,
.branch-billing h3 {
  color: #bf7a12;
}

.branch-soon {
  position: relative;
}

.branch-soon .branch-copy span,
.branch-soon h3 {
  color: #718096;
}

.branch-soon:hover {
  transform: none;
}

.soon-shot {
  isolation: isolate;
}

.soon-shot img {
  transform: scale(1.03);
  filter: blur(5px) saturate(0.72) contrast(0.92) brightness(0.84);
}

.soon-shot::before {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.18), rgba(7, 17, 31, 0.62)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.soon-shot::after {
  z-index: 3;
  background: rgba(9, 19, 34, 0.18);
  mix-blend-mode: normal;
}

.soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 24px;
}

.soon-overlay strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--paper-text);
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.case-visuals {
  position: relative;
  min-height: 470px;
}

.case-shot {
  border: 1px solid rgba(20, 32, 51, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(9, 19, 34, 0.22);
}

.case-shot-main {
  width: 92%;
}

.case-shot-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 74%;
}

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

.timeline article {
  min-height: 220px;
  padding: 24px;
}

.timeline span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(25, 199, 217, 0.4);
  border-radius: 999px;
  color: var(--cyan);
  font-weight: 900;
}

.values-grid article {
  min-height: 168px;
  transition:
    transform 190ms ease-out,
    border-color 190ms ease-out,
    box-shadow 190ms ease-out;
}

.values-grid article:first-child {
  grid-column: span 2;
  min-height: 236px;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(8, 123, 255, 0.1), rgba(25, 199, 217, 0.035) 58%, rgba(242, 169, 59, 0.06)),
    #ffffff;
  box-shadow: 0 22px 64px rgba(9, 19, 34, 0.08);
}

.values-grid article:first-child h3 {
  max-width: 560px;
  font-size: clamp(24px, 2.3vw, 34px);
}

.values-grid article:first-child p {
  max-width: 640px;
  font-size: 16px;
}

.values-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 32, 51, 0.18);
  box-shadow: 0 18px 52px rgba(9, 19, 34, 0.08);
}

.values-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.values-grid article:nth-child(2) span,
.values-grid article:nth-child(5) span {
  color: #009f75;
}

.values-grid article:nth-child(3) span,
.values-grid article:nth-child(6) span {
  color: #bf7a12;
}

.values-grid p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: 100%;
}

.faq-list details {
  border: 1px solid rgba(20, 32, 51, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  transition:
    border-color 180ms ease-out,
    box-shadow 180ms ease-out;
}

.faq-list details[open] {
  border-color: rgba(8, 123, 255, 0.22);
  box-shadow: 0 14px 44px rgba(9, 19, 34, 0.07);
}

.faq-list details:hover {
  border-color: rgba(8, 123, 255, 0.18);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 21px 58px 21px 24px;
  color: var(--paper-text);
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(8, 123, 255, 0.18);
  border-radius: 999px;
  color: var(--blue);
  content: "+";
  font-weight: 900;
  transform: translateY(-50%);
  transition:
    background 180ms ease-out,
    color 180ms ease-out,
    transform 180ms ease-out;
}

.faq-list details[open] summary::after {
  background: var(--blue);
  color: #ffffff;
  content: "-";
}

.faq-list summary::marker {
  color: var(--blue);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--paper-muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 74px);
}

.email-link {
  color: var(--cyan);
  font-weight: 800;
}

.contact-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 30px;
}

.contact-trust div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 169, 59, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.contact-trust strong,
.contact-trust span {
  display: block;
}

.contact-trust strong {
  color: #ffffff;
  font-size: 15px;
}

.contact-trust span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(156, 189, 225, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

select option {
  color: var(--paper-text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(25, 199, 217, 0.14);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.lead-honeypot {
  display: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .service-layout,
  .case-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-frame {
    width: 100%;
  }

  .hero-showcase {
    min-height: auto;
    transform: none;
  }

  .showcase-stage {
    width: 100%;
  }

  .showcase-controls {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-showcase .metric-strip {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .product-concept {
    min-height: auto;
  }

  .concept-ui {
    min-height: 430px;
  }

  .metric-strip {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

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

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

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

  .faq .section-heading {
    max-width: 760px;
    margin-bottom: 6px;
  }

  .ecosystem-core,
  .product-branches {
    grid-template-columns: 1fr;
  }

  .case-visuals {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: auto;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .header-actions .button {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

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

  .metric-strip,
  .problem-grid,
  .service-list,
  .timeline,
  .values-grid,
  .lead-form,
  .contact-trust,
  .concept-cards,
  .concept-content {
    grid-template-columns: 1fr;
  }

  .values-grid article:first-child {
    grid-column: auto;
    min-height: 190px;
    padding: 24px;
  }

  .values-grid article:first-child p {
    font-size: 14px;
  }

  .faq-list summary {
    padding: 18px 54px 18px 20px;
  }

  .faq-list p {
    padding: 0 20px 20px;
  }

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

  .showcase-controls button {
    min-height: 52px;
  }

  .brand-finale-inner {
    padding: 24px;
  }

  .brand-finale-inner p {
    font-size: 15px;
  }

  .concept-ui {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .concept-main {
    padding: 16px;
  }

  .concept-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .concept-toolbar strong {
    font-size: 22px;
  }

  .chart-panel {
    min-height: 170px;
  }

  .module-stack div:nth-child(3) {
    display: none;
  }

  .case-visuals {
    min-height: auto;
  }

  .case-shot-main,
  .case-shot-small {
    position: static;
    width: 100%;
  }

  .case-shot-small {
    margin-top: 14px;
  }

  .ecosystem-core {
    padding: 16px;
  }

  .branch-copy {
    min-height: auto;
  }
}
