:root {
  --font-heading: "Barlow Condensed", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;

  --bg-deep: #02040a;
  --bg-blue: #061226;
  --bg-red: #1a060b;
  --surface-0: rgba(6, 10, 17, 0.78);
  --surface-1: rgba(9, 15, 26, 0.9);
  --surface-2: rgba(10, 16, 30, 0.68);

  --line-soft: rgba(161, 189, 227, 0.22);
  --line-strong: rgba(168, 202, 245, 0.37);

  --text-primary: #edf4ff;
  --text-secondary: #b8c8df;
  --text-muted: #8d9bb2;

  --blue: #2d9dff;
  --blue-soft: #79c2ff;
  --red: #f8444a;
  --red-soft: #ff8b91;
  --silver: #dbe5f5;

  --shadow-deep: 0 26px 90px rgba(1, 4, 10, 0.62);
  --shadow-glow: 0 0 48px rgba(46, 157, 255, 0.22);

  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.6rem;

  --header-height: 5rem;
  --container-width: min(1140px, 92vw);
  --container-wide: min(1240px, 95vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  background: radial-gradient(circle at 10% 25%, rgba(18, 56, 111, 0.38), transparent 45%),
    radial-gradient(circle at 86% 18%, rgba(153, 25, 29, 0.36), transparent 44%),
    linear-gradient(170deg, #02050b 0%, #040b18 48%, #10050b 100%);
  min-height: 100svh;
  overflow-x: clip;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

body::before {
  background-image: radial-gradient(circle at 28% 44%, rgba(39, 129, 237, 0.12), transparent 42%),
    radial-gradient(circle at 74% 40%, rgba(245, 52, 59, 0.1), transparent 42%);
}

body::after {
  opacity: 0.3;
  background-image: linear-gradient(transparent 96%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.03) 100%);
  background-size: 100% 3px, 3px 100%;
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

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

canvas#energy-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  opacity: 0.42;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #111;
  padding: 0.6rem 0.9rem;
  border-radius: 0.55rem;
  z-index: 300;
}

.container,
.container-wide {
  width: var(--container-width);
  margin-inline: auto;
}

.container-wide {
  width: var(--container-wide);
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(99, 129, 168, 0.12);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 220;
  border-bottom: 1px solid rgba(128, 156, 197, 0.18);
  background: linear-gradient(120deg, rgba(7, 14, 28, 0.88), rgba(8, 11, 20, 0.68));
  backdrop-filter: blur(16px) saturate(130%);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 148, 229, 0.7), rgba(246, 78, 84, 0.68), transparent);
}

.header-inner {
  width: var(--container-wide);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  text-decoration: none;
}

.brand__mark {
  width: 2.65rem;
  aspect-ratio: 1;
  border-radius: 0.92rem;
  overflow: hidden;
  border: 1px solid rgba(177, 204, 241, 0.35);
  box-shadow: 0 0 24px rgba(41, 136, 232, 0.33);
  background: #081327;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.brand__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--silver);
}

.brand__role {
  margin: 0.15rem 0 0;
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6ca3df;
}

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

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.44rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.3rem;
  height: 1.5px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transition: transform 200ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--text-primary);
  background: rgba(45, 157, 255, 0.08);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__link[aria-current="page"] {
  color: var(--text-primary);
  background: linear-gradient(130deg, rgba(42, 134, 235, 0.15), rgba(239, 68, 68, 0.12));
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line-soft);
  background: rgba(7, 12, 20, 0.9);
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  width: 1.2rem;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
  display: block;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle span::before {
  transform: translateY(-0.38rem);
}

.nav-toggle span::after {
  transform: translateY(0.26rem);
}

body.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::before {
  transform: rotate(90deg);
}

body.nav-open .nav-toggle span::after {
  transform: scaleX(0);
  opacity: 0;
}

.main-content {
  padding-top: var(--header-height);
}

.section {
  position: relative;
  padding-block: clamp(4.6rem, 7vw, 7.3rem);
}

