/* Zero Security — light first; both themes share the same layout and contrast tokens. */
:root {
  color-scheme: light;
  --bg: #fff;
  --text: #11243a;
  --muted: #667387;
  --accent: #315bf5;
  --surface: #f1f5ff;
  --line: #e3e9f1;
  --success: #087c55;
  --success-bg: #e6f6ee;
  --soon: #225bc7;
  --soon-bg: #eaf2ff;
  --max: 1200px;
  --gutter: clamp(20px, 4.4vw, 64px);
  --font:
    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101824;
  --text: #f0f4fc;
  --muted: #aab7cb;
  --accent: #8ca8ff;
  --surface: #1b2941;
  --line: #2c3a4e;
  --success: #a2ebc9;
  --success-bg: #183d32;
  --soon: #b8cfff;
  --soon-bg: #243856;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  font-family: var(--font);
  cursor: pointer;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: #315bf5;
  color: white;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.symbol-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--text);
  color: var(--bg);
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
@supports (backdrop-filter: blur(20px)) {
  .site-header {
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(20px);
  }
}
.bar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.8px;
  white-space: nowrap;
}
.brand-mark {
  width: 35px;
  height: 39px;
  flex: none;
}
.menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.2s;
}
.menu a:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}
.langs {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 28px;
}
.langs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  min-width: 38px;
  height: 34px;
  border-radius: 20px;
  transition:
    color 0.2s,
    background 0.2s;
}
.langs button:hover {
  color: var(--accent);
}
.langs button[aria-pressed="true"] {
  color: var(--accent);
  background: var(--surface);
}
.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.icon-button:hover {
  background: var(--surface);
  border-color: var(--accent);
}
.theme-toggle,
.menu-toggle {
  display: none;
}
.js .theme-toggle {
  display: grid;
}
html:not(.js) .langs {
  display: none;
}
.moon-icon,
[data-theme="dark"] .sun-icon {
  display: none;
}
[data-theme="dark"] .moon-icon {
  display: block;
}
.hero {
  padding-top: clamp(60px, 7vw, 104px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 20px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.eyebrow .section-number {
  color: var(--accent);
  padding-right: 8px;
}
h1 {
  margin: 0;
  font-size: clamp(48px, 5.28vw, 76px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.075;
}
h1 span {
  display: block;
}
.accent {
  color: var(--accent);
}
.hero-lead {
  margin: 28px 0 0;
  max-width: 510px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-primary {
  color: #fff;
  background: #315bf5;
}
.btn-primary:hover {
  background: #2446ca;
  transform: translateY(-2px);
}
.btn-text {
  padding-inline: 0;
  color: var(--accent);
}
.btn-text:hover .icon {
  transform: translateY(3px);
}
.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.hero-art {
  margin: 0 -32px 0 -14px;
  align-self: center;
}
.hero-art img {
  width: 100%;
  height: auto;
}
.capabilities {
  display: flex;
  align-items: center;
  gap: 34px;
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.capabilities span + span {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}
.section {
  padding: 110px 0;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 3.34vw, 48px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.045em;
}
h2 span {
  display: block;
}
h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.9px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}
.section-heading > p {
  width: 290px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
}
.product-featured {
  display: grid;
  grid-template-columns: 0.76fr 1.5fr;
  align-items: center;
  gap: 44px;
}
.product-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 21px 0 0;
}
.product-copy .meta {
  margin-top: 15px;
  font-size: 12px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 24px;
  margin-top: 16px;
  color: var(--success);
  background: var(--success-bg);
}
.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.status.soon {
  color: var(--soon);
  background: var(--soon-bg);
}
.product-visual {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.product-visual:hover img {
  transform: scale(1.035);
}
.product-featured .product-visual {
  aspect-ratio: 2 / 1;
  background: #edf4ff;
}
.product-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
.product-small {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  align-items: center;
}
.product-small h3 {
  font-size: 24px;
}
.product-small .product-visual {
  height: 230px;
  border-radius: 14px;
}
.product-small .product-copy p {
  font-size: 13px;
  margin-top: 17px;
}
.product-small .product-copy .meta {
  font-size: 10px;
}
.product-small .status {
  margin-top: 12px;
}
.product-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.services {
  border-top: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 90px;
}
.services-intro > p:last-child {
  font-size: 16px;
  color: var(--muted);
  max-width: 300px;
  margin-top: 28px;
}
.service {
  border-top: 1px solid var(--line);
}
.service:last-child {
  border-bottom: 1px solid var(--line);
}
.service summary {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 29px 0;
  list-style: none;
  cursor: pointer;
}
.service summary::-webkit-details-marker {
  display: none;
}
.service-number {
  color: var(--muted);
  font-size: 12px;
}
.service-icon {
  width: 27px;
  height: 30px;
  color: var(--accent);
}
.service h3 {
  flex: 1;
  font-size: 24px;
}
.service-toggle {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: var(--accent);
  flex: none;
}
.service-toggle .icon {
  width: 18px;
  height: 18px;
}
.service[open] .plus-vertical {
  display: none;
}
.service-body {
  padding: 0 42px 29px 65px;
}
.service-body p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.service-body .service-tech {
  margin-top: 23px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.contact-section {
  padding: 20px 0 64px;
}
.contact-panel {
  background: var(--surface);
  border-radius: 24px;
  padding: 60px;
  position: relative;
}
.contact-panel h2 {
  max-width: 850px;
  font-size: clamp(36px, 4.1vw, 59px);
}
.contact-panel .contact-lead {
  color: var(--muted);
  font-size: 16px;
  margin: 25px 0 0;
  max-width: 600px;
}
.contact-arrow {
  position: absolute;
  top: 98px;
  right: 64px;
  width: 118px;
  height: 118px;
  color: var(--accent);
  stroke-width: 1;
}
.contact-list {
  display: flex;
  gap: 60px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.contact-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.contact-list .label {
  color: var(--muted);
  font-size: 12px;
}
.contact-list .value {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  padding-bottom: 7px;
  font-size: 16px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-list .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.contact-list a:hover .icon {
  transform: translate(2px, -2px);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
}
footer .brand {
  font-size: 18px;
}
footer .brand-mark {
  width: 29px;
  height: 33px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  font-size: 10px;
}
.footer-legal a {
  text-decoration: none;
  padding-left: 25px;
  border-left: 1px solid var(--line);
}
.footer-legal a:hover {
  color: var(--accent);
}
@media (min-width: 1101px) {
  :root {
    --max: 1392px;
    --gutter: clamp(48px, 4.7vw, 72px);
  }
  .bar {
    height: 100px;
  }
  .brand {
    font-size: 25px;
  }
  .brand-mark {
    width: 42px;
    height: 46px;
  }
  .menu a {
    font-size: 16px;
  }
  .menu {
    gap: 40px;
  }
  .langs button {
    font-size: 12px;
    min-width: 46px;
  }
  .header-actions {
    gap: 23px;
  }
  .hero {
    padding-top: 100px;
  }
  .hero-grid {
    align-items: start;
  }
  .hero-art {
    margin: 0;
    align-self: center;
  }
  h1 {
    font-size: clamp(76px, 6.12vw, 94px);
    line-height: 1.04;
    letter-spacing: -0.055em;
  }
  .hero-lead {
    max-width: 640px;
    font-size: clamp(18px, 1.44vw, 22px);
    line-height: 1.6;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .btn {
    font-size: 15px;
    padding: 17px 24px;
  }
  .btn-text {
    padding-inline: 0;
  }
  .cta {
    gap: 26px;
  }
  .capabilities {
    font-size: 15px;
  }
  .section-heading h2 {
    font-size: 60px;
  }
  .services-intro h2 {
    max-width: 470px;
    font-size: 56px;
  }
  .product-featured .product-copy {
    align-self: start;
    padding-top: 32px;
  }
  .product-featured h3 {
    font-size: 34px;
  }
  .contact-list .value {
    font-size: 19px;
  }
  .footer-legal {
    font-size: 12px;
  }
  .section-heading > p {
    font-size: 18px;
    width: 355px;
  }
  .product-copy p {
    font-size: 17px;
  }
  .product-copy .meta {
    font-size: 14px;
  }
  .product-small .product-copy p {
    font-size: 15px;
  }
  .product-small .product-copy .meta {
    font-size: 11px;
  }
  .product-small h3 {
    font-size: 28px;
  }
  .product-small .product-visual {
    height: 260px;
  }
  .product-small {
    gap: 24px;
  }
  .status {
    font-size: 12px;
  }
  .service h3 {
    font-size: 27px;
  }
  .service-body p {
    font-size: 17px;
  }
  .services-intro > p:last-child {
    font-size: 18px;
  }
  .contact-panel .contact-lead {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .menu {
    gap: 20px;
  }
  .bar {
    gap: 20px;
  }
  .brand {
    font-size: 19px;
  }
  .header-actions {
    gap: 10px;
  }
  .hero-art {
    margin-right: -16px;
  }
  .cta {
    gap: 10px 20px;
  }
  .btn {
    padding: 14px 16px;
  }
  .btn-text {
    padding-inline: 0;
  }
  .services-grid {
    gap: 45px;
  }
  .product-small {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .product-small .product-visual {
    height: 220px;
    grid-row: 1;
  }
  .product-small .product-copy p {
    font-size: 14px;
  }
  .contact-arrow {
    width: 85px;
    height: 85px;
    right: 45px;
  }
  .contact-panel h2 {
    max-width: calc(100% - 75px);
  }
}
@media (max-width: 820px) {
  html {
    scroll-padding-top: 90px;
  }
  .bar {
    height: 76px;
    gap: 15px;
  }
  .brand {
    font-size: 18px;
  }
  .brand-mark {
    width: 30px;
    height: 34px;
  }
  .js .menu-toggle {
    display: grid;
  }
  .menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter);
    justify-content: center;
  }
  .js .menu {
    display: none;
  }
  .js .menu.is-open {
    display: flex;
  }
  html:not(.js) .hero {
    padding-top: 110px;
  }
  .header-actions {
    margin-left: auto;
    gap: 8px;
  }
  .hero {
    padding-top: 54px;
  }
  .hero-grid {
    gap: 8px;
  }
  h1 {
    font-size: clamp(41px, 5.9vw, 48px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-art {
    margin: 0 -20px 0 -14px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.3px;
  }
  .section {
    padding-block: 80px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    width: 235px;
    font-size: 14px;
  }
  .product-featured {
    gap: 28px;
    grid-template-columns: 1fr 1.25fr;
  }
  .product-featured .product-visual {
    aspect-ratio: 1.15;
  }
  h3 {
    font-size: 23px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .services-intro > p:last-child {
    max-width: 420px;
  }
  .contact-panel {
    padding: 40px;
  }
  .contact-list {
    gap: 25px 40px;
  }
  .contact-arrow {
    top: 75px;
    right: 35px;
    width: 60px;
    height: 60px;
  }
  .footer-row {
    align-items: flex-start;
  }
  .footer-legal {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .footer-legal a {
    padding: 0;
    border: 0;
  }
}
@media (max-width: 600px) {
  .bar {
    height: 72px;
  }
  .brand {
    font-size: 16px;
    gap: 7px;
    letter-spacing: -0.5px;
  }
  .brand-mark {
    width: 27px;
    height: 31px;
  }
  .header-actions {
    gap: 6px;
  }
  .langs {
    padding: 2px;
  }
  .langs button {
    min-width: 29px;
    height: 32px;
    font-size: 10px;
  }
  .icon-button {
    width: 36px;
    height: 36px;
  }
  .icon-button .icon {
    width: 18px;
    height: 18px;
  }
  .menu {
    top: 72px;
    gap: 24px;
  }
  .menu a {
    font-size: 13px;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }
  h1 {
    font-size: clamp(41px, 10.8vw, 62px);
    line-height: 1.09;
    letter-spacing: -0.055em;
    max-width: 510px;
  }
  .hero-lead {
    font-size: 15px;
    margin-top: 22px;
    max-width: 420px;
  }
  .cta {
    margin-top: 24px;
    gap: 8px 20px;
  }
  .btn {
    font-size: 12px;
  }
  .hero-art {
    width: min(340px, 94%);
    margin: 12px auto 0;
  }
  .capabilities {
    margin-top: 8px;
    padding-block: 24px;
    gap: 13px;
    font-size: 10px;
    justify-content: space-between;
  }
  .capabilities span + span {
    padding-left: 13px;
  }
  .section {
    padding-block: 64px;
  }
  .eyebrow {
    margin-bottom: 18px;
  }
  h2 {
    font-size: 34px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 22px;
    width: auto;
    max-width: 310px;
  }
  .product-featured {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .product-featured .product-visual {
    aspect-ratio: 1.65;
  }
  .product-copy p {
    font-size: 14px;
    margin-top: 16px;
  }
  .product-pair {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
  }
  .product-small {
    padding: 18px;
    gap: 20px;
  }
  .product-small .product-visual {
    height: auto;
    aspect-ratio: 1.5;
  }
  .product-small .product-copy .meta {
    font-size: 11px;
  }
  .product-note {
    font-size: 11px;
  }
  .service summary {
    gap: 14px;
    padding-block: 24px;
  }
  .service h3 {
    font-size: 19px;
    letter-spacing: -0.5px;
  }
  .service-number {
    font-size: 10px;
  }
  .service-icon {
    width: 23px;
    height: 25px;
  }
  .service-body {
    padding: 0 15px 25px 43px;
  }
  .service-body p {
    font-size: 14px;
  }
  .service-toggle {
    width: 30px;
    height: 30px;
  }
  .contact-section {
    padding-block: 6px 35px;
  }
  .contact-panel {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .contact-panel h2 {
    max-width: none;
    font-size: 34px;
  }
  .contact-arrow {
    display: none;
  }
  .contact-panel .contact-lead {
    font-size: 14px;
    margin-top: 22px;
  }
  .contact-list {
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
  }
  .contact-list a {
    align-items: flex-start;
  }
  .contact-list .value {
    font-size: 13px;
    gap: 9px;
  }
  .footer-row {
    flex-direction: column;
    gap: 20px;
    padding-block: 26px 32px;
  }
  .footer-legal {
    align-items: flex-start;
    gap: 12px;
    font-size: 10px;
  }
}
@media (max-width: 370px) {
  .bar {
    gap: 6px;
  }
  .brand {
    font-size: 14px;
    gap: 5px;
  }
  .brand-mark {
    width: 23px;
  }
  .header-actions {
    gap: 4px;
  }
  .langs button {
    min-width: 25px;
  }
  .icon-button {
    width: 32px;
    height: 34px;
  }
  .service summary {
    gap: 10px;
  }
  .service-icon {
    display: none;
  }
  .capabilities {
    gap: 8px;
    font-size: 9px;
  }
  .capabilities span + span {
    padding-left: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
