:root {
  --hero-title-h1: clamp(2.5rem, 6vw + 1rem, 5rem);
}

:root,
[data-theme="light"] {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface2: #F5F5F5;
  --surface3: #EBEBEB;
  --ink: #0A0A0A;
  --ink2: #525252;
  --ink3: #8C8C8C;
  --accent: #00B37E;
  --accent-h: #009E6E;
  --accent-soft: rgba(0,179,126,.07);
  --cta: #E84530;
  --cta-h: #D03A25;
  --cta-soft: rgba(232,69,48,.07);
  --dark: #0B0F14;
  --dark2: #141A22;
  --dark3: #1C242E;
  --border: rgba(0,0,0,.1);
  --border2: rgba(0,0,0,.04);
  --shadow: 0 1px 3px rgba(0,0,0,.05), 0 8px 28px rgba(0,0,0,.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,.07), 0 24px 56px rgba(0,0,0,.13);
  --logo-filter: none;
}

[data-theme="dark"] {
  --bg: #0B0F14;
  --surface: #141A22;
  --surface2: #1C242E;
  --surface3: #28313D;
  --ink: #F0F2F5;
  --ink2: #A0A8B4;
  --ink3: #6B7280;
  --accent: #2EE8B5;
  --accent-h: #6AFFD0;
  --accent-soft: rgba(45,212,168,.1);
  --cta: #FF6B55;
  --cta-h: #FF8A78;
  --cta-soft: rgba(240,113,90,.1);
  --dark: #060A0F;
  --dark2: #0B0F14;
  --dark3: #141A22;
  --border: rgba(255,255,255,.08);
  --border2: rgba(255,255,255,.04);
  --shadow: 0 1px 3px rgba(0,0,0,.2), 0 8px 24px rgba(0,0,0,.3);
  --shadow-lg: 0 4px 12px rgba(0,0,0,.3), 0 20px 48px rgba(0,0,0,.4);
  --logo-filter: brightness(0) invert(1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  transition: background .3s, color .3s;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
  line-height: 1.12;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -.03em;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink2);
}

.ctn {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.ctn--rel {
  position: relative;
  z-index: 4;
}

.skip {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--cta);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}

.skip:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    transition-duration: 0.01ms;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
}

.label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.label-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.label-line::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.sub {
  color: var(--ink2);
  font-size: 19px;
  line-height: 1.6;
  max-width: 540px;
}

.tc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1),
  transform .6s cubic-bezier(.22,1,.36,1);
}

.rv.on {
  opacity: 1;
  transform: translateY(0);
}
.no-js .rv {
  opacity: 1;
  transform: none;
  transition: none;
}

.mt-section {
  margin-top: 32px;
}
.f-mb {
  margin-bottom: 6px;
}
.f-mt {
  margin-top: 10px;
}

.sec {
  padding: 100px 0;
}
.sec--alt {
  background: var(--surface);
}
.sec--warm {
  background: #fafaf9;
}
.sec--tinted,
.sec--light {
  background: #f4f6f9;
}

[data-theme="dark"] .sec--warm {
  background: rgba(255,255,255,.02);
}
[data-theme="dark"] .sec--tinted {
  background: rgba(255,255,255,.03);
}

.sec--dark {
  background: #080e1c;
  color: #F0F2F5;
  position: relative;
}

.sec--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
  radial-gradient(ellipse 60% 50% at 10% 50%, rgba(99,102,241,.12), transparent 60%),
  radial-gradient(ellipse 50% 60% at 90% 30%, rgba(14,163,122,.08), transparent 60%);
  pointer-events: none;
}

.sec--dark .ctn {
  position: relative;
  z-index: 1;
}
.sec--dark h2,
.sec--dark h3 {
  color: #F0F2F5;
}
.sec--dark p {
  color: #A0A8B4;
}
.sec--dark .label {
  color: var(--accent);
}

.sec--dark .label-line {
  color: rgba(255,255,255,.5);
}
.sec--dark .label-line::before {
  background: rgba(255,255,255,.3);
}

.sec-head {
  margin-bottom: 48px;
}

.sec-head h2 {
  font-size: clamp(1.8rem, 3.5vw + 1rem, 4rem);
  letter-spacing: -.03em;
  line-height: 1.18;
  margin: 8px 0 14px;
}

.sec-head .sub {
  font-size: 1rem;
}

.sec-tag {
  display: grid;
  grid-template-columns: 22px max-content;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.sec-tag--center {
  justify-content: center;
}

.sec-tag svg {
  color: var(--accent);
  width: 20px;
  height: 20px;
}
#testimonials .sec-tag{
  justify-content: center;

}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font: 600 15px/1 'DM Sans', sans-serif;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform .2s cubic-bezier(.22,1,.36,1),
  box-shadow .3s,
  background .2s;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-pill {
  border-radius: 999px;
  padding: 13px 28px;
}

.btn-cta,
.btn-primary {
  background: var(--cta);
  color: #fff;
}

.btn-cta:hover,
.btn-primary:hover {
  background: var(--cta-h);
  box-shadow: 0 8px 28px rgba(232,69,48,.35);
}