.section--tight {
  padding-block: clamp(3.2rem, 5vw, 4.8rem);
}

.section-divider {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(980px, 86vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(90, 132, 182, 0.6), transparent);
  opacity: 0.55;
}

.section-heading {
  max-width: 56ch;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #80b6ee;
}

.section-heading h1,
.section-heading h2,
.section-heading h3 {
  margin: 0.6rem 0 0.92rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 0.95;
}

.section-heading h1 {
  font-size: clamp(2.3rem, 6vw, 4.9rem);
}

.section-heading h2 {
  font-size: clamp(1.82rem, 4.2vw, 3.4rem);
}

.section-heading p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(0.96rem, 1.4vw, 1.1rem);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  position: relative;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  background: radial-gradient(circle at 20% 40%, rgba(40, 127, 232, 0.27), transparent 52%),
    radial-gradient(circle at 80% 38%, rgba(237, 57, 62, 0.24), transparent 50%);
}

.hero::after {
  background-image: linear-gradient(125deg, transparent 0%, rgba(45, 157, 255, 0.07) 32%, transparent 50%, rgba(248, 68, 74, 0.08) 68%, transparent 100%);
}

.hero__grid {
  width: var(--container-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.97fr);
  gap: clamp(2.4rem, 4.6vw, 5rem);
  align-items: center;
  padding-block: clamp(2.8rem, 6vw, 6rem);
}

.hero__content {
  max-width: 36rem;
}

.hero__kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #84bff8;
}

.hero__headline {
  margin: 0.68rem 0 1rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.9;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
}

.hero__headline .hero__headline-name {
  display: block;
  color: var(--silver);
}

.hero__headline .hero__headline-role {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  color: #91b6e3;
  letter-spacing: 0.18em;
  margin-top: 0.55rem;
}

.hero__summary {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 48ch;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 2.85rem;
  padding: 0.68rem 1.25rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.btn:focus-visible {
  outline: 2px solid #b4d8ff;
  outline-offset: 2px;
}

.btn--primary {
  color: #03111f;
  background: linear-gradient(130deg, #dce8fb 0%, #5ea8ff 52%, #e7f1ff 100%);
  border-color: rgba(190, 220, 255, 0.85);
  box-shadow: 0 8px 35px rgba(62, 153, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(87, 170, 255, 0.47);
}

.btn--secondary {
  color: var(--text-primary);
  border-color: rgba(248, 114, 119, 0.62);
  background: linear-gradient(130deg, rgba(111, 18, 25, 0.36), rgba(248, 68, 74, 0.2));
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 64, 70, 0.27);
}

.btn--ghost {
  color: var(--text-secondary);
  border-color: var(--line-soft);
  background: rgba(8, 13, 22, 0.52);
}

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.hero__visual {
  position: relative;
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -12% -8% -7% -10%;
  background: radial-gradient(circle at 28% 45%, rgba(34, 129, 243, 0.35), transparent 54%),
    radial-gradient(circle at 76% 54%, rgba(240, 50, 57, 0.35), transparent 51%);
  filter: blur(30px);
  z-index: -1;
}

.hero__visual--brand {
  display: grid;
  align-items: center;
}

.hero__mark-scene {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 56vw, 620px);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__mark-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__mark-scene::before {
  background: radial-gradient(circle at 22% 44%, rgba(42, 145, 255, 0.22), transparent 54%),
    radial-gradient(circle at 78% 47%, rgba(249, 71, 79, 0.2), transparent 54%);
  z-index: 0;
}

.hero__logo-core {
  position: relative;
  z-index: 2;
  width: min(76%, 430px);
  display: grid;
  place-items: center;
}

.hero__logo-core--home {
  width: min(96%, 640px);
  transform: translateY(-34px);
}

.hero__mark-scene--home {
  overflow: visible;
}

.hero__mark-scene--apps {
  min-height: clamp(360px, 56vw, 620px);
  aspect-ratio: 4 / 5;
  overflow: visible;
}

.hero__logo-core--apps {
  width: min(96%, 640px);
  transform: translateY(-22px);
}

.hero__logo-image--apps {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.hero__logo-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(74, 164, 255, 0.33)) drop-shadow(0 0 25px rgba(248, 78, 86, 0.22))
    drop-shadow(0 14px 30px rgba(5, 8, 14, 0.52));
  animation: hero-logo-float 8.5s ease-in-out infinite alternate;
  transition: filter 260ms ease, transform 260ms ease;
}

.hero__mark-scene:hover .hero__logo-image {
  filter: drop-shadow(0 0 24px rgba(88, 182, 255, 0.42)) drop-shadow(0 0 30px rgba(250, 94, 103, 0.3))
    drop-shadow(0 18px 34px rgba(5, 8, 14, 0.58));
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__particles--back {
  z-index: 1;
}

.hero__particles--front {
  z-index: 3;
}

.hero__mark-scene.is-active .hero__logo-image {
  filter: drop-shadow(0 0 28px rgba(98, 187, 255, 0.46)) drop-shadow(0 0 34px rgba(255, 95, 102, 0.34))
    drop-shadow(0 20px 36px rgba(5, 8, 14, 0.62));
}

@keyframes hero-logo-float {
  from {
    transform: translate3d(-1px, 2px, 0) scale(0.997);
  }
  to {
    transform: translate3d(2px, -4px, 0) scale(1.004);
  }
}

.hero__frame {
  position: relative;
  border-radius: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(177, 202, 240, 0.34);
  background: linear-gradient(150deg, rgba(6, 9, 15, 0.92), rgba(10, 15, 28, 0.74));
  box-shadow: var(--shadow-deep), var(--shadow-glow);
}

.hero__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(2, 4, 8, 0.8));
}

