:root {
  color-scheme: dark;
  --bg: #070b0d;
  --bg-strong: #0c1216;
  --surface: rgba(12, 20, 24, 0.8);
  --surface-strong: rgba(13, 23, 28, 0.95);
  --surface-soft: rgba(83, 134, 123, 0.05);
  --line: rgba(191, 224, 214, 0.12);
  --line-strong: rgba(191, 224, 214, 0.24);
  --text: #f5f7fb;
  --muted: rgba(205, 220, 215, 0.74);
  --muted-strong: rgba(229, 238, 235, 0.9);
  --accent: #d9eee8;
  --accent-cool: #78b9ab;
  --accent-deep: #1f5d55;
  --accent-soft: rgba(120, 185, 171, 0.16);
  --accent-deep-soft: rgba(31, 93, 85, 0.24);
  --accent-glow: rgba(31, 93, 85, 0.22);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 36px 90px rgba(0, 0, 0, 0.5);
  --glass-blur: 16px;
  --radius-sm: 18px;
  --radius-lg: 32px;
  --max-width: 1200px;
  --header-height: 88px;
  --display-font: "Sora", sans-serif;
  --body-font: "Space Grotesk", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 93, 85, 0.1), transparent 22%),
    radial-gradient(circle at 12% 78%, rgba(20, 61, 56, 0.1), transparent 26%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.042), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.032), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%),
    linear-gradient(135deg, #070b0d 0%, #0b1114 46%, #121b1f 100%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 132px
    );
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: -0.04em;
  color: var(--text);
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100vw - 2.4rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #06080e;
  border-radius: 999px;
  font-weight: 700;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 15, 18, 0.78);
  border-color: rgba(191, 224, 214, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  justify-self: start;
  transition: transform 0.25s var(--ease), opacity 0.25s ease;
}

.brand-mark {
  width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 0.5px rgba(248, 255, 252, 0.72))
    drop-shadow(0 0 4px rgba(31, 93, 85, 0.12));
  opacity: 1;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s var(--ease);
}

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

.brand:hover .brand-mark img {
  filter: drop-shadow(0 0 0.65px rgba(248, 255, 252, 0.82))
    drop-shadow(0 0 5px rgba(31, 93, 85, 0.16));
  opacity: 1;
}

.brand-wordmark {
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 1.8vw, 1.7rem);
  grid-column: 2;
  margin-left: 0;
  justify-self: center;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-deep),
    var(--accent-cool),
    transparent
  );
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  grid-column: 3;
  justify-self: end;
  margin-left: 0;
  padding-left: clamp(1rem, 1.8vw, 1.35rem);
}

.header-actions::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 28px;
  transform: translateY(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(191, 224, 214, 0.36) 22%,
    rgba(120, 185, 171, 0.22) 50%,
    rgba(191, 224, 214, 0.36) 78%,
    transparent 100%
  );
  opacity: 0.9;
}

.locale-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-height: 48px;
  min-width: 118px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.locale-option {
  min-width: 50px;
  height: 38px;
  padding: 0 0.85rem;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.locale-option:hover {
  color: var(--muted-strong);
}

.locale-option.is-active,
.locale-option[aria-pressed="true"] {
  color: #06100f;
  background: linear-gradient(
    135deg,
    rgba(229, 241, 237, 0.96) 0%,
    rgba(149, 208, 194, 0.92) 52%,
    rgba(67, 130, 120, 0.92) 100%
  );
  box-shadow: 0 10px 24px rgba(31, 93, 85, 0.18);
}

.locale-option:focus-visible {
  outline: 2px solid var(--accent-cool);
  outline-offset: 3px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease,
    border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: linear-gradient(
    115deg,
    transparent 32%,
    rgba(255, 255, 255, 0.22) 49%,
    transparent 66%
  );
  transform: translateX(-135%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.btn::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 18px;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 0.45;
}

.btn > * {
  position: relative;
  z-index: 1;
}

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

.btn:hover::before {
  transform: translateX(120%);
}

.btn:focus-visible,
.locale-option:focus-visible,
.nav-toggle:focus-visible,
.drawer-close:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-cool);
  outline-offset: 3px;
}