.btn-brand {
  background: var(--accent);
  color: #fff;
}
.btn-brand:hover {
  background: var(--accent-h);
  box-shadow: 0 8px 28px rgba(0,179,126,.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(0,0,0,.18);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn-ghost {
  background: rgba(255,255,255,.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
}

.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.btn-dark-pill:hover {
  background: rgba(255,255,255,.14);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
  transition: background .2s, border-color .2s, color .2s;
}

.btn-icon:hover {
  background: var(--surface3);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}
.theme-toggle--lg {
  width: 36px;
  height: 36px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: background .5s, border-color .4s;
}

.site-header.scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
}

.site-header:not(.over-dark) {
  background: var(--bg);
  border-bottom-color: var(--border);
}

.site-header.over-dark:not(.scrolled):not(.mega-open) .h-logo img {
  filter: brightness(0) invert(1);
}
.site-header.over-dark:not(.scrolled):not(.mega-open) .h-nav > li > a,
.site-header.over-dark:not(.scrolled):not(.mega-open) .h-nav > li > button {
  color: rgba(255,255,255,.8);
}
.site-header.over-dark:not(.scrolled):not(.mega-open) .h-nav > li > a:hover,
.site-header.over-dark:not(.scrolled):not(.mega-open) .h-nav > li > button:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.site-header.over-dark:not(.scrolled):not(.mega-open) .burger {
  color: #fff;
}
.site-header.over-dark:not(.scrolled):not(.mega-open) .burger:hover {
  background: rgba(255,255,255,.1);
}
.site-header.over-dark:not(.scrolled):not(.mega-open) .h-cta {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
}
.site-header.over-dark:not(.scrolled):not(.mega-open) .h-cta:hover {
  background: rgba(255,255,255,.25);
}
.site-header.over-dark:not(.scrolled):not(.mega-open) .btn-icon {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}

.site-header.mega-open {
  background: #fff;
  border-bottom-color: var(--border);
  transition: background .18s;
}
.site-header.mega-open .h-logo img {
  filter: none;
}
.site-header.mega-open .h-nav > li > a,
.site-header.mega-open .h-nav > li > button {
  color: var(--ink2);
  background: none;
}
.site-header.mega-open .h-nav > li > a:hover,
.site-header.mega-open .h-nav > li > button:hover {
  color: var(--ink);
  background: var(--surface2);
}
.site-header.mega-open .btn-icon {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.site-header.mega-open .h-cta {
  background: var(--cta);
  border: none;
  color: #fff;
}

[data-theme="dark"] .site-header.mega-open {
  background: var(--bg);
}

.site-header .ctn {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 4px;
  justify-content: space-between;
}

.h-logo img {
  height: 32px;
  width: auto;
  filter: var(--logo-filter);
  transition: filter .3s;
}

.h-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.h-nav > li {
  position: relative;
}

.h-nav > li > a,
.h-nav > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font: 500 15px/1 'DM Sans', sans-serif;
  color: var(--ink2);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.h-nav > li > a:hover,
.h-nav > li > button:hover,
.h-nav > li > button[aria-expanded="true"] {
  background: transparent;
  color: var(--ink);
}

.chev {
  width: 13px;
  height: 13px;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}

.h-utils {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
}

.theme-toggle {
  position: relative;
  overflow: hidden;
}

.theme-toggle svg {
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .3s;
}

.theme-toggle .sun {
  opacity: 1;
  transform: rotate(0);
}
.theme-toggle .moon {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}

[data-theme="dark"] .theme-toggle .sun {
  opacity: 0;
  transform: rotate(90deg);
}
[data-theme="dark"] .theme-toggle .moon {
  opacity: 1;
  transform: rotate(0);
}

.h-cta {
  padding: 10px 22px;
  font: 600 14px/1 'DM Sans', sans-serif;
  color: #fff;
  background: var(--cta);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.h-cta:hover {
  background: var(--cta-h);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
  border-radius: 10px;
  transition: background .15s;
  margin-left: 4px;
}

.burger:hover {
  background: var(--surface);
}

.burger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.22,1,.36,1),
  opacity .2s,
  width .35s cubic-bezier(.22,1,.36,1);
  transform-origin: right center;
}

.burger span:nth-child(1) {
  width: 20px;
}
.burger span:nth-child(2) {
  width: 14px;
}
.burger span:nth-child(3) {
  width: 20px;
}

body.mo .burger span:nth-child(1) {
  transform: translateY(7px) rotate(-45deg);
  width: 20px;
}
body.mo .burger span:nth-child(2) {
  opacity: 0;
  width: 0;
}
body.mo .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(45deg);
  width: 20px;
}

.mega:not(.mega--full) {
  display: none;
}

.mega--full {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s ease, visibility .22s, transform .22s ease;
  pointer-events: none;
  z-index: 1100;
}

.mega--full.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-full-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 36px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 0.7fr;
  gap: 0 24px;
  align-items: start;
}

.mega-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.mega-col {
  padding: 0 8px;
}

.mega-col-head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.mega-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .12s;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2px;
}

.mega-row:hover {
  background: var(--surface2);
}
.mega-row:hover .mega-row-lbl {
  color: var(--accent);
}

.mega-row-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ink3);
  margin-top: 2px;
  stroke-width: 1.8;
}

.mega-row-lbl {
  font-size: 13.5px;
  font-weight: 550;
  color: var(--ink);
  display: block;
  line-height: 1.3;
  transition: color .12s;
}

.mega-row-desc {
  font-size: 11.5px;
  color: var(--ink3);
  margin-top: 2px;
  display: block;
  line-height: 1.4;
}

.mega-row--plain {
  padding: 6px 10px;
  align-items: center;
}

.mega-row--plain .mega-row-lbl {
  font-size: 13px;
  font-weight: 450;
  color: var(--ink2);
}

.mega-row--plain:hover .mega-row-lbl {
  color: var(--accent);
}

.mega-col-subhead {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink3);
  margin-top: 16px;
  margin-bottom: 4px;
  padding: 0 10px;
}

@media (max-width: 900px) {
  .mega--full {
    display: none;
  }
}

.m-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

body.mo .m-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.m-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg);
  border-left: none;
  z-index: 1001;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(110%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

body.mo .m-nav {
  transform: translateX(0);
  pointer-events: auto;
}

.m-nav-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 2;
}

.m-nav-head-logo {
  display: none;
}

.m-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--surface);
  border: none;
  cursor: pointer;
  color: var(--ink);
  transition: background .15s;
}

.m-nav-close:hover {
  background: var(--border);
}

.m-nav-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.m-nav-body {
  flex: 1;
  padding: 12px 0 24px;
}

.m-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font: 500 17px/1.2 'DM Sans', sans-serif;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s, color .15s;
  opacity: 0;
  transform: translateX(16px);
}

.m-nav-item:hover {
  background: var(--surface);
  color: var(--accent);
}
body.mo .m-nav-item {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .3s, transform .3s, background .15s, color .15s;
}

body.mo .m-nav-item:nth-child(1) {
  transition-delay: .06s;
}
body.mo .m-nav-item:nth-child(2) {
  transition-delay: .10s;
}
body.mo .m-nav-item:nth-child(3) {
  transition-delay: .14s;
}
body.mo .m-nav-item:nth-child(4) {
  transition-delay: .18s;
}
body.mo .m-nav-item:nth-child(5) {
  transition-delay: .22s;
}

.m-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font: 500 17px/1.2 'DM Sans', sans-serif;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background .15s, color .15s;
  opacity: 0;
  transform: translateX(16px);
}

.m-acc-btn:hover {
  background: var(--surface);
}
body.mo .m-acc-btn {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .06s;
}

.m-acc-btn[aria-expanded="true"] {
  color: var(--accent);
}
.m-acc-btn[aria-expanded="true"] .m-acc-icon {
  transform: rotate(180deg);
}

.m-acc-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}

.m-acc-icon line,
.m-acc-icon path {
  stroke: var(--ink2);
  stroke-width: 2;
  stroke-linecap: round;
}

.m-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,1,.36,1);
  background: var(--surface);
}

.m-acc-panel.open {
  max-height: 1200px;
}

.m-acc-group-lbl {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  padding: 20px 20px 6px;
  display: block;
}

.m-acc-sub-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink3);
  padding: 14px 20px 4px;
  display: block;
}

.m-acc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 28px;
  font: 400 15px/1.3 'DM Sans', sans-serif;
  color: var(--ink2);
  text-decoration: none;
  transition: color .15s, padding-left .2s;
  border-left: 2px solid transparent;
}

.m-acc-link:hover {
  color: var(--accent);
  padding-left: 36px;
  border-left-color: var(--accent);
}

.m-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 20px;
}

.m-nav-foot {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font: 600 15px/1 'DM Sans', sans-serif;
  color: #fff;
  background: var(--cta);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .3s .35s, transform .3s .35s, background .2s;
  opacity: 0;
  transform: translateY(8px);
}

body.mo .m-cta {
  opacity: 1;
  transform: translateY(0);
}
.m-cta:hover {
  background: var(--cta-h);
  transform: translateY(-1px);
}

.m-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 400 13px/1 'DM Sans', sans-serif;
  color: var(--ink2);
}

@media (max-width: 900px) {
  .h-nav {
    display: none;
  }
  .h-cta {
    display: flex;
    padding: 8px 16px;
    font-size: 13px;
  }
  .burger {
    display: flex;
    margin-left: 8px;
  }
  .m-backdrop {
    display: block;
  }
  .h-utils .btn-icon {
    display: none;
  }
}