.hero__stamp {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.88rem;
  border: 1px solid rgba(174, 204, 247, 0.36);
  background: rgba(5, 10, 17, 0.66);
  backdrop-filter: blur(6px);
}

.hero__stamp-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero__stamp-subtitle {
  margin: 0.14rem 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9bb2d1;
}

.circuit-ribbon {
  margin-top: 1.6rem;
  width: min(460px, 100%);
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(135, 171, 216, 0.27);
  background: linear-gradient(90deg, rgba(19, 42, 78, 0.56), rgba(53, 14, 22, 0.44));
  position: relative;
  overflow: hidden;
}

.circuit-ribbon::before,
.circuit-ribbon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 75%;
  height: 1.7px;
  background: linear-gradient(90deg, transparent, rgba(53, 158, 252, 0.82), rgba(249, 70, 76, 0.82), transparent);
}

.circuit-ribbon::before {
  left: 7%;
}

.circuit-ribbon::after {
  right: 7%;
  opacity: 0.35;
  transform: translateY(calc(-50% + 8px));
}

.manifesto {
  background: linear-gradient(160deg, rgba(6, 11, 20, 0.68), rgba(7, 9, 15, 0.32));
}

.manifesto__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(166, 193, 228, 0.26);
  background: linear-gradient(160deg, rgba(11, 19, 33, 0.92), rgba(7, 10, 16, 0.95));
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-deep);
}

.manifesto__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(38, 139, 243, 0.2), transparent 36%),
    radial-gradient(circle at 85% 85%, rgba(245, 64, 70, 0.18), transparent 35%);
  pointer-events: none;
}

.manifesto__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
}

.manifesto__content > * {
  min-width: 0;
}

.manifesto__title {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.manifesto__text {
  margin: 0.95rem 0 0;
  color: var(--text-secondary);
}

.manifesto__metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.manifesto__metric {
  padding: 0.8rem 0.92rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(149, 178, 220, 0.28);
  background: rgba(8, 14, 24, 0.75);
}

.manifesto__metric strong {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.97rem;
  overflow-wrap: anywhere;
}

.manifesto__metric span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.featured-apps {
  position: relative;
}

.app-stack {
  display: grid;
  gap: 1rem;
}

.app-tile {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(159, 185, 223, 0.24);
  background: linear-gradient(140deg, rgba(9, 15, 27, 0.92), rgba(8, 12, 19, 0.95));
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 24px 68px rgba(2, 6, 13, 0.47);
}

.app-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(37, 125, 221, 0.12), transparent 45%, rgba(228, 53, 58, 0.12));
  pointer-events: none;
}