.btn-primary {
  border-left:0px; 
  border-right:0px;
  color: #05070d;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    #9ed0c4 44%,
    var(--accent-cool) 68%,
    var(--accent-deep) 100%
  );
  box-shadow: 0 18px 40px rgba(31, 93, 85, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 24px 54px rgba(31, 93, 85, 0.36);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span,
.drawer-close span {
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.7);
  backdrop-filter: blur(4px);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-left: 1px solid rgba(191, 224, 214, 0.08);
  background: linear-gradient(180deg, rgba(9, 15, 19, 0.98), rgba(4, 7, 10, 0.98));
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.32);
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand--drawer .brand-wordmark {
  font-size: 0.94rem;
}

.drawer-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.drawer-close span:first-child {
  transform: translateY(0.5px) rotate(45deg);
}

.drawer-close span:last-child {
  transform: translateY(-0.5px) rotate(-45deg);
  margin-left: -18px;
}

.drawer-nav {
  display: grid;
  gap: 0.2rem;
}

.drawer-nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
}

.drawer-locale {
  padding-top: 0.25rem;
}

.locale-switch--drawer {
  width: 100%;
  max-width: 132px;
}

body.drawer-open {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: calc(var(--header-height) + 4.3rem) 0 2rem;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 16%),
    linear-gradient(90deg, rgba(7, 11, 13, 0.22) 0%, transparent 38%),
    linear-gradient(180deg, transparent 78%, rgba(255, 255, 255, 0.016));
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height) - 10rem);
  display: grid;
  align-items: center;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(120, 185, 171, 0.05), transparent 18%),
    radial-gradient(circle at 82% 58%, rgba(31, 93, 85, 0.09), transparent 26%),
    linear-gradient(
      90deg,
      rgba(7, 11, 13, 0.84) 0%,
      rgba(7, 11, 13, 0.66) 22%,
      rgba(7, 11, 13, 0.16) 48%,
      transparent 68%
    ),
    radial-gradient(circle at 80% 46%, rgba(255, 255, 255, 0.025), transparent 28%)
  );
  pointer-events: none;
}

.hero-code {
  position: absolute;
  inset: 15% 0 17% 43%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  opacity: 0.24;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.9) 10%,
    #000 28%,
    #000 74%,
    rgba(0, 0, 0, 0.65) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.9) 10%,
    #000 28%,
    #000 74%,
    rgba(0, 0, 0, 0.65) 92%,
    transparent 100%
  );
}

.hero-code::before {
  content: "";
  position: absolute;
  inset: -4% -10% -8% -16%;
  background:
    linear-gradient(
      90deg,
      rgba(2, 3, 5, 1) 0%,
      rgba(2, 3, 5, 0.82) 18%,
      rgba(2, 3, 5, 0.38) 40%,
      transparent 60%
    ),
    radial-gradient(circle at 62% 44%, rgba(31, 93, 85, 0.08), transparent 20%),
    radial-gradient(circle at 68% 52%, rgba(120, 185, 171, 0.035), transparent 28%),
    linear-gradient(180deg, rgba(2, 3, 5, 0.18), rgba(2, 3, 5, 0.92));
  pointer-events: none;
}

.hero-code-track {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.48rem;
  overflow: hidden;
}

.hero-code-track:nth-child(1) {
  padding-top: 1.6rem;
}

.hero-code-track:nth-child(2) {
  padding-top: 5rem;
}

.hero-code-line {
  position: relative;
  display: block;
  min-height: 1.55em;
  padding: 0.12rem 0;
  padding-right: 0.9rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.74rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: rgba(183, 203, 198, 0.18);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 14px rgba(31, 93, 85, 0.08);
  opacity: 0.24;
  transition: opacity 0.28s ease, color 0.28s ease, text-shadow 0.28s ease;
}