.hero--aurora {
  background: #020818;
  min-height: 100vh;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.aur-l {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aur-l1 {
  background: radial-gradient(ellipse 130% 150% at -5% -5%, rgba(255,90,10,1) 0%, rgba(230,50,0,.7) 25%, rgba(180,20,0,.3) 50%, transparent 70%);
}
.aur-l2 {
  background: radial-gradient(ellipse 140% 130% at 105% 105%, rgba(20,50,240,.85) 0%, rgba(50,10,200,.55) 30%, rgba(80,20,160,.25) 55%, transparent 70%);
}
.aur-l3 {
  background: radial-gradient(ellipse 110% 110% at 50% 50%, rgba(120,20,200,.45) 0%, rgba(80,10,150,.2) 45%, transparent 70%);
}
.aur-l4 {
  background: radial-gradient(ellipse 90% 80% at 10% 90%, rgba(200,20,120,.45) 0%, rgba(160,10,80,.2) 45%, transparent 68%);
}
.aur-l5 {
  background: radial-gradient(ellipse 80% 70% at 90% 10%, rgba(80,120,255,.35) 0%, rgba(40,80,220,.15) 45%, transparent 65%);
}

.aur-noise {
  position: absolute;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.aur-shapes {
  display: none;
}
.aur-sh {
  position: absolute;
}
.aur-sh--orbit1 {
  width: 300px;
  height: 300px;
  top: 5%;
  right: 3%;
  opacity: .22;
}

.hero-h1-white {
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.hero-h1-grad {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #c084fc 0%, #e879f9 30%, #f97316 65%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-full-wrap {
  padding: 20px 0 72px;
}

.hero-full-wrap h1 {
  margin: 20px 0 24px;
  font-size: var(--hero-title-h1);
  line-height: 1.1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
}

.hero-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00B37A;
  flex-shrink: 0;
}

.hero-full-wrap p {
  font-size: clamp(13px, 3vw + 16px, 22px);
  color: #fff;
  line-height: 1.55;
  margin: 0 0 28px;
  width: 80%;
}

.hero-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 1;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  color: rgba(240,242,245,.55);
}

.hero-pill svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero--aurora {
    padding: 100px 0 60px;
  }
}

.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink3);
  white-space: nowrap;
}

.trust-techs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-techs span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  padding: 5px 12px;
  background: var(--surface2);
  border-radius: 8px;
  white-space: nowrap;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.who-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.who-card h3 {
  font-size: 1.05rem;
  font-weight: 680;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--ink);
}
.who-card p {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--ink2);
  margin: 0 0 24px;
}

.who-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: .8125rem;
  font-weight: 550;
  color: var(--accent);
  text-decoration: none;
  transition: gap .15s;
}
.who-card-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.who-card-cta:hover {
  gap: 10px;
}

@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 700px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 420px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ── What we do / service cards ───────────────────────────── */
.sec--services {
  background: #fff;
  padding: 120px 0;
}

.sec--services .sec-head h2 {
  font-size: clamp(2.8rem, 4vw + 1rem, 5.2rem);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.nsvc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 80px;
}

/* ripple rings keyframe */
@keyframes nsvc-ripple {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(3.2); opacity: 0;   }
}

.nsvc {
  display: block;
  text-decoration: none;
  padding: 40px 44px 36px;
  border-radius: 20px;
  background: #f3f4f4;
  position: relative;
  overflow: hidden;
  transition: transform .42s cubic-bezier(.22,.68,0,1.15), background .42s, box-shadow .42s;
  will-change: transform;
}

/* per-card radial glow overlay */
.nsvc::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 75%;
  height: 140%;
  opacity: 0;
  transition: opacity .42s, top .42s;
  pointer-events: none;
  border-radius: 50%;
}

/* card 1 — Web: purple-indigo */
.nsvc-grid .nsvc:nth-child(1)::before {
  background: radial-gradient(circle, rgba(110,70,255,.3) 0%, transparent 68%);
}
.nsvc-grid .nsvc:nth-child(1):hover {
  background: linear-gradient(145deg, #0e0424 0%, #1c0f4a 45%, #0a1840 100%);
  box-shadow: 0 24px 60px rgba(90,50,200,.35), 0 0 0 1px rgba(110,70,255,.2);
}

/* card 2 — Hire: dark teal-navy */
.nsvc-grid .nsvc:nth-child(2)::before {
  background: radial-gradient(circle, rgba(0,170,210,.28) 0%, transparent 68%);
}
.nsvc-grid .nsvc:nth-child(2):hover {
  background: linear-gradient(145deg, #021820 0%, #073040 45%, #04121e 100%);
  box-shadow: 0 24px 60px rgba(0,100,160,.35), 0 0 0 1px rgba(0,170,210,.2);
}

/* card 3 — AI: forest-teal */
.nsvc-grid .nsvc:nth-child(3)::before {
  background: radial-gradient(circle, rgba(0,185,120,.26) 0%, transparent 68%);
}
.nsvc-grid .nsvc:nth-child(3):hover {
  background: linear-gradient(145deg, #041510 0%, #0b2a1c 45%, #031420 100%);
  box-shadow: 0 24px 60px rgba(0,120,80,.35), 0 0 0 1px rgba(0,185,120,.2);
}

/* card 4 — Mobile: deep violet */
.nsvc-grid .nsvc:nth-child(4)::before {
  background: radial-gradient(circle, rgba(140,50,230,.28) 0%, transparent 68%);
}
.nsvc-grid .nsvc:nth-child(4):hover {
  background: linear-gradient(145deg, #0d0422 0%, #1c094e 45%, #0c0a38 100%);
  box-shadow: 0 24px 60px rgba(100,30,180,.35), 0 0 0 1px rgba(140,50,230,.2);
}

/* shared hover behaviour */
.nsvc:hover {
  transform: scale(1.028) translateY(-6px);
}

.nsvc:hover::before {
  opacity: 1;
  top: -20%;
}

/* ── head: title left, icon right ── */
.nsvc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

/* ── icon wrapper + ripple rings ── */
.nsvc-icon-wrap {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* two concentric rings expand from the icon on hover */
.nsvc-icon-wrap::before,
.nsvc-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.65);
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}

.nsvc:hover .nsvc-icon-wrap::before {
  animation: nsvc-ripple 1.7s ease-out infinite;
}

.nsvc:hover .nsvc-icon-wrap::after {
  animation: nsvc-ripple 1.7s ease-out infinite .65s;
}

.nsvc-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: color .42s;
}

.nsvc:hover .nsvc-icon {
  color: #fff;
}

.nsvc-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--accent);
  line-height: 1.1;
  transition: color .42s;
}

.nsvc:hover .nsvc-title {
  color: #fff;
}

.nsvc-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #1a1a1a;
  margin: 0 0 22px;
  transition: color .42s;
}

.nsvc:hover .nsvc-desc {
  color: rgba(255,255,255,.82);
}

.nsvc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nsvc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #888;
  transition: color .42s;
}

.nsvc:hover .nsvc-list li {
  color: rgba(255,255,255,.62);
}