.app-tile__media {
  overflow: hidden;
}

.app-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-tile__body {
  position: relative;
  z-index: 1;
  padding: clamp(1.1rem, 3vw, 2rem);
  display: grid;
  gap: 0.78rem;
}

.app-tile__meta {
  display: flex;
  gap: 0.48rem;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(155, 183, 222, 0.36);
  background: rgba(8, 14, 24, 0.58);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aec6e6;
}

.chip--hot {
  border-color: rgba(249, 92, 99, 0.6);
  color: #ffadb0;
}

.chip--cool {
  border-color: rgba(84, 174, 255, 0.55);
  color: #9ad4ff;
}

.app-title {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  min-width: 0;
}

.app-title span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.app-title__icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 0.62rem;
  border: 1px solid rgba(177, 204, 241, 0.52);
  background: rgba(8, 14, 24, 0.85);
  box-shadow: 0 0 0 1px rgba(36, 124, 220, 0.16), 0 0 14px rgba(58, 158, 255, 0.24), 0 0 18px rgba(246, 76, 84, 0.16);
  animation: app-icon-glow 3.4s ease-in-out infinite;
}

@keyframes app-icon-glow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(36, 124, 220, 0.14), 0 0 12px rgba(58, 158, 255, 0.22), 0 0 16px rgba(246, 76, 84, 0.14);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(56, 148, 245, 0.28), 0 0 18px rgba(78, 173, 255, 0.34), 0 0 24px rgba(248, 93, 99, 0.25);
  }
}

.app-tile h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 0.94;
}

.app-tile p {
  margin: 0;
  color: var(--text-secondary);
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
  text-decoration: none;
  font-size: 0.77rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fcbff;
}

.link-inline:hover {
  color: #c4e2ff;
}

.link-inline::after {
  content: "\2192";
}

.value-band {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(145, 176, 220, 0.25);
  background: rgba(7, 13, 23, 0.68);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.value-item {
  padding: 0.65rem 0.72rem;
}

.value-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-item span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(166, 194, 234, 0.3);
  padding: clamp(1.8rem, 4vw, 2.9rem);
  background: linear-gradient(120deg, rgba(7, 15, 27, 0.9), rgba(31, 9, 15, 0.75));
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(45, 157, 255, 0.13), transparent 48%, rgba(248, 68, 74, 0.13));
  pointer-events: none;
}

.cta-panel__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 0.96;
}

.cta-panel p {
  margin: 0.6rem 0 0;
  color: var(--text-secondary);
  max-width: 46ch;
}

.page-hero {
  position: relative;
  padding-block: clamp(4.1rem, 6.6vw, 6.7rem) clamp(2rem, 3.8vw, 3.6rem);
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.95fr);
  gap: clamp(1.3rem, 3vw, 3rem);
  align-items: center;
}

.page-hero__art {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(171, 202, 243, 0.3);
  box-shadow: var(--shadow-deep);
}

