@import url("https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400&f[]=general-sans@600,500,400&display=swap");

:root {
  --bg: #fcfdff;
  --bg-soft: #f4f7fb;
  --surface: #ffffff;
  --surface-muted: #f5f8fb;
  --surface-strong: #081523;
  --text: #142131;
  --muted: #667586;
  --line: #dde5ee;
  --line-strong: #c8d3e0;
  --shadow: 0 26px 84px rgba(8, 21, 35, 0.09);
  --shadow-soft: 0 18px 48px rgba(8, 21, 35, 0.07);
  --radius-xl: 2rem;
  --radius-2xl: 2.6rem;
  --radius-3xl: 3rem;
  --accent: #081523;
  --accent-soft: #fff3e6;
  --accent-line: #ffd6ae;
  --accent-text: #d96e14;
  --teal-soft: #eefcfb;
  --teal-line: #cfeeea;
  --teal-text: #15786f;
  --max-width: 1180px;
  --ease: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "General Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(233, 246, 255, 0.72), transparent 34%),
    radial-gradient(circle at 84% 0%, rgba(255, 236, 214, 0.44), transparent 22%),
    linear-gradient(180deg, #fdfeff 0%, #f7fafe 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Satoshi", sans-serif;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  min-height: 100vh;
}

.site-shell--home {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 231, 203, 0.72), transparent 20%),
    radial-gradient(circle at 84% 10%, rgba(210, 231, 251, 0.84), transparent 18%),
    radial-gradient(circle at 70% 56%, rgba(231, 250, 247, 0.58), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 34%, #f3f7fb 100%);
}

.site-shell--about {
  background:
    radial-gradient(circle at 14% 10%, rgba(210, 229, 247, 0.86), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(255, 232, 209, 0.76), transparent 18%),
    radial-gradient(circle at 74% 52%, rgba(230, 249, 245, 0.48), transparent 18%),
    linear-gradient(180deg, #f9fcff 0%, #ffffff 36%, #f3f7fb 100%);
}

.site-shell--pipeline {
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 230, 247, 0.88), transparent 20%),
    radial-gradient(circle at 84% 12%, rgba(253, 236, 217, 0.72), transparent 16%),
    radial-gradient(circle at 82% 58%, rgba(232, 250, 247, 0.5), transparent 18%),
    linear-gradient(180deg, #f9fcff 0%, #ffffff 34%, #f3f7fb 100%);
}

.site-shell--qurio {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 234, 212, 0.9), transparent 22%),
    radial-gradient(circle at 84% 10%, rgba(226, 246, 250, 0.74), transparent 18%),
    radial-gradient(circle at 84% 56%, rgba(228, 250, 245, 0.54), transparent 18%),
    linear-gradient(180deg, #fffaf4 0%, #ffffff 34%, #f6fafc 100%);
}

.site-shell--privacy {
  background:
    radial-gradient(circle at 14% 10%, rgba(212, 231, 248, 0.82), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(233, 249, 246, 0.58), transparent 18%),
    linear-gradient(180deg, #f9fcff 0%, #ffffff 34%, #f3f7fb 100%);
}

.shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.stack-lg > * + * {
  margin-top: 1.5rem;
}

.stack-xl > * + * {
  margin-top: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #7d7d84;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--accent {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent-text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background-color var(--ease),
    border-color var(--ease),
    color var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--dark {
  background: var(--surface-strong);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(8, 21, 35, 0.16);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #102338;
}

.button--light {
  background: #ffffff;
  color: var(--text);
  border-color: var(--line);
}

.button--light:hover,
.button--light:focus-visible {
  background: #fafafa;
  border-color: var(--line-strong);
}

.button--soft {
  background: #eef3f8;
  color: var(--text);
}

.button--small {
  padding: 0.75rem 1.15rem;
  font-size: 0.95rem;
}

.icon-button-grid {
  display: flex;
  gap: 0.75rem;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 1.25rem;
}

.section {
  padding: 7rem 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.84), rgba(248, 250, 253, 0.92)),
    radial-gradient(circle at top right, rgba(229, 249, 245, 0.54), transparent 28%);
}

.section--dark {
  background:
    radial-gradient(circle at 18% 16%, rgba(41, 215, 203, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 154, 61, 0.08), transparent 20%),
    linear-gradient(180deg, #081523 0%, #06111c 100%);
  color: #ffffff;
}

.section--hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 7rem;
}