.nsvc-check {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
  transition: color .42s;
}

.nsvc:hover .nsvc-check {
  color: rgba(255,255,255,.7);
}

.nsvc-foot {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--accent);
  transition: color .42s;
}

.nsvc:hover .nsvc-foot {
  color: #fff;
}

@media (max-width: 900px) {
  .nsvc-grid { gap: 14px; }
  .nsvc { padding: 32px 36px 28px; }
  .nsvc-title { font-size: 22px; }
}

@media (max-width: 700px) {
  .nsvc-grid { grid-template-columns: 1fr; gap: 14px; }
  .nsvc { padding: 32px 28px 28px; }
  .sec--services { padding: 80px 0; }
}

.eng-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.eng-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  border-top: 3px solid transparent;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s;
}

.eng-card:nth-child(1) {
  border-top-color: #6366f1;
}
.eng-card:nth-child(2) {
  border-top-color: #22c55e;
}
.eng-card:nth-child(3) {
  border-top-color: #f59e0b;
}
.eng-card:nth-child(4) {
  border-top-color: #ec4899;
}
.eng-card:hover {
  transform: translateY(-2px);
}

.eng-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240,242,245,.4);
}

.eng-card h3 {
  font-size: 1.1rem;
  font-weight: 680;
  color: #f0f2f5;
  margin: 8px 0 0;
}
.eng-best {
  font-size: .82rem;
  color: rgba(240,242,245,.55);
  font-style: italic;
  line-height: 1.4;
  margin-top: 8px;
}
.eng-card p {
  font-size: .875rem;
  color: rgba(240,242,245,.7);
  line-height: 1.6;
  margin: 4px 0 0;
  flex: 1;
}

.eng-note {
  font-size: .78rem;
  color: rgba(240,242,245,.4);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
  margin-top: 4px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .eng-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .eng-grid {
    grid-template-columns: 1fr;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-left: 3px solid transparent;
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color .2s, background .2s;
}

.why-card:hover {
  border-left-color: var(--accent);
  background: rgba(255,255,255,.08);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f0f2f5;
  margin: 0 0 10px;
}

.why-card p {
  font-size: .9rem;
  color: rgba(240,242,245,.62);
  line-height: 1.65;
  margin: 0;
}

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

.speed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.speed-step {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}

.speed-step:last-child {
  border-right: none;
}

.speed-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 20px;
  height: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speed-arrow svg {
  width: 10px;
  height: 10px;
  stroke: var(--ink3);
}
.speed-step:last-child .speed-arrow {
  display: none;
}

.speed-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.speed-step h4 {
  font-size: .95rem;
  font-weight: 680;
  color: var(--ink);
  margin: 0 0 8px;
}
.speed-step p {
  font-size: .85rem;
  color: var(--ink2);
  margin: 0;
  line-height: 1.6;
}
.speed-time {
  display: inline-block;
  margin-top: 14px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 800px) {
  .speed-grid {
    grid-template-columns: 1fr 1fr;
  }
  .speed-step {
    border-bottom: 1px solid var(--border);
  }
  .speed-step:nth-child(even) {
    border-right: none;
  }
  .speed-arrow {
    display: none;
  }
}

@media (max-width: 460px) {
  .speed-grid {
    grid-template-columns: 1fr;
  }
  .speed-step:nth-child(even) {
    border-right: none;
  }
}

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

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.case-card p{
  margin-bottom:20px;
}

.case-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;

  background:
  radial-gradient(circle at 20% 20%, rgba(120,80,255,.35), transparent 35%),
  radial-gradient(circle at 80% 20%, rgba(255,120,160,.25), transparent 30%),
  linear-gradient(135deg, #13111c 0%, #1a1830 45%, #201226 100%);
}

.case-thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform .45s ease;
  filter: contrast(1.02) saturate(1.05) brightness(0.78);
}

.case-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
  radial-gradient(circle at 15% 20%, rgba(181,103,255,.65), transparent 28%),
  radial-gradient(circle at 55% 18%, rgba(255,112,166,.55), transparent 30%),
  radial-gradient(circle at 88% 15%, rgba(255,149,77,.52),  transparent 26%),
  linear-gradient(90deg, rgba(176,95,255,.30) 0%, rgba(255,111,168,.28) 48%, rgba(255,149,77,.24) 100%);
}

.case-body {
  padding: 24px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.case-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface2);
  color: var(--ink2);
  display: block;
}

.case-tags span:first-child {
  background: rgba(14,163,122,.12);
  color: #0a8a66;
}
.case-tags span:last-child {
  background: rgba(109,92,199,.14);
  color: #5448b0;
}

.case-card h3 {
  font-size: 26px;
  margin: 15px 0;
  line-height: 1.3;
  color: var(--ink);
}
.case-card p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.55;
}

.case-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.case-meta span {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 10px;
  color: #0a1a2e;
  border: 1px solid #e9e9e9;
}

.case-meta strong {
  text-transform: uppercase;
  font-size: 10px;
  display: block;
  width: 100%;
}

em.case-outcome {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
  display: block;
  font-size: .9em;
  margin-bottom: 2px;
}

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

.cases-grid--2col {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) {
  .cases-grid--2col {
    grid-template-columns: 1fr;
  }
}

.cases-cta {
  padding: 32px 0 0;
}

.cases-cta__inner {
  position: relative;
  overflow: hidden;
  padding: 56px 24px;
  background:
  radial-gradient(circle at 12% 18%, rgba(164,93,255,.22), transparent 26%),
  radial-gradient(circle at 52% 12%, rgba(255,113,170,.18), transparent 24%),
  radial-gradient(circle at 88% 20%, rgba(255,155,84,.18),  transparent 22%),
  linear-gradient(135deg, #121222 0%, #17152b 45%, #1c1630 100%);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

.cases-cta__title {
  margin: 0 auto 14px;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  font-weight: 700;
  color: #ffffff;
}

.cases-cta__text {
  margin: 0 auto;
  max-width: 620px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}

.cases-cta__actions {
  margin-top: 28px;
}

.cases-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #151525;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 30px rgba(255,255,255,.14);
}

.cases-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255,255,255,.18);
}