.hero-code-line.is-empty {
  opacity: 0;
}

.hero-code-line.is-typing {
  opacity: 0.82;
}

.hero-code-line.is-complete {
  opacity: 0.46;
}

.hero-code-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  opacity: 0;
}

.hero-code-line.is-typing::after {
  opacity: 0.9;
  animation: heroCaretBlink 0.9s steps(1) infinite;
}

.hero-code-line.is-accent {
  color: rgba(132, 196, 182, 0.32);
  text-shadow: 0 0 18px rgba(31, 93, 85, 0.16);
}

.hero-code-line.is-accent.is-typing {
  color: rgba(160, 223, 208, 0.56);
}

.hero-code-line.is-soft {
  color: rgba(118, 139, 134, 0.14);
}

.hero-code-line.is-soft.is-typing {
  color: rgba(136, 160, 154, 0.28);
}

.hero-brand-ghost {
  position: absolute;
  top: 50%;
  right: clamp(-1rem, 4vw, 2rem);
  width: clamp(280px, 36vw, 520px);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.92;
}

.hero-brand-ghost::before {
  content: "";
  position: absolute;
  inset: 18% 14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(31, 93, 85, 0.16) 0%,
    rgba(120, 185, 171, 0.08) 26%,
    transparent 64%
  );
  filter: blur(48px);
  opacity: 0.46;
}

.hero-brand-ghost::after {
  content: "";
  position: absolute;
  left: -18%;
  right: 8%;
  top: 52%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(31, 93, 85, 0.34) 20%,
    rgba(120, 185, 171, 0.22) 36%,
    rgba(255, 255, 255, 0.52) 50%,
    rgba(120, 185, 171, 0.22) 68%,
    rgba(31, 93, 85, 0.28) 82%,
    transparent 100%
  );
  transform: rotate(-18deg);
  opacity: 0.28;
  animation: heroLineSweep 18s ease-in-out infinite;
}

.hero-brand-ghost img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 0 0.7px rgba(248, 255, 252, 0.58))
    drop-shadow(0 0 7px rgba(31, 93, 85, 0.1));
  animation: heroMarkFloat 11s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  display: grid;
  gap: 1.5rem;
  max-width: min(42rem, 100%);
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-cool);
}

.display {
  max-width: 9ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  max-width: 9ch;
  display: grid;
  gap: 0.18rem;
  text-align: left;
  text-shadow: 0 18px 50px rgba(3, 5, 10, 0.46);
}

.hero-title-accent {
  color: var(--accent-cool);
  background: none;
}

.hero-lead {
  max-width: 44ch;
  font-size: 1.05rem;
  color: var(--muted-strong);
  text-align: left;
}

.hero-marquee {
  --hero-marquee-gap: 2.2rem;
  position: relative;
  z-index: 2;
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(191, 224, 214, 0.08);
  border-bottom: 1px solid rgba(191, 224, 214, 0.08);
  background: linear-gradient(90deg, rgba(31, 93, 85, 0.05), rgba(255, 255, 255, 0.015), rgba(31, 93, 85, 0.05));
  overflow: hidden;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--hero-marquee-gap);
  padding: 0.95rem 0;
  animation: heroMarquee 24s linear infinite;
  will-change: transform;
}

.hero-marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--hero-marquee-gap);
  min-width: max-content;
}

.hero-marquee-group span {
  position: relative;
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(215, 222, 236, 0.72);
  padding-right: 2.3rem;
}

.hero-marquee-group span::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, var(--accent-cool), var(--accent-deep));
  box-shadow: 0 0 10px rgba(31, 93, 85, 0.24);
}

.feature-label,
.process-kicker,
.aside-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-cool);
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--max-width), calc(100vw - 2.4rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.6;
}