.section--hero-home {
  padding: 10rem 0 8rem;
}

.section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.96), transparent 52%),
    radial-gradient(circle at 14% 14%, rgba(231, 248, 255, 0.6), transparent 22%);
  pointer-events: none;
}

.section--hero-accent::after {
  content: "";
  position: absolute;
  inset: auto auto -9rem 60%;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.09);
  filter: blur(30px);
  pointer-events: none;
}

.hero-center,
.hero-split {
  position: relative;
  z-index: 1;
}

.hero-center {
  max-width: 900px;
  text-align: center;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 4rem;
  align-items: center;
}

.hero-title {
  max-width: 16ch;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 0.98;
}

.hero-center .hero-title {
  margin: 0 auto;
}

.hero-copy {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.65;
}

.hero-center .hero-copy {
  margin: 0 auto;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 3rem;
  align-items: end;
}

.hero-home__content {
  max-width: 44rem;
}

.hero-home__content .hero-title {
  max-width: 11ch;
}

.hero-home__aside {
  display: grid;
  gap: 1rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.98)),
    radial-gradient(circle at top right, rgba(255, 164, 87, 0.18), transparent 40%),
    radial-gradient(circle at 16% 16%, rgba(205, 245, 240, 0.34), transparent 26%);
  border: 1px solid rgba(210, 221, 232, 0.82);
  box-shadow: 0 28px 70px rgba(17, 34, 52, 0.08);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -2rem -4rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(247, 194, 146, 0.22);
  filter: blur(26px);
}

.hero-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #617383;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.02;
}

.hero-panel__copy {
  color: #627080;
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 224, 233, 0.86);
  color: #516172;
  font-size: 0.88rem;
  font-weight: 600;
}

.quick-links {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-link {
  display: grid;
  gap: 0.65rem;
  min-height: 13.5rem;
  padding: 1.4rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(215, 223, 232, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 254, 0.96));
  box-shadow: 0 22px 50px rgba(16, 29, 44, 0.06);
  cursor: pointer;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.quick-link:hover,
.quick-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(13, 28, 44, 0.1);
  border-color: rgba(172, 188, 205, 0.95);
}

.quick-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #effcfb 0%, #fff4e8 100%);
  color: var(--surface-strong);
  font-size: 1.35rem;
}

.quick-link__title {
  font-size: 1.25rem;
}

.quick-link__text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.quick-link__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--surface-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.studio-stage {
  position: relative;
  min-height: 31rem;
  border-radius: 2.7rem;
  border: 1px solid rgba(208, 220, 232, 0.9);
  overflow: hidden;
  padding: 2rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.95)),
    radial-gradient(circle at top right, rgba(255, 170, 96, 0.18), transparent 32%),
    radial-gradient(circle at 20% 16%, rgba(219, 248, 244, 0.44), transparent 26%);
  box-shadow: 0 30px 72px rgba(16, 31, 49, 0.09);
}

.studio-stage::before {
  content: "";
  position: absolute;
  inset: 3rem;
  border: 1px solid rgba(209, 216, 228, 0.75);
  border-radius: 2.2rem;
}

.studio-stage::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -4rem;
  bottom: -5rem;
  border-radius: 999px;
  background: rgba(247, 198, 159, 0.2);
  filter: blur(30px);
}

.studio-stage__core {
  position: relative;
  z-index: 1;
  width: 12rem;
  height: 12rem;
  overflow: hidden;
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 30% 26%, rgba(52, 223, 209, 0.18), transparent 24%),
    linear-gradient(160deg, #081523, #10243a);
  box-shadow: 0 30px 55px rgba(8, 21, 35, 0.26);
}

.studio-stage__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-stage__card {
  position: absolute;
  z-index: 1;
  min-width: 12rem;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 222, 230, 0.95);
  box-shadow: 0 18px 40px rgba(16, 31, 49, 0.08);
}

.studio-stage__card--top {
  top: 1.5rem;
  right: 1.5rem;
}

.studio-stage__card--bottom {
  bottom: 1.5rem;
  left: 1.5rem;
}