.cases-cta__note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 860px) {
  .cases-cta__inner {
    padding: 40px 20px;
    border-radius: 20px;
  }
  .cases-cta__button {
    width: 100%;
    max-width: 320px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-txt {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink2);
}

.about-txt--mt {
  margin-top: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.about-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}

.about-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat span {
  font-size: 13px;
  color: var(--ink3);
}

@media (max-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-timeline {
  position: relative;
  padding-left: 76px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(0,179,122,.12) 100%);
}

.abt-item {
  position: relative;
  padding-bottom: 22px;
}

.abt-item:last-child {
  padding-bottom: 0;
}

.abt-dot {
  position: absolute;
  left: -76px;
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eaf8f3;
  border: 1.5px solid rgba(0,179,122,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.abt-dot svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.abt-dot--today {
  width: 52px;
  height: 52px;
  left: -76px;
  top: 0;
  background: #d5f2e7;
  box-shadow: 0 0 0 5px rgba(0,179,122,.1);
}

.abt-dot--today svg {
  width: 20px;
  height: 20px;
}

.abt-year {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 3px;
}

.abt-year--today {
  font-size: 1.7rem;
  font-weight: 600;
}

.abt-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.abt-desc {
  font-size: .855rem;
  color: var(--ink2);
  line-height: 1.6;
  max-width: 480px;
}

.abt-item--today .abt-title {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


.timeline {
  position:relative;
  max-width:700px;
  margin:0 auto;
  padding-left:32px;
}
.timeline::before {
  content:'';
  position:absolute;
  left:7px;
  top:8px;
  bottom:8px;
  width:2px;
  background:var(--border);
}
.tl-item {
  position:relative;
  padding:0 0 36px 28px;
}
.tl-item:last-child {
  padding-bottom:0;
}
.tl-item::before {
  content:'';
  position:absolute;
  left:-26px;
  top:6px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--accent);
  border:3px solid var(--bg);
  z-index:1;
}
.tl-year {
  font-size:13px;
  font-weight:700;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.tl-item h4 {
  font-size:18px;
  font-weight:600;
  margin:4px 0 6px;
}
.tl-item p {
  font-size:15px;
  color:var(--ink2);
  line-height:1.6;
  margin:0;
}

.team-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  max-width:780px;
  margin:0 auto;
}
.team-card{
  padding: 30px;
  background:var(--surface);
  border:1px solid var(--border);

}
.team-header {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-meta {
  min-width: 0;
}

.team-card h4 {
  font-size: 18px;
  margin: 0 0 4px;
  overflow-wrap: anywhere;
}

.team-card .team-role {
  font-size: 13px;
  color: var(--ink2);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.team-card .team-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  transition: color .2s;
}

.team-card .team-link:hover {
  color: var(--accent-h);
}

.team-card .team-link svg {
  width: 14px;
  height: 14px;
}

.team-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

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

.values-list {
  max-width:700px;
  margin:0 auto;
}
.value-item {
  display:flex;
  gap:20px;
  padding:28px 0;
  border-bottom:1px solid var(--border);
}
.value-item:last-child {
  border:0;
}
.value-num {
  font-family:'DM Sans',sans-serif;
  font-size:40px;
  font-weight:700;
  color:var(--accent);
  line-height:1;
  flex-shrink:0;
  width:50px;
}
.value-item h3 {
  font-size:20px;
  margin:0 0 6px;
}
.value-item p {
  font-size:15px;
  color:var(--ink2);
  line-height:1.6;
  margin:0;
}
@media(max-width:520px) {
  .value-item {
    flex-direction:column;
    gap:8px;
  }
  .value-num {
    font-size:32px;
  }
}

.geo-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:700px;
  margin:0 auto;
}
.geo-card {
  padding:28px 24px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:14px;
}
.geo-card h4 {
  font-size:17px;
  margin:0 0 6px;
}
.geo-card p {
  font-size:15px;
  color:var(--ink2);
  line-height:1.6;
  margin:0;
}
@media(max-width:520px) {
  .geo-grid {
    grid-template-columns:1fr;
  }
}

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

.val-card {
  padding: 32px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s, transform .3s;
}

.val-card:hover {
  border-color: rgba(255,255,255,.14);
  transform: translateY(-3px);
}
.val-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: #F0F2F5;
}
.val-card p {
  color: #A0A8B4;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .val-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .val-grid {
    grid-template-columns: 1fr;
  }
}

.hww {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
}

.hww-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--surface2);
}

.hww-tab {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  font-family: inherit;
  color: var(--ink2);
  transition: background .2s, color .2s;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hww-tab:last-child {
  border-bottom: none;
}
.hww-tab:hover {
  background: var(--bg);
}
.hww-tab.active {
  background: var(--bg);
  color: var(--ink);
}

.hww-tab.active::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
}

.hww-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface3);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink3);
  flex-shrink: 0;
  transition: background .3s, color .3s;
}

.hww-tab.active .hww-num {
  background: var(--accent);
  color: #fff;
}

.hww-tab-text {
  min-width: 0;
}
.hww-tab-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
  display: block;
}
.hww-tab-hint {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.4;
  display: block;
}
.hww-tab.active .hww-tab-hint {
  color: var(--ink2);
}

.hww-panels {
  position: relative;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hww-panel {
  display: none;
}
.hww-panel.active {
  display: block;
}

.hww-panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.hww-panel-icon .ico {
  width: 28px;
  height: 28px;
}

.hww-icon--accent {
  background: var(--accent-soft);
}
.hww-icon--indigo {
  background: rgba(99,102,241,.08);
}
.hww-icon--amber {
  background: rgba(245,158,11,.08);
}
.hww-icon--cta {
  background: var(--cta-soft);
}
.hww-icon--green {
  background: rgba(34,197,94,.08);
}

.hww-icon--accent svg {
  color: var(--accent);
}
.hww-icon--indigo svg {
  color: #6366F1;
}
.hww-icon--amber svg {
  color: #F59E0B;
}
.hww-icon--cta svg {
  color: var(--cta);
}
.hww-icon--green svg {
  color: #22C55E;
}

.hww-panel h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.hww-panel p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink2);
  margin-bottom: 16px;
}

.hww-panel-detail {
  font-size: 16px;
  color: var(--ink3);
  line-height: 1.6;
  padding: 14px 16px;
  background: var(--surface2);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}

.hww-panel-detail strong {
  color: var(--ink2);
  font-weight: 600;
}

.hww-progress {
  height: 3px;
  background: var(--surface3);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.hww-progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width .4s cubic-bezier(.22,1,.36,1);
  border-radius: 0 3px 3px 0;
}

@media (max-width: 860px) {
  .hww {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hww-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 4px;
    gap: 4px;
  }
  .hww-tab {
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 10px 8px;
    border-bottom: none;
    border-radius: 10px;
    gap: 6px;
    text-align: center;
  }
}

.faq,
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s;
  margin-bottom: 8px;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-q,
.faq-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.faq-q::after,
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s;
}

.faq-item[open] .faq-q::after,
.faq-item[open] summary::after {
  content: '−';
}

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

.faq-a,
.faq-item > p {
  padding: 0 20px 18px;
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.7;
  margin: 0;
}

.faq-a p {
  margin: 0;
}

.cta-end {
  position: relative;
  text-align: center;
  padding: 100px 24px;
  overflow: hidden;
  background:
  radial-gradient(circle at 12% 18%, rgba(164,93,255,.22), transparent 26%),
  radial-gradient(circle at 52% 12%, rgba(255,113,170,.18), transparent 24%),
  radial-gradient(circle at 88% 20%, rgba(255,155,84,.18),  transparent 22%),
  linear-gradient(135deg, #121222 0%, #17152b 45%, #1c1630 100%);
}

.cta-end::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(99,102,241,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-end h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 600px;
  margin: 0 auto 16px;
  color: #F0F2F5;
  position: relative;
  z-index: 1;
}

.cta-end p {
  color: #A0A8B4;
  font-size: 19px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.cta-end .btn {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.5);
  padding: 60px 0 28px;
  font-size: 15px;
  background:
  radial-gradient(circle at 15% 80%, rgba(164,93,255,.16), transparent 30%),
  radial-gradient(circle at 55% 90%, rgba(255,113,170,.12), transparent 28%),
  radial-gradient(circle at 85% 70%, rgba(255,155,84,.10),  transparent 24%),
  linear-gradient(135deg, #121222 0%, #17152b 45%, #1c1630 100%);
}

.f-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer h5 {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.f-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,.5);
}
.f-contact-row svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer p {
  font-size: 15px;
  color: rgba(255,255,255,.5);
}
.footer a {
  transition: color .2s;
}
.footer a:hover {
  color: var(--accent);
}
.footer ul li {
  padding: 3px 0;
}
.f-company-name {
  color: #F0F2F5;
}

.f-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  position: relative;
  z-index: 1;
}