.page-hero__art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero__art--apps-mark {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.page-hero__art--orbit {
  position: relative;
  min-height: clamp(320px, 44vw, 430px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  isolation: isolate;
}

.page-hero__art--orbit::before,
.page-hero__art--orbit::after {
  content: none;
}

.photo-orbit {
  position: relative;
  width: 100%;
  min-height: inherit;
  aspect-ratio: 4 / 3;
  z-index: 1;
}

.photo-orbit::before {
  content: none;
}

.photo-orbit__node {
  position: absolute;
  top: var(--top, 0%);
  left: var(--left, 0%);
  width: var(--size, 120px);
  height: var(--size, 120px);
  opacity: var(--node-opacity, 0.9);
  animation-name: orbit-float;
  animation-duration: var(--duration, 8s);
  animation-delay: var(--delay, 0s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  will-change: transform;
}

.photo-orbit__bubble {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--edge-color, rgba(177, 197, 227, 0.58));
  background: radial-gradient(circle at 30% 28%, rgba(221, 236, 255, 0.26), rgba(14, 24, 40, 0.16) 54%, rgba(6, 10, 17, 0.5)),
    linear-gradient(145deg, rgba(36, 55, 82, 0.32), rgba(34, 25, 33, 0.26)),
    repeating-linear-gradient(132deg, rgba(126, 148, 179, 0.08) 0 6px, transparent 6px 14px);
  box-shadow: inset 0 0 20px rgba(197, 216, 246, 0.1), inset 0 -18px 28px rgba(5, 9, 15, 0.5),
    0 14px 34px rgba(2, 6, 12, 0.45), 0 0 34px var(--glow-color, rgba(179, 201, 234, 0.25));
  backdrop-filter: blur(6px);
  transform: scale(1);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, filter 260ms ease;
}

.photo-orbit__bubble::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px dashed var(--placeholder-mark, rgba(154, 184, 222, 0.4));
  opacity: 0.82;
}

.photo-orbit__bubble::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  border: 1px solid rgba(229, 238, 255, 0.18);
  opacity: 0.55;
}

.photo-orbit__bubble--with-image {
  background-size: var(--photo-zoom, cover);
  background-position: var(--photo-pos-x, 50%) var(--photo-pos-y, 50%);
  background-repeat: no-repeat;
  border-color: rgba(202, 225, 255, 0.74);
}

.photo-orbit__node:hover .photo-orbit__bubble {
  transform: scale(1.065);
  border-color: rgba(212, 231, 255, 0.78);
  filter: saturate(1.05);
  box-shadow: inset 0 0 24px rgba(221, 236, 255, 0.17), inset 0 -18px 28px rgba(5, 9, 15, 0.5),
    0 18px 34px rgba(2, 6, 12, 0.46), 0 0 46px var(--glow-color, rgba(179, 201, 234, 0.36));
}

.photo-orbit__bubble--with-image::before,
.photo-orbit__bubble--with-image::after {
  content: none;
}

.photo-orbit__node--blue {
  --glow-color: rgba(56, 163, 255, 0.38);
  --edge-color: rgba(149, 209, 255, 0.65);
  --placeholder-mark: rgba(150, 201, 255, 0.47);
}

.photo-orbit__node--red {
  --glow-color: rgba(248, 74, 82, 0.34);
  --edge-color: rgba(255, 157, 163, 0.58);
  --placeholder-mark: rgba(244, 160, 166, 0.42);
}

.photo-orbit__node--silver {
  --glow-color: rgba(196, 210, 236, 0.3);
  --edge-color: rgba(207, 221, 245, 0.62);
  --placeholder-mark: rgba(187, 202, 230, 0.44);
}

.photo-orbit__legend {
  display: none;
}

@keyframes orbit-float {
  from {
    transform: translate3d(var(--drift-x-start, 0px), var(--drift-y-start, 0px), 0);
  }
  to {
    transform: translate3d(var(--drift-x-end, 0px), var(--drift-y-end, -12px), 0);
  }
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
  gap: clamp(1.2rem, 3.2vw, 3rem);
}

.about-copy {
  border-radius: 1.2rem;
  border: 1px solid rgba(153, 181, 220, 0.26);
  background: rgba(8, 13, 22, 0.7);
  padding: clamp(1.2rem, 3vw, 2.1rem);
}

.about-copy p {
  margin-top: 0;
  color: var(--text-secondary);
}

.about-copy .manifesto__title + p {
  margin-top: 0.95rem;
}

.about-copy__subtitle {
  margin: 0.5rem 0 0.72rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1;
  color: var(--silver);
}

.pillar-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.78rem;
}