.studio-stage__label {
  color: #8a8f9a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-stage__value {
  margin-top: 0.45rem;
  font-family: "Satoshi", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.studio-stage__copy {
  margin-top: 0.3rem;
  color: #6a6f78;
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-summary-card {
  padding: 1.2rem 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(214, 222, 231, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 253, 0.94));
  box-shadow: 0 18px 36px rgba(13, 28, 44, 0.05);
}

.hero-summary-card__label {
  color: #8b8c95;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-summary-card__value {
  margin-top: 0.55rem;
  font-family: "Satoshi", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-summary-card__text {
  margin-top: 0.35rem;
  color: #6c6d75;
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 3.5rem;
}

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

.section-title {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.02;
}

.section-text {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.6rem;
}

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

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

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

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 4rem;
  align-items: center;
}

.content-split--wide {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 10px 32px rgba(8, 21, 35, 0.04);
}

.card--soft {
  background: linear-gradient(180deg, #f7fafc 0%, #f2f6fa 100%);
}

.card--dark {
  background:
    radial-gradient(circle at 18% 16%, rgba(41, 215, 203, 0.1), transparent 22%),
    linear-gradient(180deg, #0a1625 0%, #08131f 100%);
  color: #ffffff;
  border-color: transparent;
}

.card--hover {
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.card--hover:hover,
.card--hover:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: #ccd7e2;
}

.card--interactive {
  cursor: pointer;
}

.card--featured {
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border-color: rgba(214, 223, 232, 0.95);
}

.card--featured::before {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: rgba(224, 246, 242, 0.78);
}

.card-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.card-link--muted {
  color: #5f7182;
}

.card--tint-blue {
  background: linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
  border-color: rgba(205, 220, 235, 0.95);
}

.card--tint-orange {
  background: linear-gradient(180deg, #fffaf5 0%, #fdf0e3 100%);
  border-color: rgba(236, 218, 196, 0.95);
}

.card--tint-dark {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 154, 61, 0.08), transparent 24%),
    linear-gradient(180deg, #121b28 0%, #0a121d 100%);
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #f2f6fa 0%, #eef2f7 100%);
  color: var(--text);
  font-size: 1.45rem;
}

.icon-chip--accent {
  background: var(--accent-soft);
  color: var(--accent-text);
}

.icon-chip--dark {
  background: var(--surface-strong);
  color: #ffffff;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.feature-item iconify-icon {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--text);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  text-align: left;
}

.stat__value {
  font-family: "Satoshi", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.stat__label {
  margin-top: 0.35rem;
  color: #91919b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-stack {
  display: grid;
  gap: 1.7rem;
}

.detail-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-row__icon {
  flex: 0 0 auto;
}

.detail-row h4,
.detail-row h5 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.detail-row p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-top: 2.5rem;
  color: #768596;
}

.contact-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.contact-strip__item a {
  color: var(--text);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(221, 227, 235, 0.72);
  background: rgba(252, 254, 255, 0.82);
  backdrop-filter: saturate(180%) blur(22px);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(10, 24, 40, 0.07);
  border-color: rgba(210, 220, 229, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1rem;
}

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

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background: var(--surface-strong);
}

.brand__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #ffffff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav__group {
  position: relative;
}

.site-nav__group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.85rem;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #657485;
  font-weight: 600;
  transition:
    color var(--ease),
    background-color var(--ease),
    box-shadow var(--ease);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--text);
  background: rgba(8, 21, 35, 0.045);
}

.site-nav__link.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, #102338 0%, #081523 100%);
  box-shadow: 0 12px 24px rgba(8, 21, 35, 0.16);
}

.site-nav__group:hover .site-nav__dropdown,
.site-nav__group:focus-within .site-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  min-width: 13rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.6rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(215, 223, 231, 0.95);
  background: rgba(252, 254, 255, 0.96);
  box-shadow: 0 18px 40px rgba(10, 24, 40, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity var(--ease),
    transform var(--ease);
}

.site-nav__sublink {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  color: #607183;
  font-weight: 600;
  transition:
    color var(--ease),
    background-color var(--ease);
}

.site-nav__sublink:hover,
.site-nav__sublink:focus-visible {
  color: var(--text);
  background: rgba(8, 21, 35, 0.045);
}

.site-nav__sublink.is-active {
  color: var(--text);
  background: rgba(8, 21, 35, 0.06);
}

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(252, 254, 255, 0.92);
  color: var(--text);
  font-size: 1.2rem;
}

.site-nav__mobile {
  display: none;
}