.f-bot .soc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color .2s, background .2s;
}

.f-bot .soc a:hover {
  border-color: var(--accent);
  background: rgba(14,163,122,.08);
}

@media (max-width: 700px) {
  .f-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .f-bot {
    flex-direction: column;
    gap: 10px;
  }
}

.page-hero {
  position: relative;
  padding: calc(64px + 100px) 0 100px;
  color: #F0F2F5;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1854 30%, #16213e 70%, #0a1628 100%);
}

.page-hero .ctn {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.breadcrumb a:hover {
  color: var(--accent);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.page-hero h1 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #c9a0ff;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: #e8d5b0;
  max-width: 620px;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  min-width: 80px;
}

.hero-stat strong {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 6px 16px;
  }
  .hero-stat strong {
    font-size: 20px;
  }
}

.page-hero .hero-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero--light {
  background: var(--bg);
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.page-hero--light h1 {
  color: var(--ink);
}
.page-hero--light h1 em {
  color: var(--accent);
}
.page-hero--light .hero-sub {
  color: var(--ink2);
}
.page-hero--light .breadcrumb {
  color: var(--ink3);
}
.page-hero--light .breadcrumb a {
  color: var(--ink2);
}

.page-hero--contact {
  position: relative;
  padding: calc(64px + 80px) 0 80px;
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .page-hero--contact {
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
}

.hero-contact-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-contact-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-contact-inner {
  position: relative;
  z-index: 1;
}

.page-hero--contact h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero-contact-grad {
  background: linear-gradient(120deg, #00B37E 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.page-hero--contact .hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: var(--ink2);
  max-width: 560px;
}

.page-hero--contact .breadcrumb {
  color: var(--ink3);
  margin-bottom: 20px;
}

.page-hero--contact .breadcrumb a {
  color: var(--ink2);
}

.light-hero-page .site-header.over-dark:not(.scrolled):not(.mega-open) {
  background: transparent;
  border-bottom-color: transparent;
}

/* ── Case Studies hero ── */
.page-hero--cases {
  position: relative;
  padding: calc(64px + 80px) 0 80px;
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .page-hero--cases {
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
}
.hero-cases-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-cases-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-cases-inner {
  position: relative;
  z-index: 1;
}
.page-hero--cases h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero-cases-grad {
  background: linear-gradient(120deg, #00B37E 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero--cases .hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: var(--ink2);
  max-width: 600px;
}
.page-hero--cases .breadcrumb {
  color: var(--ink3);
  margin-bottom: 20px;
}
.page-hero--cases .breadcrumb a {
  color: var(--ink2);
}
.page-hero--cases .hero-tag {
  color: var(--ink3);
  margin-bottom: 24px;
  margin-top: 0;
}

.light-hero-page .site-header.over-dark:not(.scrolled):not(.mega-open) .h-logo img {
  filter: none;
}

.light-hero-page .site-header.over-dark:not(.scrolled):not(.mega-open) .h-nav > li > a,
.light-hero-page .site-header.over-dark:not(.scrolled):not(.mega-open) .h-nav > li > button {
  color: var(--ink2);
}

.light-hero-page .site-header.over-dark:not(.scrolled):not(.mega-open) .h-nav > li > a:hover,
.light-hero-page .site-header.over-dark:not(.scrolled):not(.mega-open) .h-nav > li > button:hover {
  color: var(--ink);
  background: rgba(0,0,0,0.05);
}

.light-hero-page .site-header.over-dark:not(.scrolled):not(.mega-open) .burger {
  color: var(--ink);
}

.light-hero-page .site-header.over-dark:not(.scrolled):not(.mega-open) .h-cta {
  background: var(--cta);
  border: none;
  color: #fff;
}

.light-hero-page .site-header.over-dark:not(.scrolled):not(.mega-open) .btn-icon {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.12);
  color: var(--ink);
}

.ico {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.ico-lg {
  width: 28px;
  height: 28px;
}

.editorial-list {
  display: flex;
  flex-direction: column;
}

.ed-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
}

.ed-item:last-child {
  border-bottom: none;
}
.ed-item:hover .ed-arrow {
  opacity: 1;
  transform: translateX(4px);
}
.ed-item:hover .ed-title {
  color: var(--accent);
}

.ed-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ed-num {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 8px;
  flex-shrink: 0;
  min-width: 0;
}

.ed-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ed-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}
.ed-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  transition: color .2s;
}
.ed-text {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}

.ed-arrow {
  font-size: 20px;
  color: var(--accent);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  padding-left: 8px;
}

@media (max-width: 860px) {
  .ed-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ed-arrow {
    display: none;
  }
  .ed-title {
    font-size: 18px;
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.tech-group {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 20px 22px;
  transition: background .2s, border-color .2s;
}

.tech-group:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}

.tech-group h4 {
  font-size: 22px;
  font-weight: 700;
  color: #e8d5b0;
  margin-bottom: 8px;
}
.tech-group p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 860px) {
  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.step-item h3 {
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 6px;
  color: var(--ink);
}
.step-item p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow .18s, transform .18s;
}

.feat:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feat-ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  margin-bottom: 16px;
}

.feat-ico .ico {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.feat h3 {
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 8px;
  color: var(--ink);
}
.feat p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}

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

.usecase {
  padding: 28px 24px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.usecase:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.usecase-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  margin-bottom: 14px;
}

.usecase-ico .ico {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.usecase h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.usecase p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}

.svc-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: svcstep;
}

.svc-proc-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.svc-proc-step::before {
  counter-increment: svcstep;
  content: counter(svcstep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.svc-proc-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.svc-proc-step p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5;
  margin: 0;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.svc {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s;
}

.svc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.svc-bar {
  height: 4px;
  width: 100%;
}
.svc-bar--ai {
  background: linear-gradient(90deg, var(--accent), #34D399);
}
.svc-bar--te {
  background: linear-gradient(90deg, #6366F1, #818CF8);
}
.svc-bar--web {
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
}
.svc-bar--mob {
  background: linear-gradient(90deg, #EF4444, #F87171);
}

.svc-body {
  padding: 32px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.svc-desc {
  font-size: 15px;
  color: var(--ink2);
  margin-bottom: 16px;
  line-height: 1.55;
}

.svc-features {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.svc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.6;
  padding: 8px 12px;
  background: var(--surface2);
  border-radius: 8px;
}

.svc-features li .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}

.svc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.svc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: color .2s;
}
.svc-link:hover {
  color: var(--accent-h);
}

.svc-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink3);
  padding: 3px 8px;
  background: var(--surface2);
  border-radius: 6px;
}

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

.cs-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.cs-filter {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink2);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
}

.cs-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cs-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

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

@media (max-width: 1024px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }
}

.cs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}