.section--muted {
  background: linear-gradient(180deg, rgba(31, 93, 85, 0.05), rgba(255, 255, 255, 0.012) 10%, transparent 20%);
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-copy {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1rem;
}

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

.feature-card,
.method-card,
.tech-card,
.cta,
.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(120, 185, 171, 0.05),
    rgba(31, 93, 85, 0.03) 38%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.feature-card,
.method-card,
.tech-card {
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.cta,
.contact-panel {
  transition: transform 0.3s var(--ease), border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.feature-card::after,
.method-card::after,
.tech-card::after,
.cta::after,
.contact-panel::after,
.method-aside::after,
.process-item::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(120, 185, 171, 0.14) 0%,
    rgba(31, 93, 85, 0.12) 28%,
    transparent 70%
  );
  opacity: 0;
  transform: translate3d(18px, 18px, 0);
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
  pointer-events: none;
}

.feature-card:hover,
.method-card:hover,
.tech-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.cta:hover,
.contact-panel:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover::after,
.method-card:hover::after,
.tech-card:hover::after,
.cta:hover::after,
.contact-panel:hover::after,
.method-aside:hover::after,
.process-item:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.feature-card h3,
.method-card h3,
.tech-card h3 {
  font-size: 1.35rem;
  margin: 0.7rem 0 0.8rem;
  line-height: 1.08;
}

.feature-card p,
.method-card p,
.tech-card p {
  color: var(--muted);
}

.feature-meta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section-heading--sticky {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  margin-bottom: 0;
}

.process-list {
  display: grid;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s ease,
    background-color 0.3s ease, box-shadow 0.3s ease;
}

.process-item:first-child {
  padding-top: 0.35rem;
  border-top: none;
}

.process-item:hover {
  transform: translateX(6px);
  border-color: rgba(191, 224, 214, 0.14);
  background: linear-gradient(180deg, rgba(120, 185, 171, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow-soft);
}

.process-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.method-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  align-items: stretch;
}

.method-cards {
  display: grid;
  gap: 1.2rem;
}

.method-aside {
  position: relative;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgba(31, 93, 85, 0.16), transparent 36%),
    radial-gradient(circle at 82% 12%, rgba(120, 185, 171, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(120, 185, 171, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: transform 0.3s var(--ease), border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.method-aside:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.method-aside blockquote {
  margin: 1rem 0;
  font-family: var(--display-font);
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.contact-panel,
.cta {
  padding: clamp(1.5rem, 3vw, 2rem);
  min-width: 0;
}

.contact-panel {
  display: grid;
  gap: 1.25rem;
  align-content: center;
}

.contact-title {
  max-width: 10ch;
  font-size: clamp(2.1rem, 3.5vw, 3.5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.contact-lead {
  max-width: 34rem;
  color: var(--muted-strong);
}

.cta {
  background:
    radial-gradient(circle at 86% 0%, rgba(120, 185, 171, 0.12), transparent 26%),
    radial-gradient(circle at 12% 100%, rgba(31, 93, 85, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(120, 185, 171, 0.045), rgba(255, 255, 255, 0.02));
}

.cta-form {
  display: grid;
  gap: 1rem;
  align-content: start;
}

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

.cta-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  color: var(--text);
  background: rgba(4, 7, 10, 0.76);
  border: 1px solid rgba(191, 224, 214, 0.1);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.cta-form input:hover,
.cta-form textarea:hover {
  border-color: rgba(191, 224, 214, 0.16);
  background: rgba(6, 10, 13, 0.84);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(215, 222, 236, 0.42);
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: rgba(120, 185, 171, 0.42);
  box-shadow: 0 0 0 3px rgba(31, 93, 85, 0.2);
  background: rgba(7, 10, 16, 0.9);
}

.form-status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status[data-status="success"] {
  color: #c9ffe4;
}

.form-status[data-status="error"] {
  color: #ffd8be;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(215, 222, 236, 0.62);
}

.btn[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  padding: 2rem 0 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.55), rgba(8, 15, 16, 0.62));
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
}

.footer-tagline {
  color: var(--muted);
  max-width: 48ch;
}

.footer-meta {
  display: grid;
  gap: 0.25rem;
  text-align: right;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section--method .section-heading,
.section--method .method-sequence-card,
.section--method .method-sequence-aside {
  transition:
    opacity 0.9s var(--ease),
    transform 1s var(--ease),
    filter 0.9s var(--ease),
    clip-path 1s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-position 1.2s var(--ease);
}

.section--method .section-heading {
  position: relative;
}

.section--method .method-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.95rem;
  width: clamp(150px, 18vw, 220px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(120, 185, 171, 0.68) 0%,
    rgba(31, 93, 85, 0.34) 58%,
    transparent 100%
  );
  opacity: 0.78;
  transform-origin: left center;
}

.section--method .method-shell {
  perspective: 1400px;
}

.section--method .method-cards {
  position: relative;
  padding-left: clamp(0.9rem, 1.4vw, 1.15rem);
}

.section--method .method-cards::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(120, 185, 171, 0.18) 0%,
    rgba(120, 185, 171, 0.55) 18%,
    rgba(31, 93, 85, 0.42) 52%,
    rgba(120, 185, 171, 0.16) 100%
  );
  opacity: 0;
  transform: scaleY(0.16);
  transform-origin: top center;
  transition: opacity 0.7s ease, transform 1.15s var(--ease);
}

.section--method.is-ready .method-heading {
  opacity: 0;
  transform: translate3d(-72px, 18px, 0);
  filter: blur(14px);
}

.section--method.is-animated .method-heading.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.section--method.is-ready .method-heading::after {
  transform: scaleX(0.2);
  opacity: 0;
}

.section--method.is-animated .method-heading.is-active::after {
  transform: scaleX(1);
  opacity: 0.82;
}

.section--method.is-ready .method-cards::before {
  opacity: 0.14;
  transform: scaleY(0.16);
}

.section--method.is-animated .method-cards::before {
  opacity: 0.6;
  transform: scaleY(1);
}

.section--method.is-ready .method-sequence-card {
  opacity: 0;
  transform: translate3d(-112px, 0, 0) skewX(-10deg) scale(0.95);
  filter: blur(16px);
  clip-path: inset(0 100% 0 0 round 26px);
}

.section--method.is-ready .method-sequence-card:nth-child(2) {
  transform: translate3d(-86px, 0, 0) skewX(-8deg) scale(0.962);
}

.section--method.is-ready .method-sequence-card:nth-child(3) {
  transform: translate3d(-60px, 0, 0) skewX(-6deg) scale(0.974);
}

.section--method .method-sequence-card > * {
  transition:
    opacity 0.65s ease,
    transform 0.85s var(--ease);
}

.section--method.is-ready .method-sequence-card > * {
  opacity: 0;
  transform: translateX(-24px);
}

.section--method.is-animated .method-sequence-card.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) skewX(0deg) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 26px);
}

.section--method.is-animated .method-sequence-card.is-active > * {
  opacity: 1;
  transform: translateX(0);
}

.section--method .method-sequence-card.is-active::before {
  opacity: 0.55;
  transform: none;
}

.section--method .method-sequence-card.is-active:hover {
  transform: translate3d(10px, -4px, 0);
}

.section--method.is-ready .method-sequence-aside {
  opacity: 0;
  transform: translate3d(0, 90px, 0) rotate(-1.4deg) scale(0.94);
  filter: blur(18px);
  clip-path: inset(100% 0 0 0 round 26px);
  background-position: 0 18%;
}

.section--method .method-sequence-aside > * {
  transition:
    opacity 0.7s ease,
    transform 0.9s var(--ease);
}

.section--method.is-ready .method-sequence-aside > * {
  opacity: 0;
  transform: translateY(22px);
}

.section--method.is-ready .method-sequence-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0) 26%
    ),
    linear-gradient(
      130deg,
      rgba(120, 185, 171, 0.22) 0%,
      rgba(120, 185, 171, 0.04) 28%,
      transparent 54%
    );
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.section--method.is-animated .method-sequence-aside.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 26px);
  background-position: 0 0;
}