.device-stage-card {
  position: relative;
  padding: 2rem;
  border-radius: 2.6rem;
  background:
    linear-gradient(165deg, rgba(7, 18, 31, 0.96), rgba(10, 28, 46, 0.94)),
    radial-gradient(circle at 12% 12%, rgba(61, 227, 213, 0.18), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(44, 124, 255, 0.14), transparent 28%);
  border: 1px solid rgba(68, 111, 148, 0.34);
  box-shadow: 0 34px 74px rgba(6, 18, 31, 0.22);
}

.spark-scene {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(111, 179, 215, 0.18);
  background:
    radial-gradient(circle at top, rgba(45, 203, 190, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(9, 24, 39, 0.92), rgba(4, 12, 22, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(2, 10, 18, 0.34);
}

.spark-scene::after {
  content: "";
  position: absolute;
  inset: auto 8% 4% 8%;
  height: 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(71, 215, 255, 0.18), rgba(71, 215, 255, 0));
  filter: blur(28px);
  pointer-events: none;
}

.spark-scene__image {
  display: block;
  width: 100%;
  height: auto;
}

.device-badges {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.device-badge {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(83, 129, 163, 0.26);
  background: rgba(6, 20, 34, 0.52);
}

.device-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.95rem;
  background: rgba(38, 221, 208, 0.12);
  color: #7ef6ec;
  font-size: 1.15rem;
}

.device-badge__label {
  color: rgba(234, 244, 250, 0.9);
}

.device-badge__label {
  font-size: 0.92rem;
  color: #6b6057;
  line-height: 1.5;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 25rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(214, 223, 231, 0.95);
  background: linear-gradient(180deg, #f7f9fd 0%, #eff4fb 100%);
  padding: 1.2rem;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.14), transparent 38%),
    radial-gradient(circle at 16% 84%, rgba(73, 225, 211, 0.12), transparent 24%);
}

.product-stage__art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel-box {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2rem;
  display: grid;
  place-items: center;
  font-size: 3rem;
  border: 1px solid rgba(224, 228, 236, 0.95);
  box-shadow: 0 24px 56px rgba(27, 39, 54, 0.08);
}

.panel-box--dark {
  background: var(--surface-strong);
  color: rgba(255, 255, 255, 0.22);
}

.panel-box--light {
  background: #f4f7fb;
  color: #ccccd4;
}

.panel-box--accent {
  background: var(--accent-soft);
  color: #f5b384;
}

.panel-box--offset {
  margin-top: 2.8rem;
}

.panel-box__art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card--warm {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ef 100%);
  border-color: rgba(242, 223, 204, 0.95);
}

.feature-card--cool {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  border-color: rgba(224, 226, 234, 0.95);
}

.pipeline-card {
  padding: 2.4rem;
  border-radius: var(--radius-2xl);
}

.pipeline-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pipeline-badge {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pipeline-badge--active {
  background: var(--surface-strong);
  color: #ffffff;
}

.pipeline-badge--muted {
  background: #f3f3f6;
  color: #8a8a92;
}

.timeline {
  display: grid;
  gap: 1.2rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 1rem;
}

.timeline__track {
  position: relative;
  display: flex;
  justify-content: center;
}

.timeline__track::after {
  content: "";
  position: absolute;
  inset: 1.4rem auto -1rem;
  width: 1px;
  background: var(--line);
}

.timeline__item:last-child .timeline__track::after {
  display: none;
}

.timeline__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: #d4d4db;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(8, 21, 35, 0.06);
}

.timeline__dot.is-live {
  background: var(--surface-strong);
}

.timeline__eyebrow {
  margin-bottom: 0.3rem;
  color: #96969e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline__eyebrow.is-live {
  color: var(--text);
}

.timeline__copy {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.team-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.team-strip__label {
  color: #96969e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-strip__value {
  font-size: 0.92rem;
  font-weight: 700;
}

.avatar-stack {
  display: flex;
  gap: 0.4rem;
}

.avatar-stack span {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d7d7de, #b8b8c0);
}

.legal-copy {
  display: grid;
  gap: 2.2rem;
  padding: 2.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(214, 223, 232, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 253, 0.96));
  box-shadow: 0 24px 50px rgba(11, 26, 41, 0.05);
}

.legal-copy section h2 {
  margin-bottom: 0.9rem;
  font-size: 1.6rem;
}