.pillar-item {
  border-radius: 1rem;
  border: 1px solid rgba(152, 180, 217, 0.28);
  background: rgba(7, 13, 23, 0.78);
  padding: 0.95rem;
}

.pillar-item strong {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.pillar-item span {
  display: block;
  margin-top: 0.32rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.timeline {
  margin-top: 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(153, 181, 220, 0.25);
  background: rgba(7, 12, 20, 0.68);
  padding: 1rem;
}

.timeline h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.timeline ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.68rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 0.72rem;
  align-items: baseline;
}

.timeline time {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #84bdf8;
}

.timeline p {
  margin: 0;
  color: var(--text-secondary);
}

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

.product-block {
  grid-column: span 6;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(152, 182, 223, 0.27);
  background: linear-gradient(155deg, rgba(8, 14, 24, 0.93), rgba(8, 10, 16, 0.95));
  display: flex;
}

.product-block__media {
  position: relative;
}

.product-block__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-block__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(4, 7, 12, 0.8));
}

.product-block__body {
  padding: 1rem 1rem 1.3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
}

.product-block h3 {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.98;
  font-size: clamp(1.25rem, 2.4vw, 1.82rem);
}

.product-block p {
  margin: 0;
  color: var(--text-secondary);
}

.product-block__footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.65rem 0.8rem;
}

.product-meta {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-width: 0;
}

.product-block__footer .link-inline {
  margin-top: 0;
  justify-self: end;
  align-self: end;
  white-space: nowrap;
}

.other-projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.other-projects-intro {
  align-self: stretch;
}

.other-projects-board,
.other-projects-aside,
.other-projects-showcase {
  border-radius: 1.2rem;
  border: 1px solid rgba(152, 181, 218, 0.26);
  background: rgba(7, 12, 20, 0.78);
  padding: clamp(1rem, 3vw, 1.65rem);
}

.other-projects-board p,
.other-projects-aside p,
.other-projects-showcase p {
  color: var(--text-secondary);
}

.other-projects-board > p {
  margin-top: 0.72rem;
}

.other-projects-showcase > p {
  margin-top: 0.72rem;
  max-width: 62ch;
}

.school-highlight-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.school-project-card {
  border-radius: 1rem;
  border: 1px solid rgba(126, 190, 246, 0.38);
  background: linear-gradient(140deg, rgba(9, 24, 40, 0.84), rgba(10, 18, 33, 0.78), rgba(36, 13, 24, 0.62));
  padding: 1rem;
  box-shadow: 0 0 22px rgba(63, 154, 243, 0.16);
}

.school-project-card__eyebrow {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94cbff;
}

.school-project-card__title {
  margin: 0.55rem 0 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.96;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.school-project-card__summary {
  margin: 0.62rem 0 0;
  color: var(--text-secondary);
}

.school-project-card__action {
  margin-top: 0.9rem;
  width: auto;
  min-width: 11.5rem;
}

.school-links-grid {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.school-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  min-height: 3rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(145, 176, 220, 0.3);
  background: rgba(8, 14, 25, 0.6);
  padding: 0.55rem 0.72rem;
  text-decoration: none;
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.96rem;
}

.school-link span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 1.4rem;
  padding: 0.08rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(142, 172, 212, 0.36);
  color: #9ec6ef;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.school-link:hover {
  border-color: rgba(179, 211, 248, 0.5);
  transform: translateY(-1px);
}

.school-link--featured {
  border-color: rgba(99, 183, 255, 0.62);
  background: linear-gradient(130deg, rgba(36, 98, 168, 0.36), rgba(21, 35, 62, 0.72), rgba(96, 22, 33, 0.3));
  box-shadow: 0 0 24px rgba(63, 154, 243, 0.2);
}

.school-link--featured span {
  border-color: rgba(118, 200, 255, 0.68);
  color: #cff0ff;
}

.other-projects-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.68rem;
}