.section--method.is-animated .method-sequence-aside.is-active > * {
  opacity: 1;
  transform: translateY(0);
}

.section--method.is-animated .method-sequence-aside.is-active::before {
  opacity: 1;
}

.section--method .method-sequence-aside.is-active:hover {
  transform: translate3d(0, -6px, 0) rotate(-0.3deg);
}

@media (max-width: 1040px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav {
    display: none;
  }

  .header-actions {
    gap: 0.6rem;
    margin-left: auto;
    padding-left: 0;
  }

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

  .header-actions > .locale-switch {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid,
  .process-layout,
  .method-shell,
  .contact-shell,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding-bottom: 1.8rem;
  }

  .method-shell {
    align-items: start;
  }

  .method-aside {
    min-height: 0;
  }

  .hero-code {
    inset: 14% 0 18% 38%;
  }

  .section-heading--sticky {
    position: static;
  }

  .hero-brand-ghost {
    width: clamp(260px, 34vw, 420px);
  }

  .footer-meta {
    text-align: left;
  }

  .section--method .method-cards {
    padding-left: 0;
  }

  .section--method .method-cards::before {
    display: none;
  }
}

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

  .hero-code {
    inset: 18% -4% 20% 48%;
    grid-template-columns: 1fr;
    opacity: 0.16;
  }

  .hero-code-track:nth-child(2) {
    display: none;
  }

  .hero-brand-ghost {
    width: min(240px, 42vw);
    right: -1.4rem;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .section--method .method-shell {
    gap: 1.2rem;
  }

  .section--method.is-ready .method-heading,
  .section--method.is-animated .method-heading.is-active {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .section--method.is-ready .method-heading::after,
  .section--method.is-animated .method-heading.is-active::after {
    opacity: 0.82;
    transform: scaleX(1);
  }

  .section--method.is-ready .method-sequence-card,
  .section--method.is-ready .method-sequence-card:nth-child(2),
  .section--method.is-ready .method-sequence-card:nth-child(3),
  .section--method.is-animated .method-sequence-card.is-active {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0 0 0 0 round 26px);
  }

  .section--method.is-ready .method-sequence-card > *,
  .section--method.is-animated .method-sequence-card.is-active > * {
    opacity: 1;
    transform: none;
  }

  .section--method.is-ready .method-sequence-aside,
  .section--method.is-animated .method-sequence-aside.is-active {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0 0 0 0 round 26px);
  }

  .section--method.is-ready .method-sequence-aside > *,
  .section--method.is-animated .method-sequence-aside.is-active > * {
    opacity: 1;
    transform: none;
  }

  .section--method.is-ready .method-heading {
    transition-delay: 0ms;
  }

  .section--method.is-ready .method-sequence-card,
  .section--method.is-ready .method-sequence-card:nth-child(2),
  .section--method.is-ready .method-sequence-card:nth-child(3) {
    transition-delay: 0ms;
  }

  .section--method.is-ready .method-sequence-card > * {
    transition-delay: 0ms;
  }

  .section--method.is-ready .method-sequence-aside {
    transition-delay: 0ms;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(var(--max-width), calc(100vw - 1.4rem));
  }

  body {
    font-size: 18px;
  }

  .site-header {
    background: rgba(9, 15, 18, 0.8);
    border-color: rgba(191, 224, 214, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand-mark {
    width: 46px;
  }

  .brand-wordmark {
    font-size: 0.96rem;
    letter-spacing: 0.08em;
  }

  .header-actions {
    gap: 0.55rem;
    margin-left: auto;
    padding-left: 0;
  }

  .locale-switch {
    min-width: 104px;
    min-height: 44px;
    padding: 3px;
    border-radius: 14px;
  }

  .locale-option {
    min-width: 44px;
    height: 36px;
    padding: 0 0.72rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 1.5rem;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-grid {
    min-height: calc(100vh - var(--header-height) - 3.5rem);
    min-height: calc(100svh - var(--header-height) - 3.5rem);
    align-items: center;
  }

  .hero-copy {
    gap: 1.15rem;
    padding-top: 0;
  }

  .hero .eyebrow {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .display {
    max-width: 10ch;
    font-size: clamp(2.4rem, 11vw, 3.9rem);
  }

  .hero-title {
    max-width: 10ch;
    font-size: clamp(2.4rem, 11vw, 3.9rem);
    gap: 0.08rem;
  }

  .hero-lead {
    max-width: 32ch;
  }

  .hero-brand-ghost {
    top: calc(var(--header-height) + 1.75rem);
    right: clamp(-7rem, -22vw, -4.2rem);
    left: auto;
    width: min(330px, 74vw);
    transform: translate3d(0, 0, 0);
    opacity: 0.2;
  }

  .hero-brand-ghost::before {
    inset: 14% 10%;
    filter: blur(30px);
    opacity: 0.12;
  }

  .hero-brand-ghost::after {
    left: -10%;
    right: -4%;
    opacity: 0.1;
  }

  .hero-brand-ghost img {
    opacity: 0.88;
    filter: saturate(1.32) contrast(1.08) brightness(1.04)
      drop-shadow(0 0 0.35px rgba(248, 255, 252, 0.28))
      drop-shadow(0 0 5px rgba(31, 93, 85, 0.1));
  }

  .section--method .method-shell {
    gap: 1rem;
  }

  .method-aside {
    padding: 1.35rem;
  }

  .method-aside blockquote {
    font-size: 1.25rem;
  }

  .hero-code {
    inset: 18% -10% 32% 44%;
    opacity: 0.13;
  }

  .hero-marquee {
    --hero-marquee-gap: 1.4rem;
    margin-top: 0.6rem;
  }

  .hero-marquee-track {
    padding: 0.8rem 0;
    animation-duration: 20s;
  }

  .hero-marquee-group span {
    font-size: 0.9rem;
    line-height: 1.35;
    letter-spacing: 0.16em;
    padding-right: 1.7rem;
  }

  .hero-marquee-group span::after {
    right: 0.6rem;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .section {
    padding: 4.5rem 0;
  }

  p,
  .hero-lead,
  .section-copy,
  .feature-card p,
  .method-card p,
  .tech-card p,
  .process-item p,
  .contact-lead,
  .method-aside p,
  .form-status,
  .form-note {
    font-size: 1.1rem;
    line-height: 1.72;
  }

  .btn,
  input,
  textarea {
    font-size: 1.08rem;
  }

  .eyebrow,
  .feature-label,
  .process-kicker,
  .aside-label {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .feature-card,
  .method-card,
  .tech-card,
  .contact-panel,
  .cta {
    border-radius: 22px;
  }

  .contact-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    text-wrap: pretty;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: mobileHeroVeil 8s ease-in-out infinite;
    will-change: opacity;
  }

  .hero-background::after {
    content: "";
    position: absolute;
    left: 12%;
    right: -18%;
    bottom: 24%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(120, 185, 171, 0.18),
      rgba(244, 255, 251, 0.48),
      rgba(31, 93, 85, 0.18),
      transparent
    );
    opacity: 0;
    transform: rotate(-10deg) translate3d(-18%, 0, 0);
    animation: mobileTraceSweep 5.8s 0.55s var(--ease) infinite;
    will-change: opacity, transform;
  }

  .hero-brand-ghost {
    animation: mobileLogoEnter 0.9s 0.12s var(--ease) both;
    will-change: opacity, transform;
  }

  .hero-brand-ghost img {
    animation: mobileLogoDrift 8.5s 1s ease-in-out infinite;
    will-change: transform;
  }

  .hero-brand-ghost::after {
    animation: mobileLogoCut 4.8s 1s ease-in-out infinite;
    will-change: opacity, transform;
  }

  .hero-code {
    animation: mobileCodeBreath 7.5s ease-in-out infinite;
    will-change: opacity, transform;
  }

  .hero-copy.in-view .eyebrow {
    animation: mobileEyebrowIn 0.58s 0.08s var(--ease) both;
  }

  .hero-copy.in-view .hero-title span {
    animation: mobileTitleIn 0.72s 0.16s var(--ease) both;
  }

  .hero-copy.in-view .hero-title span:nth-child(2) {
    animation-delay: 0.28s;
  }

  .hero-copy.in-view .hero-lead {
    animation: mobileLeadIn 0.68s 0.44s var(--ease) both;
  }

  .hero-copy.in-view .hero-title .hero-title-accent {
    animation:
      mobileTitleIn 0.72s 0.28s var(--ease) both,
      mobileAccentBreath 5.5s 1.1s ease-in-out infinite;
  }

  .hero-marquee {
    animation: mobileMarqueeIn 0.7s 0.72s var(--ease) both;
  }
}

@keyframes mobileHeroVeil {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes mobileTraceSweep {
  0% {
    opacity: 0;
    transform: rotate(-10deg) translate3d(-18%, 0, 0);
  }

  24%,
  54% {
    opacity: 0.62;
  }

  100% {
    opacity: 0;
    transform: rotate(-10deg) translate3d(16%, 0, 0);
  }
}

@keyframes mobileLogoEnter {
  from {
    opacity: 0;
    transform: translate3d(22px, -12px, 0) scale(0.86) rotate(-3deg);
  }

  to {
    opacity: 0.2;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}

@keyframes mobileLogoDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-6px, -10px, 0) rotate(-1.4deg);
  }
}

@keyframes mobileLogoCut {
  0%,
  100% {
    opacity: 0.08;
    transform: rotate(-18deg) translate3d(-10%, 0, 0);
  }

  45% {
    opacity: 0.3;
    transform: rotate(-18deg) translate3d(10%, 0, 0);
  }
}

@keyframes mobileCodeBreath {
  0%,
  100% {
    opacity: 0.1;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 0.18;
    transform: translate3d(-5px, -4px, 0);
  }
}

@keyframes mobileEyebrowIn {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    letter-spacing: 0.18em;
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    letter-spacing: 0.28em;
  }
}

@keyframes mobileTitleIn {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes mobileLeadIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mobileAccentBreath {
  0%,
  100% {
    color: var(--accent-cool);
    text-shadow: none;
  }

  50% {
    color: #a8d9cf;
    text-shadow: 0 0 18px rgba(120, 185, 171, 0.1);
  }
}

@keyframes mobileMarqueeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroCaretBlink {
  0%,
  49% {
    opacity: 0.9;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes heroMarkFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(-1.1deg);
  }
}

@keyframes heroLineSweep {
  0%,
  100% {
    transform: rotate(-18deg) translate3d(-4%, 0, 0);
    opacity: 0.14;
  }

  50% {
    transform: rotate(-18deg) translate3d(12%, 0, 0);
    opacity: 0.3;
  }
}

@keyframes heroLineSweepReverse {
  0%,
  100% {
    transform: rotate(-18deg) translate3d(6%, 0, 0);
    opacity: 0.08;
  }

  50% {
    transform: rotate(-18deg) translate3d(-14%, 0, 0);
    opacity: 0.2;
  }
}

@keyframes heroMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(
      calc(-50% - (var(--hero-marquee-gap) / 2)),
      0,
      0
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-marquee-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