.cs-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cs-card-head {
  padding: 28px 28px 20px;
  position: relative;
}

.cs-head--web {
  background: linear-gradient(135deg, #0a2a1a, #0d3520);
}
.cs-head--web2 {
  background: linear-gradient(135deg, #1a1a0a, #2a2a0d);
}
.cs-head--ai {
  background: linear-gradient(135deg, #0a1a2e, #0d2040);
}
.cs-head--ai2 {
  background: linear-gradient(135deg, #1a0a28, #200d35);
}
.cs-head--team {
  background: linear-gradient(135deg, #0a1628, #0d1e38);
}
.cs-head--team2 {
  background: linear-gradient(135deg, #1a0a28, #2d1045);
}
.cs-head--mob {
  background: linear-gradient(135deg, #28080a, #350d10);
}

.cs-tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cs-tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
}

.cs-stack {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-family: monospace;
}

.cs-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cs-card-body h2 {
  font-size: 17px;
  font-weight: 650;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.3;
}
.cs-summary {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cs-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.cs-outcome strong {
  display: block;
  font-size: 12px;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.2;
}
.cs-outcome span {
  display: block;
  font-size: 11px;
  color: var(--ink2);
  margin-top: 2px;
  line-height: 1.4;
}

.cs-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cs-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--ink2);
}
.cs-meta-item svg {
  flex-shrink: 0;
  opacity: .5;
}
.cs-nda {
  margin-left: auto;
  background: rgba(14,163,122,.1);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.blog-featured {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-decoration: none;
  transition: box-shadow .18s, transform .18s;
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.blog-featured h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-featured p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 680px;
}
.blog-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

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

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-featured {
    padding: 24px;
  }
  .blog-featured h2 {
    font-size: 20px;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  transition: box-shadow .18s, transform .18s;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.blog-card h3 {
  font-size: 15px;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-card p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card .blog-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

.blog-cat {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
}

.blog-cat--ai {
  background: rgba(14,163,122,.1);
  color: var(--accent);
}
.blog-cat--web {
  background: rgba(99,140,255,.1);
  color: #6366F1;
}
.blog-cat--team {
  background: rgba(245,158,11,.1);
  color: #d97706;
}
.blog-cat--mobile {
  background: rgba(239,68,68,.1);
  color: #dc2626;
}

.blog-date {
  font-size: 12px;
  color: var(--ink3);
}
.blog-read {
  font-size: 12px;
  color: var(--ink3);
}
.blog-coming-soon {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink3);
  border: 1px dashed var(--border);
  border-radius: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.c-form-title {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 28px;
}

.c-nda-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--ink);
  padding: 4px 0;
}

.c-nda-check {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.c-submit {
  align-self: flex-start;
}

.c-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.4;
}

.c-trust-badge svg {
  flex-shrink: 0;
  color: var(--accent);
}

.c-gdpr {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.6;
  margin-top: -4px;
  max-width: 500px;
}

.c-gdpr a {
  color: var(--accent);
}

/* Form submission notices */
.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.form-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.form-notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.form-notice--ok strong {
  color: var(--accent);
  font-size: 18px;
}

.form-notice--ok {
  background: rgba(0, 179, 126, .1);
  border: 1px solid rgba(0, 179, 126, .3);
  color: var(--ink);
}

.form-notice--ok svg {
  color: var(--accent);
}

.form-notice--err {
  background: rgba(232, 69, 48, .07);
  border: 1px solid rgba(232, 69, 48, .25);
  color: var(--ink);
}

.form-notice--err svg {
  color: var(--cta);
}

.form-notice--err a {
  color: var(--cta);
  text-decoration: underline;
}

[data-theme="dark"] .form-notice--ok {
  background: rgba(45, 212, 168, .08);
  border-color: rgba(45, 212, 168, .2);
}

[data-theme="dark"] .form-notice--err {
  background: rgba(255, 107, 85, .08);
  border-color: rgba(255, 107, 85, .2);
}


.c-person-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.c-person-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.c-person-info {
  min-width: 0;
}

.c-person-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.c-person-role {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 10px;
}

.c-person-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-person-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color .15s;
}

.c-person-link:hover {
  color: var(--accent-h);
}

.c-person-link .ico {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.c-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-calendly-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.c-calendly-btn:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
}

.c-calendly-btn svg {
  flex-shrink: 0;
}

.c-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-contacts--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.c-contacts--2col .c-info-block:last-child {
  grid-column: span 2;
}


.c-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.c-field input,
.c-field textarea,
.c-field select {
  padding: 12px 16px;
  font: 400 16px/1.5 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.c-field input:focus,
.c-field textarea:focus,
.c-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.c-field input::placeholder,
.c-field textarea::placeholder {
  color: var(--ink3);
}

.c-field textarea {
  min-height: 120px;
  resize: vertical;
}

.c-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.c-field--err input,
.c-field--err textarea,
.c-field--err select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}
.c-field-error {
  font-size: 13px;
  color: #ef4444;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-field-error svg { flex-shrink: 0; }

.c-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.c-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-info-block {
  padding: 24px;
  background: var(--surface2);
  border-radius: 14px;
}
.c-info-block h4 {
  font-size: 16px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-info-block h4 .ico {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.c-info-block p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}
.c-info-block a {
  color: var(--accent);
  font-weight: 500;
}
.c-info-block a:hover {
  text-decoration: underline;
}

.c-expect {
  padding: 24px;
  background: var(--accent-soft);
  border-radius: 14px;
  border: 1px solid rgba(14,163,122,.12);
}
.c-expect h4 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--accent);
}
.c-expect p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}

.legal-doc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink2);
}
.legal-doc p {
  margin: 0 0 20px;
}
.legal-doc h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 48px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.legal-doc h3 {
  font-size: 17px;
  font-weight: 650;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-doc ul {
  margin: 0 0 20px;
  padding-left: 24px;
}
.legal-doc ul li {
  margin-bottom: 8px;
}
.legal-doc a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-doc strong {
  color: var(--ink);
  font-weight: 600;
}


.sec--proof-dark {
  background: #080e1c;
  padding: 100px 0;
  position: relative;
}

.sec--proof-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
  radial-gradient(ellipse 55% 70% at 0% 50%, rgba(14,163,122,.12), transparent 60%),
  radial-gradient(ellipse 40% 50% at 100% 30%, rgba(99,102,241,.08), transparent 60%);
  pointer-events: none;
}

.proof-dark-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof-dark-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-dark-label {
  color: var(--accent);
}

.proof-dark-label::before {
  background: var(--accent);
}

.proof-dark-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: #f0f2f5;
  margin: 0;
}

.proof-dark-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  max-width: 420px;
  margin: 0;
}

.proof-dark-note {
  font-size: .825rem;
  color: rgba(255,255,255,.3);
  line-height: 1.5;
  margin: 8px 0 0;
}

.proof-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.07);
  border-radius: 16px;
  overflow: hidden;
}

.proof-dark-cell {
  background: rgba(255,255,255,.03);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s;
}

.proof-dark-cell:hover {
  background: rgba(255,255,255,.06);
}

.proof-dark-cell strong {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--accent);
  display: block;
}