.other-projects-points li {
  border-radius: 0.94rem;
  border: 1px solid rgba(150, 178, 217, 0.28);
  background: rgba(8, 14, 24, 0.64);
  padding: 0.72rem 0.76rem;
}

.other-projects-points strong {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.95rem;
}

.other-projects-points span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.other-projects-note {
  margin: 0.95rem 0 0;
  font-size: 0.92rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin-inline: auto;
}

.contact-panel {
  border-radius: 1.2rem;
  border: 1px solid rgba(152, 181, 218, 0.26);
  background: rgba(7, 12, 20, 0.78);
  padding: clamp(1rem, 3vw, 1.65rem);
}

.contact-panel p {
  color: var(--text-secondary);
}

.contact-links {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.66rem;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(141, 172, 209, 0.27);
  border-radius: 0.88rem;
  padding: 0.62rem 0.75rem;
  text-decoration: none;
  background: rgba(8, 14, 25, 0.6);
}

.contact-link strong {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.contact-link span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact-link:hover {
  border-color: rgba(179, 211, 248, 0.48);
}

.form-grid {
  display: grid;
  gap: 0.72rem;
}

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

.field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9bc1eb;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(144, 175, 214, 0.3);
  background: rgba(4, 8, 14, 0.92);
  color: var(--text-primary);
  padding: 0.7rem 0.78rem;
  font: inherit;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(111, 181, 251, 0.68);
  box-shadow: 0 0 0 3px rgba(87, 159, 234, 0.18);
}

.form-status {
  margin: 0;
  min-height: 1.3rem;
  color: #9bc5f2;
  font-size: 0.86rem;
}

.site-footer {
  border-top: 1px solid rgba(125, 155, 196, 0.24);
  padding-block: 1rem 1.4rem;
  background: rgba(4, 7, 12, 0.72);
}