.legal-copy section p,
.legal-copy section li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-copy section ul {
  display: grid;
  gap: 0.8rem;
  list-style: disc;
  padding-left: 1.25rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 100%;
}

.quote-card__mark {
  color: #5b5b61;
  font-size: 3rem;
}

.quote-card__text {
  font-size: 1.65rem;
  line-height: 1.5;
  font-weight: 500;
}

.quote-card__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.quote-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #242428;
}

.quote-card__meta {
  color: #9f9fa7;
  font-size: 0.95rem;
}

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

.spec-card {
  padding: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(221, 228, 235, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.spec-card__title {
  margin-top: 0.8rem;
  font-size: 1rem;
}

.spec-card__text {
  margin-top: 0.45rem;
  color: #627180;
  font-size: 0.92rem;
  line-height: 1.65;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(214, 223, 232, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 253, 0.92));
  box-shadow: 0 18px 35px rgba(10, 24, 40, 0.05);
}

.cta-banner__title {
  font-size: 1.05rem;
}

.cta-banner__text {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.home-philosophy {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246, 250, 253, 0.98));
  border-color: rgba(213, 222, 231, 0.95);
  box-shadow: 0 25px 60px rgba(12, 27, 42, 0.06);
}

.form-shell {
  max-width: 860px;
  margin: 0 auto;
}

.form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 22px 54px rgba(9, 23, 38, 0.05);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  padding-left: 0.3rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #465567;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 1.3rem;
  background: #f3f7fb;
  color: var(--text);
  transition:
    border-color var(--ease),
    background-color var(--ease),
    box-shadow var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(25, 120, 112, 0.08);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.turnstile-shell {
  margin-top: 1rem;
}

.turnstile-box {
  min-height: 70px;
}

.form-card__helper {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-card__error {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(217, 94, 66, 0.22);
  border-radius: 1rem;
  background: #fff3f0;
  color: #a3402b;
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-card__success {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 18rem;
  text-align: center;
}

.form-card__success .icon-chip {
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(245, 248, 252, 0.98));
}

.site-footer__inner {
  padding: 5rem 0 2rem;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
}

.site-footer__brand {
  max-width: 20rem;
}

.site-footer__copy {
  margin-top: 1rem;
  color: #718194;
  line-height: 1.7;
}

.site-footer__navs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.site-footer__group h5 {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__group nav {
  display: grid;
  gap: 0.65rem;
}

.site-footer__group a {
  color: #607183;
  transition: color var(--ease);
}

.site-footer__group a:hover,
.site-footer__group a:focus-visible {
  color: var(--text);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8edf3;
  color: #8795a4;
  font-size: 0.82rem;
  font-weight: 600;
}

.site-footer__meta {
  display: flex;
  gap: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up 0.65s var(--ease) forwards;
}

.reveal--delay-1 {
  animation-delay: 0.08s;
}

.reveal--delay-2 {
  animation-delay: 0.16s;
}

.reveal--delay-3 {
  animation-delay: 0.24s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-split,
  .content-split,
  .content-split--wide,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-home,
  .quick-links,
  .hero-summary-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer__top {
    flex-direction: column;
  }

  .site-footer__navs {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .shell {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .section {
    padding: 5.5rem 0;
  }

  .section--hero {
    padding: 7.5rem 0 5.5rem;
  }

  .section--hero-home {
    padding-top: 8rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .panel-grid,
  .stats,
  .form-grid,
  .site-footer__navs,
  .quick-links,
  .hero-summary-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav__mobile {
    position: fixed;
    top: 5rem;
    left: 0.75rem;
    right: 0.75rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--ease),
      transform var(--ease);
  }

  .site-nav__mobile.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__mobile a {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: #f4f7fb;
    font-weight: 600;
  }

  .site-nav__mobile a.is-active {
    background: var(--surface-strong);
    color: #ffffff;
  }

  .site-nav__mobile .site-nav__sublink {
    margin-left: 0.75rem;
    min-height: 2.5rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(229, 229, 235, 0.95);
    background: #ffffff;
  }

  .site-nav__mobile .button {
    margin-top: 0.25rem;
  }

  .contact-strip,
  .pipeline-card__head,
  .team-strip,
  .site-footer__bottom,
  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat {
    text-align: center;
  }

  .spark-scene,
  .product-stage {
    min-height: 21rem;
  }
}