.proof-dark-cell span {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .proof-dark-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .proof-dark-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-dark-sub {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .proof-dark-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-accordion {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}

.ai-acc-item {
  border-bottom: 1px solid var(--border);
}

.ai-acc-item:last-child {
  border-bottom: none;
}

.ai-acc-item--open .ai-acc-header {
  background: var(--surface2);
}

.ai-acc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .15s;
}

.ai-acc-header:hover {
  background: var(--surface2);
}

.ai-acc-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent);
  min-width: 24px;
  flex-shrink: 0;
}

.ai-acc-title {
  font-size: 16px;
  font-weight: 650;
  color: var(--ink);
  flex: 1;
  line-height: 1.3;
}

.ai-acc-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--surface2);
  color: var(--ink3);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}

.ai-acc-item--open .ai-acc-badge {
  background: rgba(0,179,126,.1);
  color: var(--accent);
}

.ai-acc-chev {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ink3);
  transition: transform .28s cubic-bezier(.22,1,.36,1), color .15s;
}

.ai-acc-item--open .ai-acc-chev {
  transform: rotate(180deg);
  color: var(--accent);
}

.ai-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.22,1,.36,1);
}

.ai-acc-item--open .ai-acc-body {
  max-height: 500px;
}

.ai-acc-inner {
  padding: 4px 28px 32px 28px;
}

.ai-acc-desc {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  margin: 0 0 24px;
}

.ai-acc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}

.ai-acc-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-acc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.45;
}

.ai-acc-features li::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.ai-acc-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
}

.ai-acc-stack span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink3);
  background: var(--surface2);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

@media (max-width: 700px) {
  .ai-acc-cols {
    grid-template-columns: 1fr;
  }
  .ai-acc-header {
    gap: 10px;
    padding: 18px 20px;
  }
  .ai-acc-inner {
    padding: 4px 20px 28px;
  }
  .ai-acc-badge {
    display: none;
  }
}

.wb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.wb-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s;
}

.wb-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(0,179,126,.2);
}

.wb-card--wide {
  grid-column: span 2;
}

.wb-bar {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
}

.wb-card-body {
  padding: 28px 28px 0;
  flex: 1;
}

.wb-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.wb-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.wb-ico .ico {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.wb-top h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.wb-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.wb-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.wb-features--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
}

.wb-feat {
  border-bottom: 1px solid var(--border);
}
.wb-feat:last-child {
  border-bottom: none;
}

.wb-feat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: 500 13.5px/1.4 'DM Sans', sans-serif;
  color: var(--ink);
  transition: color .15s, background .15s;
}

.wb-feat-btn:hover {
  color: var(--accent);
}

.wb-check {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.wb-feat-btn span {
  flex: 1;
}

.wb-chev {
  width: 14px;
  height: 14px;
  color: var(--ink3);
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.22,1,.36,1), color .15s;
}

.wb-feat.open .wb-chev {
  transform: rotate(180deg);
  color: var(--accent);
}
.wb-feat.open .wb-feat-btn {
  color: var(--accent);
}

.wb-feat-body {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
  transition: max-height .3s cubic-bezier(.22,1,.36,1), padding .3s;
  padding: 0 0 0 26px;
}

.wb-feat.open .wb-feat-body {
  max-height: 120px;
  padding: 0 0 14px 26px;
}

.wb-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}

.wb-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color .15s;
}

.wb-link:hover {
  color: var(--accent-h);
}

.wb-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.wb-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink3);
  background: var(--surface2);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

@media (max-width: 860px) {
  .wb-grid {
    grid-template-columns: 1fr;
  }
  .wb-card--wide {
    grid-column: span 1;
  }
  .wb-features--cols {
    grid-template-columns: 1fr;
  }
}

.ed-acc-item {
  cursor: pointer;
  flex-wrap: wrap;
  row-gap: 0;
  border-radius: 10px;
  padding-left: 16px;
  padding-right: 16px;
  transition: background .2s;
}

.ed-acc-item.open {
  background: rgba(0,0,0,.025);
}
[data-theme="dark"] .ed-acc-item.open {
  background: rgba(255,255,255,.03);
}

.ed-acc-item .ed-arrow {
  opacity: 1;
  color: var(--ink3);
  transition: transform .28s cubic-bezier(.22,1,.36,1), color .15s;
  padding: 0;
  display: flex;
  align-items: center;
}

.ed-acc-item.open .ed-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}
.ed-acc-item:hover .ed-arrow {
  color: var(--accent);
}
.ed-acc-item.open .ed-title {
  color: var(--accent);
}

.ed-acc-body {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.22,1,.36,1);
  grid-column: 1 / -1;
}

.ed-acc-item.open .ed-acc-body {
  max-height: 440px;
}

.ed-acc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  padding: 16px 0 24px;
  align-items: start;
}

.ed-acc-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 132px;
  padding-top: 2px;
}

.ed-acc-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
  border-bottom: 1.5px solid rgba(0,179,126,.3);
  padding-bottom: 2px;
}

.ed-acc-cta:hover {
  color: var(--accent-h);
  border-bottom-color: var(--accent-h);
}

.ed-acc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ed-acc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.55;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.ed-acc-list li:last-child {
  border-bottom: none;
}

.ed-acc-list li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.inline-cta {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .inline-cta {
  background: var(--dark2);
}

.inline-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.inline-cta-text p {
  margin: 0;
}

.inline-cta-q {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.inline-cta-sub {
  font-size: 15px;
  color: var(--ink3);
  margin-top: 4px !important;
}

@media (max-width: 600px) {
  .inline-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.case-result {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.case-result svg {
  width: 15px;
  height: 15px;
  flex-shrink:0;
  color: var(--accent);
}

.inline-cta {
  padding: 48px 0;
}

.icta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.icta-email {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  width: 220px;
  outline: none;
  transition: border-color .2s;
}

.icta-email:focus {
  border-color: var(--accent);
}

.icta-email::placeholder {
  color: var(--ink3);
}

.icta-submit {
  display: inline-block;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  background: var(--cta);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  text-decoration: none;
}

.icta-submit:hover {
  background: var(--cta-h);
}

[data-theme="dark"] .icta-email {
  background: var(--dark3);
  border-color: var(--border);
}

@media (max-width: 768px) {
  .inline-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .icta-form {
    width: 100%;
  }
  .icta-email {
    width: 100%;
    flex: 1;
  }
}

.tq-stage {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
  position: relative;
}

.tq-mark {
  font-size: 88px;
  line-height: .7;
  color: var(--accent);
  opacity: .18;
  font-family: Georgia, serif;
  margin-bottom: -8px;
  user-select: none;
}

.tq-body {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tq-text {
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink2);
  margin: 0;
  transition: opacity .22s ease, transform .22s ease;
}

.tq-fade {
  opacity: 0;
  transform: translateY(6px);
}

.tq-author {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.tq-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.tq-sep {
  color: var(--ink3);
  font-size: 15px;
}

.tq-role {
  font-size: 14px;
  color: var(--ink3);
}

.tq-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.tq-pill {
  font-family: inherit;
  font-size: 13px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--ink3);
  cursor: pointer;
  transition: all .18s;
}

.tq-pill:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.tq-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 600px) {
  .tq-text {
    font-size: 17px;
  }
  .tq-mark {
    font-size: 64px;
  }
}

.icon {
  color: var(--accent);
}