.footer-inner {
  width: var(--container-wide);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #92b9e7;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 560ms cubic-bezier(0.2, 0.9, 0.35, 1), opacity 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero__grid,
  .page-hero__layout,
  .about-layout,
  .contact-layout,
  .other-projects-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__frame img {
    aspect-ratio: 3 / 3.6;
  }

  .hero__mark-scene {
    min-height: clamp(300px, 62vw, 520px);
    aspect-ratio: 1 / 1;
  }

  .hero__logo-core {
    width: min(72%, 430px);
  }

  .hero__logo-core--home {
    width: min(92%, 560px);
    transform: translateY(-24px);
  }

  .hero__mark-scene--apps {
    min-height: clamp(300px, 62vw, 520px);
    aspect-ratio: 1 / 1;
  }

  .hero__logo-core--apps {
    width: min(92%, 560px);
    transform: translateY(-16px);
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.22rem;
  }

  .product-block {
    grid-column: span 12;
  }

  .page-hero__art--orbit {
    min-height: clamp(300px, 55vw, 420px);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 2.5vw;
    width: min(360px, 94vw);
    border-radius: 1rem;
    border: 1px solid rgba(132, 167, 208, 0.34);
    background: rgba(6, 10, 17, 0.97);
    box-shadow: var(--shadow-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__list {
    display: grid;
    width: 100%;
    padding: 0.6rem;
  }

  .site-nav__link {
    justify-content: flex-start;
    min-height: 2.8rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0.75rem;
  }

  .app-tile {
    grid-template-columns: 1fr;
  }

  .app-tile__media img {
    aspect-ratio: 16 / 9;
  }

  .value-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 4.3rem;
    --container-width: min(1140px, 95vw);
    --container-wide: min(1240px, 95vw);
  }

  .brand__role {
    display: none;
  }

  .header-inner {
    gap: 0.7rem;
  }

  .brand__mark {
    width: 2.35rem;
    border-radius: 0.8rem;
  }

  .brand__name {
    font-size: clamp(1.1rem, 5vw, 1.38rem);
    letter-spacing: 0.07em;
  }

  .nav-toggle {
    width: 2.45rem;
    height: 2.45rem;
  }

  .page-shell::before {
    inset: 0.5rem;
  }

  .section {
    padding-block: 2.7rem;
  }

  .page-hero {
    padding-block: 1.9rem 1.3rem;
  }

  .hero__headline {
    margin: 0.44rem 0 0.64rem;
    font-size: clamp(1.75rem, 10.8vw, 2.6rem);
  }

  .hero__headline .hero__headline-role {
    margin-top: 0.38rem;
    font-size: clamp(0.92rem, 4.9vw, 1.2rem);
    letter-spacing: 0.12em;
  }

  .hero__grid {
    gap: 0.45rem;
    padding-block: 0.35rem 0.95rem;
  }

  .hero__content {
    max-width: none;
  }

  .hero__summary {
    font-size: clamp(0.9rem, 3.7vw, 1rem);
    line-height: 1.45;
    max-width: 50ch;
  }

  .app-title {
    gap: 0.52rem;
  }

  .app-title__icon {
    width: 1.74rem;
    height: 1.74rem;
    border-radius: 0.54rem;
  }

  .page-home .hero__visual {
    order: -1;
    margin-top: 0.2rem;
    margin-bottom: 0;
  }

  .page-home .hero__mark-scene {
    min-height: clamp(182px, 53vw, 278px);
    aspect-ratio: 1 / 0.94;
  }

  .page-home .hero__logo-core--home {
    width: min(88%, 320px);
    transform: translateY(-8px);
  }

  .hero__actions {
    margin-top: 0.82rem;
  }

  .page-home .hero__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.34rem;
    align-items: stretch;
  }

  .page-home .hero__actions .btn {
    min-height: 1.98rem;
    padding: 0.3rem 0.22rem;
    font-size: 0.52rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .page-home .circuit-ribbon {
    display: none;
  }

  .manifesto__panel {
    padding: 1rem;
  }

  .manifesto__content {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .manifesto__title {
    font-size: clamp(1.28rem, 7.2vw, 1.86rem);
    letter-spacing: 0.06em;
  }

  .manifesto__text {
    margin-top: 0.72rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .manifesto__metrics {
    gap: 0.56rem;
  }

  .manifesto__metric {
    padding: 0.72rem 0.78rem;
  }

  .manifesto__metric strong {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  .manifesto__metric span {
    font-size: 0.84rem;
  }

  .hero__mark-scene {
    min-height: clamp(280px, 74vw, 460px);
  }

  .hero__logo-core {
    width: min(74%, 360px);
  }

  .hero__logo-core--home {
    width: min(94%, 430px);
    transform: translateY(-18px);
  }

  .hero__mark-scene--apps {
    min-height: clamp(280px, 74vw, 460px);
  }

  .hero__logo-core--apps {
    width: min(94%, 430px);
    transform: translateY(-14px);
  }

  .product-block__footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-block__footer .link-inline {
    justify-self: start;
  }

  .school-links-grid {
    grid-template-columns: 1fr;
  }

  .school-highlight-grid {
    grid-template-columns: 1fr;
  }

  .contact-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.22rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

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

@media (max-width: 680px) and (max-height: 760px) {
  .page-home .hero__mark-scene {
    min-height: clamp(166px, 46vw, 220px);
  }

  .page-home .hero__logo-core--home {
    width: min(82%, 260px);
    transform: translateY(-4px);
  }

  .hero__headline {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
    margin-bottom: 0.48rem;
  }

  .hero__headline .hero__headline-role {
    font-size: clamp(0.82rem, 4.1vw, 1.02rem);
  }

  .hero__summary {
    font-size: clamp(0.84rem, 3.3vw, 0.95rem);
  }

  .page-home .hero__actions .btn {
    min-height: 1.86rem;
    font-size: 0.49rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  canvas#energy-canvas {
    display: none;
  }

  .hero__logo-image {
    animation: none;
    transform: none;
  }

  .hero__particles {
    display: none;
  }

  .photo-orbit__node {
    animation: none;
    transform: none;
  }

  .app-title__icon {
    animation: none;
  }
}
