:root {
  color-scheme: light dark;
  --ink: #0b0c0e;
  --ink-soft: #17191c;
  --paper: #f6f8f7;
  --paper-muted: #e6ecea;
  --text: #17191c;
  --muted: #59615f;
  --gold: #e4aa1b;
  --gold-dark: #9b6c00;
  --cyan: #00a3a3;
  --coral: #df5b49;
  --white: #ffffff;
  --line: #cbd5d2;
  --header-height: 72px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 12, 14, 0.9);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-download {
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--white);
}

.nav-toggle svg,
.button svg,
.hero-next svg,
.feature-item svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle svg {
  width: 25px;
  height: 25px;
}

.hero {
  position: relative;
  min-height: min(920px, 94svh);
  overflow: hidden;
  background: var(--ink) url("assets/images/hero-phoenix.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 5, 0.7);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  min-height: min(920px, 94svh);
  margin: 0 auto;
  padding: calc(var(--header-height) + 74px) 0 72px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(630px, 56%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--gold-dark);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.9;
  font-weight: 900;
  text-wrap: balance;
}

.hero-tagline {
  margin: 24px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
}

.hero-tagline::before {
  width: 42px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(239, 174, 0, 0.55);
  content: "";
}

.hero-tagline span {
  color: var(--gold);
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-primary:hover {
  background: #f4bd35;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(11, 12, 14, 0.5);
}

.button-rustore {
  max-width: 430px;
  min-height: 64px;
  margin-top: 16px;
  padding: 14px 28px;
  gap: 12px;
  background: linear-gradient(135deg, #2f93ff 0%, #0057e0 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 87, 224, 0.4);
}

.button-rustore:hover {
  background: linear-gradient(135deg, #2f93ff 0%, #0048c2 100%);
}

.button-rustore svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

/* «Обсудить на 4PDA» в шапке — рядом с RuStore (Юрий, 19.08.2026: людей на
   форуме много, ссылка должна быть на виду). Цвет — тот же, что у кнопки 4PDA
   в разделе сообщества, размер — как у RuStore. */
.button-4pda {
  max-width: 430px;
  min-height: 64px;
  margin-top: 16px;
  padding: 14px 28px;
  gap: 12px;
  border-color: #1c6da8;
  background: linear-gradient(135deg, #3aa0e0 0%, #1c6da8 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(28, 109, 168, 0.38);
}

.button-4pda:hover {
  background: linear-gradient(135deg, #3aa0e0 0%, #155a8c 100%);
}

.button-4pda svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.release-note,
.download-meta {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.hero-product {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -9%;
  width: 52%;
  height: 90%;
  pointer-events: none;
}

.phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid #050505;
  border-radius: 30px;
  background: #050505;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.52);
}

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

.phone-front {
  right: 2%;
  bottom: 0;
  width: 43%;
  aspect-ratio: 1080 / 2244;
  transform: rotate(3deg);
}

.phone-back {
  right: 34%;
  bottom: 9%;
  width: 38%;
  aspect-ratio: 1080 / 2244;
  opacity: 0.74;
  transform: rotate(-6deg);
}

.hero-next {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transform: translateX(-50%);
}

.hero-next svg {
  width: 18px;
  height: 18px;
}

.section-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.feature-band,
.story-band {
  padding: 110px 0;
  background: var(--paper);
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.02;
  font-weight: 850;
  text-wrap: balance;
}

.section-intro {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 66px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-item {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.feature-item:hover {
  z-index: 1;
  background: var(--paper-muted);
  transform: translateY(-3px);
}

.feature-item:nth-child(3n + 2) svg {
  color: var(--cyan);
}

.feature-item:nth-child(3n + 3) svg {
  color: var(--coral);
}

.feature-item svg {
  width: 34px;
  height: 34px;
  color: var(--gold-dark);
}

.feature-item h3 {
  margin: 30px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
}

.product-tour {
  overflow: hidden;
  padding: 92px 0;
  background: var(--ink-soft);
  color: var(--white);
}

.product-tour-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
}

.product-tour-visual {
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-tour-visual::before {
  position: absolute;
  width: 76%;
  height: 68%;
  border: 1px solid rgba(228, 170, 27, 0.28);
  content: "";
  transform: translate(-44px, 28px);
}

.product-tour-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 590px;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.48);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-tour-visual img.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.product-tour-copy {
  min-width: 0;
}

.product-tour-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
}

.product-tour-intro {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.product-tour-tabs {
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-tour-tabs button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.product-tour-tabs button:last-child {
  border-right: 0;
}

.product-tour-tabs button:hover {
  color: var(--white);
}

.product-tour-tabs button.is-active {
  background: var(--gold);
  color: var(--ink);
}

.product-tour-panel {
  min-height: 268px;
  max-width: 650px;
  padding-top: 30px;
}

.product-tour-panel h3 {
  margin: 0;
  font-size: 27px;
}

.product-tour-panel > p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.product-tour-panel ul {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.product-tour-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.9);
}

.product-tour-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.principles-band {
  padding: 110px 0;
  background: var(--ink-soft);
  color: var(--white);
}

.principles-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 92px;
  align-items: start;
}

.principles-copy {
  padding-top: 34px;
}

.principles-copy > p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.principle-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.principle-line span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.principle-line span:nth-child(1) {
  color: var(--gold);
}

.principle-line span:nth-child(2) {
  color: #62d0cf;
}

.principle-line span:nth-child(3) {
  color: #ff8b7b;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(0, 0.98fr);
  gap: 68px;
  align-items: start;
}

.story-mark {
  position: relative;
  margin: 0;
  text-align: center;
}

.story-mark img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: 1px solid rgba(23, 25, 28, 0.12);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 52px rgba(16, 23, 22, 0.14);
}

.story-mark figcaption {
  margin: 18px 0 0;
  text-align: left;
}

.story-mark figcaption strong,
.story-mark figcaption span {
  display: block;
}

.story-mark figcaption strong {
  color: var(--text);
  font-size: 15px;
}

.story-mark figcaption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-copy > p {
  max-width: 730px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.story-details {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-details summary,
.checksum summary {
  cursor: pointer;
  font-weight: 800;
}

.story-details summary {
  padding: 20px 0;
  color: var(--text);
}

.story-details-content {
  padding: 4px 0 30px;
}

.story-details-content h3 {
  margin: 34px 0 12px;
  font-size: 20px;
}

.story-details-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.download-band {
  padding: 100px 0;
  background: #007a78;
  color: var(--white);
}

.download-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  align-items: start;
}

.download-copy > p:not(.eyebrow):not(.download-meta):not(.download-checksum) {
  max-width: 660px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.download-checksum {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.download-checksum span,
.download-checksum code {
  display: block;
}

.download-checksum code {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  word-break: break-all;
}

.download-platforms {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.download-platform {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(0, 48, 47, 0.24);
}

.download-platform-label {
  margin: 0 0 8px !important;
  color: #bff9f5 !important;
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-platform h3 {
  margin: 0;
  font-size: 24px;
}

.download-platform > p:not(.download-platform-label):not(.download-meta) {
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.download-platform .download-meta {
  margin-top: 16px;
}

.download-checksum-details {
  margin-top: 16px;
}

.download-checksum-details summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.download-checksum-details span {
  margin-top: 12px;
}

.button-light {
  background: var(--white);
  color: #005c5a;
}

.button-light:hover {
  background: #e9ffff;
}

.install-steps {
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.install-steps h3 {
  margin: 0 0 24px;
  font-size: 22px;
}

.install-divider {
  height: 1px;
  margin: 34px 0;
  background: rgba(255, 255, 255, 0.3);
}

.install-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.install-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.install-steps li span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.install-steps li p {
  margin: 1px 0 0;
}

.install-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.community-band {
  padding: 72px 0;
  background: #edf8fb;
  color: var(--ink);
}

.community-layout {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 28px 34px;
  align-items: center;
}

.community-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #229ed9;
  box-shadow: 0 16px 36px rgba(34, 158, 217, 0.24);
}

.community-mark svg {
  width: 42px;
  height: 42px;
  fill: var(--white);
}

.community-layout h2 {
  max-width: 780px;
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
}

.community-layout p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: #526168;
  font-size: 17px;
  line-height: 1.75;
}

.community-button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid #167cad;
  background: #229ed9;
  color: var(--white);
  white-space: nowrap;
}

.community-button:hover {
  background: #167cad;
}

.community-actions {
  display: grid;
  gap: 10px;
}

.community-button-youtube {
  border-color: #c62828;
  background: #e53935;
}

.community-button-youtube:hover {
  background: #c62828;
}

.community-button-vk {
  border-color: #246bd7;
  background: #447bba;
}

.community-button-vk:hover {
  background: #246bd7;
}

.community-button-4pda {
  border-color: #1c6da8;
  background: #2f8dcc;
}

.community-button-4pda:hover {
  background: #1c6da8;
}

.checksum {
  margin-top: 22px;
}

.checksum summary {
  font-size: 13px;
}

.checksum code {
  display: block;
  max-width: 100%;
  margin-top: 12px;
  color: #ceffff;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 52px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
}

.footer-inner strong {
  color: var(--gold);
}

.footer-inner p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  text-decoration: none;
}

.site-stats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 42px;
  padding: 24px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-stat {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 10px;
}

.site-stat span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.site-stat strong {
  min-width: 3ch;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.site-stats.is-unavailable strong {
  color: rgba(255, 255, 255, 0.42);
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.capabilities-hero {
  min-height: 78svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--header-height) + 70px) 0 80px;
  overflow: hidden;
  background-image: url("assets/images/hero-phoenix.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.capabilities-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 7, 0.78);
  content: "";
}

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

.capabilities-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: 78px;
  line-height: 0.96;
}

.capabilities-hero > .section-inner > p:last-child {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 21px;
}

.capability-nav {
  position: sticky;
  z-index: 80;
  top: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 247, 0.96);
  backdrop-filter: blur(12px);
}

.capability-nav .section-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
}

.capability-nav a {
  flex: 0 0 auto;
  padding: 17px 20px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.capability-nav a:hover {
  color: var(--text);
  background: var(--paper-muted);
}

.capability-detail {
  scroll-margin-top: calc(var(--header-height) + 52px);
  padding: 108px 0;
}

.capability-light {
  background: var(--paper);
}

.capability-dark {
  background: var(--ink-soft);
  color: var(--white);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 92px;
  align-items: center;
}

.capability-layout-reverse .capability-copy {
  order: 2;
}

.capability-number {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-dark .capability-number,
.capability-sound .capability-number,
.research-callout .eyebrow {
  color: var(--gold);
}

.capability-copy h2,
.capability-detail > .section-inner > h2,
.skins-layout h2,
.daily-layout h2,
.research-layout h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.02;
}

.capability-lead {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.capability-dark .capability-lead,
.capability-sound .capability-lead,
.research-layout > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.capability-facts {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-facts > div {
  min-height: 146px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-dark .capability-facts {
  border-color: rgba(255, 255, 255, 0.16);
}

.capability-dark .capability-facts > div {
  border-color: rgba(255, 255, 255, 0.16);
}

.capability-facts h3,
.sound-lines h3,
.daily-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.capability-facts p,
.sound-lines p,
.daily-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.capability-dark .capability-facts p,
.capability-sound .sound-lines p {
  color: rgba(255, 255, 255, 0.68);
}

.capability-device {
  margin: 0;
  text-align: center;
}

.capability-device img {
  width: auto;
  height: 580px;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.capability-device figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-dark .capability-device figcaption {
  color: rgba(255, 255, 255, 0.56);
}

.capability-note {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--cyan);
  color: var(--muted);
  font-size: 14px;
}

.capability-sound {
  background: #111315;
  color: var(--white);
}

.capability-sound .capability-lead {
  max-width: 860px;
}

.sound-lines {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.sound-lines > div {
  min-height: 238px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.sound-lines span {
  display: block;
  margin-bottom: 36px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-skins {
  background: #e8efed;
}

.skins-layout,
.daily-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 92px;
  align-items: start;
}

.skin-list {
  border-top: 1px solid var(--line);
}

.skin-list > div {
  display: grid;
  grid-template-columns: 34px minmax(100px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.skin-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.skin-swatch {
  width: 26px;
  height: 26px;
  display: block;
  border: 1px solid rgba(11, 12, 14, 0.2);
  border-radius: 50%;
}

.skin-workshop { background: #17191c; box-shadow: inset 0 0 0 7px #d89d16; }
.skin-minimal { background: #f5f3ee; box-shadow: inset 0 0 0 7px #323a3e; }
.skin-renaissance { background: #321a28; box-shadow: inset 0 0 0 7px #cfaa62; }
.skin-cyber { background: #081b23; box-shadow: inset 0 0 0 7px #00b4b4; }
.skin-vintage { background: #4b3529; box-shadow: inset 0 0 0 7px #c77c45; }

.capability-daily {
  background: var(--paper);
}

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

.daily-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.daily-list > li > span {
  color: var(--gold-dark);
  font-weight: 900;
}

.research-callout {
  padding: 108px 0;
  background: #007a78;
  color: var(--white);
}

.research-layout h2 {
  max-width: 900px;
}

.research-layout > p:not(.eyebrow) {
  max-width: 780px;
  margin: 28px 0 34px;
  font-size: 18px;
}

.guide-start,
.guide-band {
  scroll-margin-top: calc(var(--header-height) + 52px);
}

.guide-start {
  padding: 92px 0;
  background: #e8efed;
}

.guide-start-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 84px;
  align-items: start;
}

.guide-start h2,
.guide-band h2 {
  margin: 0;
  max-width: 900px;
  font-size: 52px;
  line-height: 1.04;
}

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

.guide-routes li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.guide-routes li > span {
  color: var(--gold-dark);
  font-weight: 900;
}

.guide-routes strong {
  display: block;
  font-size: 18px;
}

.guide-routes p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-note,
.guide-warning {
  padding: 18px 22px;
  border-left: 4px solid var(--cyan);
  background: rgba(255, 255, 255, .52);
  color: #42504f;
  font-size: 14px;
}

.guide-note {
  margin-top: 48px;
}

.guide-warning {
  margin-top: 28px;
}

.capability-player {
  background: #202326;
  color: var(--white);
}

.capability-player .capability-number {
  color: var(--gold);
}

.capability-player .capability-lead,
.capability-player .capability-facts p,
.capability-player .capability-device figcaption {
  color: rgba(255, 255, 255, .68);
}

.capability-player .capability-facts,
.capability-player .capability-facts > div {
  border-color: rgba(255, 255, 255, .16);
}

.guide-band {
  padding: 104px 0;
}

.guide-band-dark {
  background: #0f1113;
  color: var(--white);
}

.guide-band-light {
  background: var(--paper);
}

.guide-band-dark .capability-lead {
  color: rgba(255, 255, 255, .7);
}

.guide-action-table {
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.guide-action-row {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.guide-action-row strong {
  color: var(--gold);
}

.guide-action-row span {
  color: rgba(255, 255, 255, .75);
}

.guide-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guide-columns article {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-columns h3,
.guide-help-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.guide-columns p,
.guide-columns li,
.guide-help-grid p {
  color: var(--muted);
  font-size: 15px;
}

.guide-columns ul {
  padding-left: 20px;
}

.guide-limit {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px !important;
}

.guide-settings {
  background: #dfe9e7;
}

.guide-settings-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 86px;
  align-items: start;
}

.settings-index {
  margin: 0;
  border-top: 1px solid #bdcbc8;
}

.settings-index > div {
  display: grid;
  grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr);
  gap: 26px;
  padding: 20px 0;
  border-bottom: 1px solid #bdcbc8;
}

.settings-index dt {
  font-weight: 900;
}

.settings-index dd {
  margin: 0;
  color: #53615f;
}

.guide-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guide-help-grid > div {
  min-height: 160px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-help-grid p {
  margin: 0;
}

.guide-support-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  margin-top: 34px;
}

.guide-support-line a {
  color: #007d7a;
  font-weight: 800;
}

@media (max-width: 980px) {
  .community-layout {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .community-mark {
    width: 68px;
    height: 68px;
  }

  .community-actions {
    grid-column: 2;
    justify-self: start;
  }

  .capabilities-hero h1 {
    font-size: 62px;
  }

  .capability-layout,
  .skins-layout,
  .daily-layout,
  .guide-start-layout,
  .guide-settings-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .guide-columns {
    grid-template-columns: 1fr;
  }

  .capability-layout-reverse .capability-copy {
    order: 0;
  }

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

  .hero-copy {
    width: 66%;
  }

  .hero-product {
    right: -8%;
    width: 56%;
  }

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

  .feature-item:nth-child(3n + 2) svg,
  .feature-item:nth-child(3n + 3) svg {
    color: var(--gold-dark);
  }

  .feature-item:nth-child(even) svg {
    color: var(--cyan);
  }

  .principles-layout,
  .download-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .principles-copy {
    padding-top: 0;
  }

  .install-steps {
    padding: 38px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .story-layout {
    gap: 48px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 62px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand {
    font-size: 12px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    padding: 34px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
  }

  .site-nav .nav-download {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 6px;
    text-align: center;
  }

  .community-band {
    padding: 58px 0;
  }

  .community-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .community-mark {
    width: 62px;
    height: 62px;
  }

  .community-mark svg {
    width: 32px;
    height: 32px;
  }

  .community-layout h2 {
    font-size: 34px;
  }

  .community-layout p:not(.eyebrow) {
    font-size: 16px;
  }

  .community-actions {
    grid-column: 1;
    width: 100%;
  }

  .community-button {
    width: 100%;
    justify-content: center;
  }

  .capabilities-hero {
    min-height: 74svh;
    padding: calc(var(--header-height) + 54px) 0 62px;
  }

  .capabilities-hero h1 {
    font-size: 44px;
  }

  .capabilities-hero > .section-inner > p:last-child {
    margin-top: 24px;
    font-size: 17px;
  }

  .capability-nav a {
    padding: 14px 16px;
  }

  .capability-detail,
  .research-callout {
    padding: 76px 0;
  }

  .capability-copy h2,
  .capability-detail > .section-inner > h2,
  .skins-layout h2,
  .daily-layout h2,
  .research-layout h2 {
    font-size: 38px;
  }

  .capability-lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .capability-facts,
  .sound-lines {
    grid-template-columns: 1fr;
  }

  .capability-facts > div,
  .sound-lines > div {
    min-height: 0;
  }

  .sound-lines {
    margin-top: 44px;
  }

  .sound-lines span {
    margin-bottom: 20px;
  }

  .capability-device img {
    height: 480px;
  }

  .skin-list > div {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px 16px;
    padding: 18px 0;
  }

  .skin-list p {
    grid-column: 2;
  }

  .daily-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 16px;
  }

  .guide-start,
  .guide-band {
    padding: 72px 0;
  }

  .guide-start h2,
  .guide-band h2 {
    font-size: 38px;
  }

  .guide-action-row,
  .settings-index > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .guide-help-grid {
    grid-template-columns: 1fr;
  }

  .product-tour-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .product-tour-tabs button {
    flex: 1 0 auto;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-inner {
    width: min(100% - 36px, 620px);
    min-height: 86svh;
    padding-top: calc(var(--header-height) + 44px);
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .button-rustore,
  .button-4pda {
    max-width: 100%;
    min-height: 56px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .button-rustore svg,
  .button-4pda svg {
    width: 20px;
    height: 20px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-lead {
    max-width: 92%;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .release-note {
    max-width: 68%;
  }

  .hero-product {
    right: -16%;
    bottom: -12%;
    width: 70%;
    height: 58%;
    opacity: 0.56;
  }

  .phone-back {
    display: none;
  }

  .phone-front {
    right: 4%;
    width: 58%;
  }

  .hero-next {
    display: none;
  }

  .section-inner,
  .footer-inner {
    width: min(100% - 36px, 620px);
  }

  .feature-band,
  .story-band,
  .principles-band,
  .download-band {
    padding: 78px 0;
  }

  h2 {
    font-size: clamp(35px, 11vw, 52px);
  }

  .section-intro,
  .story-copy > p,
  .principles-copy > p,
  .download-copy > p:not(.eyebrow):not(.download-meta):not(.download-checksum) {
    font-size: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .feature-item {
    min-height: 0;
    padding: 28px 24px;
  }

  .feature-item:nth-child(even) svg {
    color: var(--cyan);
  }

  .feature-item:nth-child(3n) svg {
    color: var(--coral);
  }

  .product-tour {
    padding: 72px 0;
  }

  .product-tour-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .product-tour-visual {
    min-height: 480px;
  }

  .product-tour-visual img {
    height: 480px;
  }

  .product-tour-copy {
    order: -1;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-mark {
    position: static;
    width: min(76vw, 320px);
    margin: 0 auto;
  }

  .download-layout {
    gap: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-note {
    grid-column: 1;
  }

  .site-stats {
    grid-column: 1;
    gap: 14px 28px;
  }
}

@media (max-width: 390px) {
  .site-stat {
    width: 100%;
    justify-content: space-between;
  }

  .capabilities-hero h1 {
    font-size: 39px;
  }

  .capability-device img {
    height: 420px;
  }

  .hero-tagline {
    gap: 9px;
    font-size: 17px;
  }

  .hero-tagline::before {
    width: 28px;
  }

  .product-tour-tabs {
    width: 100%;
  }

  .product-tour-tabs button {
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 10px;
    font-size: 14px;
  }

  .product-tour-visual,
  .product-tour-visual img {
    min-height: 0;
    height: 430px;
  }

  .hero-lead {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero-product {
    opacity: 0.42;
  }
}

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

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

/* SHIKARDOS portal */
.portal-page {
  background: var(--paper);
}

.portal-hero {
  position: relative;
  min-height: 74svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 90px) 0 86px;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.portal-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 8, 0.66);
  content: "";
}

.team-hero {
  background-image: url("assets/images/future-creative-studio.webp");
}

.portal-hero-copy {
  position: relative;
  z-index: 1;
}

.portal-hero h1 {
  max-width: 980px;
  font-size: clamp(54px, 8vw, 108px);
}

.portal-hero-copy > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.team-intro,
.team-directory,
.member-story {
  padding: 104px 0;
}

.team-intro-layout,
.member-story-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 90px;
  align-items: start;
}

.team-intro-layout .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -50px;
}

.team-intro h2,
.member-story h2,
.member-contribution h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.team-intro-layout > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.team-directory {
  padding-top: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.person-card {
  position: relative;
  grid-column: span 2;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-soft);
  color: var(--white);
  text-decoration: none;
}

.person-card-lead {
  grid-column: span 2;
  min-height: 0;
}

.person-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.person-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.person-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 360ms ease;
}

.person-card::after {
  display: none;
}

/* Leather workshop */
.craft-hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 74px) 0 70px;
  background: #15120f url("assets/images/craft/craft-02.webp") center 40% / cover no-repeat;
  color: var(--white);
}

.craft-hero-shade,
.creativity-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 9, 0.69);
}

.craft-hero-copy,
.creativity-hero-copy {
  position: relative;
  z-index: 1;
}

.craft-hero h1,
.creativity-hero h1,
.media-hero h1,
.books-hero h1,
.reading-hero h1 {
  max-width: 940px;
  font-size: clamp(54px, 8vw, 106px);
}

.craft-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.craft-story,
.craft-gallery-section,
.creative-directory,
.studio-future,
.reader-section,
.elei-reader {
  padding: 110px 0;
}

.craft-story-layout,
.craft-visit-layout,
.studio-future-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.craft-story h2,
.craft-gallery-section h2,
.creative-directory h2,
.studio-future h2,
.book-heading h2,
.kailos-section h2 {
  margin: 0;
  font-size: clamp(40px, 5.5vw, 70px);
  line-height: 1;
}

.craft-story-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 19px;
}

.craft-story-copy a {
  color: #006e6c;
  font-weight: 700;
}

.craft-values {
  background: #123833;
  color: var(--white);
}

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

.craft-values-grid > div {
  min-height: 300px;
  padding: 46px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.craft-values-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.craft-values-grid span {
  color: #70d3c3;
  font-size: 13px;
  font-weight: 900;
}

.craft-values-grid h3 {
  margin: 70px 0 12px;
  font-size: 25px;
}

.craft-values-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.craft-gallery {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.craft-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-muted);
}

.craft-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 300ms ease;
}

.craft-gallery figure:nth-child(4n + 1) {
  grid-row: span 2;
}

.craft-gallery figure:nth-child(4n + 1) img {
  height: 100%;
  aspect-ratio: auto;
}

.craft-gallery figure:hover img {
  transform: scale(1.02);
}

.craft-visit {
  padding: 110px 0;
  background: #16181a;
  color: var(--white);
}

.craft-contact > p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.contact-line {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.contact-line span {
  color: #70d3c3;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-line strong {
  font-size: 20px;
}

/* Creativity hub */
.creativity-hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) 0 78px;
  background: var(--ink);
  color: var(--white);
}

.creativity-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creativity-hero-copy > p:last-child {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.creative-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.creative-card {
  min-height: 570px;
  display: grid;
  grid-template-rows: 310px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  text-decoration: none;
}

.creative-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creative-card-books img {
  object-position: center top;
}

.creative-card > span {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.creative-card small {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.creative-card strong {
  margin-top: 5px;
  font-size: 26px;
}

.creative-card p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.creative-card b {
  margin-top: auto;
  color: #007a78;
}

.studio-future {
  background: #007a78;
  color: var(--white);
}

.studio-future-layout .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.studio-future-layout > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

/* Music */
.media-hero,
.books-hero {
  padding: calc(var(--header-height) + 62px) 0 72px;
  background: #111315;
  color: var(--white);
}

.media-hero-layout,
.books-hero-layout {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 72px;
  align-items: center;
}

.media-hero-layout > div > p:last-child,
.books-hero-layout > div > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.media-hero img,
.books-hero img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 6px;
}

.music-room {
  padding: 104px 0;
  background: #dce6e3;
}

.music-room-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
}

.web-player {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  min-height: 510px;
  padding: 42px;
  border-radius: 6px;
  background: #141719;
  color: var(--white);
}

.player-kicker {
  margin: 0 0 70px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.web-player h2 {
  min-height: 108px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.player-status {
  min-height: 26px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.player-progress {
  margin-top: 54px;
}

.player-progress input {
  width: 100%;
  accent-color: var(--gold);
}

.player-progress > div {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.player-controls {
  height: 76px;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.player-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 20px;
}

.player-controls .player-main-control {
  width: 72px;
  height: 72px;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-size: 25px;
}

.library-search {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.library-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #aebcba;
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  text-transform: none;
}

.track-list {
  margin-top: 24px;
  border-top: 1px solid #aebcba;
}

.track-row {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid #aebcba;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.track-row:hover,
.track-row.is-current {
  background: rgba(255, 255, 255, 0.62);
}

.track-number,
.track-note {
  color: var(--muted);
  font-size: 12px;
}

.track-title {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.rights-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.library-empty {
  margin: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

/* Readers */
.reading-hero {
  padding: calc(var(--header-height) + 100px) 0 96px;
  border-bottom: 1px solid var(--line);
  background: #edf2f0;
}

.reading-hero > .section-inner > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.reader-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: 72px;
  align-items: start;
}

.reader-index {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  max-height: calc(100svh - var(--header-height) - 48px);
  overflow: auto;
}

.reader-list {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.reader-list button {
  width: 100%;
  min-height: 58px;
  padding: 13px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
}

.reader-list button:hover,
.reader-list button.is-current {
  color: #006e6c;
  background: #e6ecea;
}

.reader-content {
  min-width: 0;
  max-width: 760px;
}

.reader-content h2,
.reader-content h3 {
  margin: 0 0 38px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
}

.poem-body,
.chapter-body {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #343b39;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.8;
}

.poem-body p {
  margin: 0;
}

.books-hero {
  background: #102b2a;
}

.book-heading {
  max-width: 780px;
  margin-bottom: 64px;
}

.book-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.book-reader-layout {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.chapter-body {
  font-size: 18px;
}

.kailos-section {
  padding: 110px 0;
  background: #181a1c;
  color: var(--white);
}

.kailos-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 88px;
  align-items: center;
}

.kailos-layout > img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  object-position: center;
}

.kailos-layout > div > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.text-download {
  display: inline-block;
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

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

  .creative-card:last-child {
    grid-column: 1 / -1;
  }

  .music-room-layout,
  .reader-layout,
  .kailos-layout {
    grid-template-columns: 1fr;
  }

  .web-player,
  .reader-index {
    position: static;
  }

  .reader-index {
    max-height: 440px;
  }
}

@media (max-width: 760px) {
  .craft-hero,
  .creativity-hero {
    min-height: 86svh;
  }

  .craft-hero h1,
  .creativity-hero h1,
  .media-hero h1,
  .books-hero h1,
  .reading-hero h1 {
    font-size: 48px;
  }

  .craft-story,
  .craft-gallery-section,
  .creative-directory,
  .studio-future,
  .reader-section,
  .elei-reader,
  .music-room,
  .kailos-section,
  .craft-visit {
    padding-block: 76px;
  }

  .craft-story-layout,
  .craft-visit-layout,
  .studio-future-layout,
  .media-hero-layout,
  .books-hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .studio-future-layout .eyebrow {
    margin-bottom: -18px;
  }

  .craft-values-grid {
    grid-template-columns: 1fr;
  }

  .craft-values-grid > div,
  .craft-values-grid > div:last-child {
    min-height: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .craft-values-grid h3 {
    margin-top: 32px;
  }

  .craft-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .creative-grid {
    grid-template-columns: 1fr;
  }

  .creative-card:last-child {
    grid-column: auto;
  }

  .creative-card {
    min-height: 0;
    grid-template-rows: 280px auto;
  }

  .media-hero-layout,
  .books-hero-layout {
    min-height: 0;
  }

  .media-hero img,
  .books-hero img {
    height: 460px;
  }

  .web-player {
    min-height: 0;
    padding: 30px 24px;
  }

  .player-kicker {
    margin-bottom: 42px;
  }

  .web-player h2 {
    min-height: 82px;
  }

  .reader-index {
    max-height: 360px;
  }

  .poem-body,
  .chapter-body {
    font-size: 17px;
  }

  .text-download {
    display: block;
    margin: 18px 0 0;
  }
}

@media (max-width: 440px) {
  .craft-gallery {
    grid-template-columns: 1fr;
  }

  .craft-gallery figure:nth-child(4n + 1) {
    grid-row: auto;
  }

  .craft-gallery figure:nth-child(4n + 1) img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.person-card:hover img {
  transform: scale(1.025);
}

.person-card-copy {
  position: static;
  display: grid;
  min-height: 116px;
  padding: 20px 22px 22px;
  background: #111315;
}

.person-card-copy small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.person-card-copy strong {
  margin-top: 4px;
  font-size: 25px;
  line-height: 1.15;
}

.person-card-copy span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.team-manifesto {
  padding: 110px 0;
  background: #007a78;
  color: var(--white);
}

.manifesto-layout blockquote {
  max-width: 980px;
  margin: 0;
  font-size: clamp(31px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.12;
}

.member-hero {
  padding: calc(var(--header-height) + 70px) 0 90px;
  background: #111315;
  color: var(--white);
}

.member-hero-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 76px;
  align-items: center;
}

.member-portrait {
  height: min(650px, 70svh);
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}

.member-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.back-link {
  display: inline-block;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.member-heading h1 {
  font-size: clamp(52px, 7vw, 96px);
}

.member-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.member-story-layout > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.member-prose p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 19px;
}

.member-contribution {
  padding: 104px 0;
  background: #e8efed;
}

.member-video {
  padding: 88px 0;
  background: #090b0e;
  color: var(--white);
}

.member-video[hidden] {
  display: none;
}

.member-video-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(300px, 1.3fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.member-video-copy h2 {
  max-width: 12ch;
  margin: 10px 0 20px;
}

.member-video-copy > p:not(.eyebrow) {
  max-width: 42rem;
  color: #b9c0c8;
  line-height: 1.75;
}

.member-video-copy .text-link {
  display: inline-block;
  margin-top: 18px;
  color: #f3b61f;
  font-weight: 800;
  text-decoration: none;
}

.member-video-frame {
  width: min(100%, 460px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  background: #000;
  border: 1px solid #333a42;
  border-radius: 6px;
}

.member-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.member-links {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.member-links a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.member-links strong {
  font-size: 23px;
}

.member-links span {
  margin-top: 8px;
  color: var(--muted);
}

.member-links small {
  margin-top: auto;
  color: var(--gold-dark);
  font-weight: 800;
}

.orion-visual {
  padding: 100px 0;
  background: var(--ink);
  color: var(--white);
}

.orion-visual[hidden] {
  display: none;
}

.orion-visual img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 6px;
}

.orion-visual p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.shannon-note {
  margin: 34px 0;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #edf2f0;
}

.shannon-note img {
  width: 108px;
  height: 132px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
}

.shannon-note figcaption {
  display: grid;
}

.shannon-note strong {
  font-size: 18px;
}

.shannon-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.shannon-note a {
  margin-top: 8px;
  color: #006e6c;
  font-size: 12px;
  font-weight: 800;
}

.portal-band {
  padding: 110px 0;
  background: #e5ecea;
}

.portal-band h2 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.portal-links {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portal-links > a {
  min-height: 520px;
  display: grid;
  grid-template-rows: 320px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  text-decoration: none;
}

.portal-links img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-links a > span {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.portal-links small {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-links strong {
  margin-top: 4px;
  font-size: 27px;
}

.portal-links b {
  margin-top: auto;
  color: #007a78;
}

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

  .portal-links > a:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .portal-band {
    padding: 76px 0;
  }

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

  .portal-links > a,
  .portal-links > a:last-child {
    grid-column: auto;
    min-height: 0;
    grid-template-rows: 280px auto;
  }

  .shannon-note {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .shannon-note img {
    width: 84px;
    height: 108px;
  }
}

@media (max-width: 900px) {
  .team-intro-layout,
  .member-story-layout,
  .member-hero-layout,
  .member-video-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .team-intro-layout .eyebrow {
    margin-bottom: -16px;
  }

  .member-story-layout > div:first-child {
    position: static;
  }

  .person-card,
  .person-card-lead {
    grid-column: span 3;
    min-height: 0;
  }

  .person-card:nth-child(4) {
    grid-column: span 3;
  }

  .person-card:nth-child(5) {
    grid-column: 2 / span 3;
  }

  .member-portrait {
    height: 620px;
  }
}

@media (max-width: 620px) {
  .portal-hero {
    min-height: 78svh;
    padding: calc(var(--header-height) + 64px) 0 58px;
  }

  .portal-hero h1 {
    font-size: 48px;
  }

  .portal-hero-copy > p:last-child,
  .member-lead {
    font-size: 17px;
  }

  .team-intro,
  .team-directory,
  .member-story,
  .member-contribution,
  .member-video,
  .team-manifesto,
  .orion-visual {
    padding-block: 72px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .person-card,
  .person-card-lead,
  .person-card:nth-child(4),
  .person-card:nth-child(5) {
    grid-column: 1;
    min-height: 0;
  }

  .member-hero {
    padding: calc(var(--header-height) + 34px) 0 64px;
  }

  .member-portrait {
    height: 500px;
  }

  .member-heading h1 {
    font-size: 48px;
  }

  .back-link {
    margin-bottom: 28px;
  }

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

  .member-links a {
    min-height: 160px;
  }
}
.technology-band {
  background: #101419;
  color: #f5f7f8;
  padding: 88px 0 96px;
}

.technology-band h2 {
  max-width: 900px;
  margin: 12px 0 20px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.technology-intro {
  max-width: 820px;
  margin: 0 0 48px;
  color: #b7c0c6;
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.technology-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #303840;
  border-radius: 6px;
  background: #171c22;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.technology-card:hover {
  transform: translateY(-4px);
  border-color: #8d6b17;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.technology-grid img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 1px solid #303840;
}

.technology-grid .technology-card:first-child img {
  object-position: 50% 38%;
}

.technology-grid .technology-card:nth-child(2) img {
  object-position: 50% 12%;
}

.technology-grid .technology-card:nth-child(3) img {
  object-position: 50% 13%;
}

.technology-card > div {
  padding: 24px;
}

.technology-grid span {
  color: #f0b51e;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.technology-grid h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: 1.5rem;
}

.technology-grid p {
  margin: 0;
  color: #b7c0c6;
  line-height: 1.6;
}

.technology-card > div > strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #f0b51e;
  font-size: .84rem;
  text-transform: uppercase;
}

.technology-card > div > strong b {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.technology-card:hover > div > strong b {
  transform: translateX(5px);
}

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

  .technology-card {
    display: grid;
    grid-template-columns: minmax(180px, .8fr) 1fr;
  }

  .technology-grid img {
    height: 100%;
    min-height: 260px;
    border-right: 1px solid #303840;
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .technology-band {
    padding: 64px 0 72px;
  }

  .technology-card {
    display: block;
  }

  .technology-grid img {
    height: 240px;
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid #303840;
  }
}

/* Detailed technology pages */
.technology-page {
  background: #0f1419;
}

.technology-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #08090b;
  color: #fff;
}

.technology-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 36%;
}

.technology-hero-crystal > img {
  object-position: 72% 50%;
}

.technology-hero-grain > img {
  object-position: 67% 45%;
}

.technology-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 9, .98) 0%, rgba(5, 7, 9, .88) 38%, rgba(5, 7, 9, .32) 72%, rgba(5, 7, 9, .5) 100%);
}

.technology-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 126px;
  padding-bottom: 72px;
}

.technology-hero-copy h1 {
  max-width: 790px;
  margin: 16px 0 24px;
  color: #fff;
  font-size: 5.2rem;
  line-height: .94;
}

.technology-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 32px;
  color: #d5dbe0;
  font-size: 1.24rem;
  line-height: 1.7;
}

.technology-subnav {
  position: sticky;
  z-index: 60;
  top: var(--header-height);
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid #d6ddda;
  background: rgba(247, 249, 248, .96);
  color: #1b2227;
}

.technology-subnav::-webkit-scrollbar {
  display: none;
}

.technology-subnav .section-inner {
  display: flex;
  gap: 34px;
  min-width: max-content;
}

.technology-subnav a {
  padding: 17px 0 15px;
  border-bottom: 3px solid transparent;
  font-weight: 750;
  text-decoration: none;
}

.technology-subnav a:hover {
  border-color: #dca30f;
}

.technology-section {
  padding: 92px 0;
  scroll-margin-top: calc(var(--header-height) + 62px);
}

.technology-section h2 {
  max-width: 900px;
  margin: 12px 0 28px;
  font-size: 3.1rem;
  line-height: 1.08;
}

.technology-section-light {
  background: #f4f7f6;
  color: #15191d;
}

.technology-section-dark {
  background: #11161b;
  color: #fff;
}

.technology-section-accent {
  background: #dda916;
  color: #111315;
}

.technology-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: start;
}

.technology-prose {
  max-width: 760px;
  font-size: 1.14rem;
  line-height: 1.85;
}

.technology-prose p {
  margin: 0 0 24px;
}

.technology-section-dark .technology-prose,
.technology-section-dark .technology-lead {
  color: #bfc8ce;
}

.grain-explainer {
  background: #f7f9f8;
}

.grain-explainer-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.grain-listener-outcomes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid #cbd5d2;
  border-left: 1px solid #cbd5d2;
}

.grain-listener-outcomes > div {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid #cbd5d2;
  border-bottom: 1px solid #cbd5d2;
}

.grain-listener-outcomes span,
.grain-simple-steps > li > span {
  color: #b37f00;
  font-weight: 900;
}

.grain-listener-outcomes h3 {
  margin: 26px 0 10px;
  font-size: 1.12rem;
}

.grain-listener-outcomes p,
.grain-simple-steps p {
  margin: 0;
  color: #596462;
  line-height: 1.65;
}

.grain-in-player {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
  margin-top: 92px;
  padding-top: 74px;
  border-top: 1px solid #cbd5d2;
}

.grain-simple-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid #cbd5d2;
  list-style: none;
}

.grain-simple-steps > li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #cbd5d2;
}

.grain-simple-steps h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.grain-plain-truth {
  display: grid;
  grid-template-columns: minmax(180px, .3fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 72px;
  padding: 30px 0;
  border-top: 2px solid #dca30f;
  border-bottom: 1px solid #cbd5d2;
}

.grain-plain-truth strong {
  font-size: 1.25rem;
}

.grain-plain-truth p {
  max-width: 900px;
  margin: 0;
  color: #4e5a58;
  font-size: 1.05rem;
  line-height: 1.75;
}

.technology-lead {
  max-width: 780px;
  color: #53605f;
  font-size: 1.12rem;
  line-height: 1.75;
}

.technology-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid #39434b;
  border-bottom: 1px solid #39434b;
  list-style: none;
}

.technology-flow li {
  min-width: 0;
  padding: 30px;
  border-right: 1px solid #39434b;
}

.technology-flow li:last-child {
  border-right: 0;
}

.technology-flow li > span,
.research-pillars span,
.lab-stages > li > span {
  color: #e5ac19;
  font-weight: 900;
}

.technology-flow h3 {
  margin: 28px 0 10px;
  font-size: 1.18rem;
}

.technology-flow p {
  margin: 0;
  color: #aeb8bf;
  line-height: 1.65;
}

.technology-flow-light {
  border-color: #ccd6d2;
}

.technology-flow-light li {
  border-color: #ccd6d2;
}

.technology-flow-light p {
  color: #56615f;
}

.technology-device-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 90px;
  align-items: center;
}

.technology-phone {
  margin: 0;
  text-align: center;
}

.technology-phone img {
  width: auto;
  height: 650px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .2);
}

.technology-phone figcaption {
  margin-top: 14px;
  color: #64706e;
  font-size: .88rem;
}

.technology-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbd5d2;
  border-left: 1px solid #cbd5d2;
}

.technology-facts > div {
  min-width: 0;
  padding: 25px;
  border-right: 1px solid #cbd5d2;
  border-bottom: 1px solid #cbd5d2;
}

.technology-facts strong {
  font-size: 1.1rem;
}

.technology-facts p {
  margin: 8px 0 0;
  color: #596462;
}

.station-genres {
  margin-top: 90px;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cbd5d2;
  border-left: 1px solid #cbd5d2;
}

.genre-grid > div {
  padding: 28px;
  border-right: 1px solid #cbd5d2;
  border-bottom: 1px solid #cbd5d2;
}

.genre-grid h3 {
  margin: 0 0 10px;
}

.genre-grid p {
  margin: 0;
  color: #596462;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border: 1px solid #39434b;
}

.metric-strip > div {
  padding: 26px;
  border-right: 1px solid #39434b;
}

.metric-strip > div:last-child {
  border-right: 0;
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: #e7b128;
  font-size: 1.25rem;
}

.metric-strip span {
  margin-top: 6px;
  color: #aeb8bf;
}

.technology-future {
  max-width: 980px;
}

.technology-future p:not(.eyebrow) {
  max-width: 850px;
  font-size: 1.17rem;
  line-height: 1.8;
}

.technology-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.technology-section-accent .button-primary {
  background: #111315;
  color: #fff;
}

.technology-section-accent .button-secondary {
  border-color: #111315;
  color: #111315;
}

.curve-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: center;
}

.frequency-curve {
  position: relative;
  height: 360px;
  border: 1px solid #39434b;
  background-image: linear-gradient(#232b31 1px, transparent 1px), linear-gradient(90deg, #232b31 1px, transparent 1px);
  background-size: 100% 25%, 20% 100%;
}

.frequency-curve svg {
  position: absolute;
  inset: 20px 24px 20px;
  width: calc(100% - 48px);
  height: calc(100% - 40px);
}

.frequency-curve path {
  fill: none;
  stroke: #e5ac19;
  stroke-width: 8;
  vector-effect: non-scaling-stroke;
}

.frequency-curve > div {
  position: absolute;
  z-index: 2;
  left: clamp(38px, var(--x), calc(100% - 38px));
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 78px;
  text-align: center;
}

.frequency-curve > div::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 10px;
  border: 3px solid #11161b;
  border-radius: 50%;
  background: #e5ac19;
  box-shadow: 0 0 0 2px #e5ac19;
}

.frequency-curve strong,
.frequency-curve span {
  display: block;
  font-size: .82rem;
}

.frequency-curve span {
  color: #aeb8bf;
}

.control-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: 70px;
  align-items: center;
}

.crystal-control {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  color: #d7dde1;
  font-weight: 800;
}

.crystal-control div {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, #3b454c, #e5ac19);
}

.crystal-control i {
  display: block;
  width: 30px;
  height: 30px;
  margin: -10px 0 0 62%;
  border: 4px solid #11161b;
  border-radius: 50%;
  background: #e5ac19;
  box-shadow: 0 0 0 2px #e5ac19;
}

.research-pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid #39434b;
  border-left: 1px solid #39434b;
}

.research-pillars > div {
  padding: 28px;
  border-right: 1px solid #39434b;
  border-bottom: 1px solid #39434b;
}

.research-pillars h3 {
  margin: 28px 0 10px;
  font-size: 1.08rem;
}

.research-pillars p {
  margin: 0;
  color: #aeb8bf;
}

.lab-stages {
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid #cbd5d2;
  list-style: none;
}

.lab-stages > li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid #cbd5d2;
}

.lab-stages h3 {
  margin: 0 0 8px;
}

.lab-stages p {
  max-width: 850px;
  margin: 0;
  color: #596462;
}

@media (max-width: 980px) {
  .technology-hero {
    min-height: 650px;
  }

  .technology-hero-copy h1 {
    font-size: 4rem;
  }

  .technology-intro-grid,
  .technology-device-layout,
  .curve-layout,
  .control-demo,
  .grain-explainer-intro,
  .grain-in-player {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .technology-flow li:nth-child(2),
  .metric-strip > div:nth-child(2) {
    border-right: 0;
  }

  .technology-flow li:nth-child(-n+2),
  .metric-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid #39434b;
  }

  .technology-flow-light li:nth-child(-n+2) {
    border-bottom-color: #ccd6d2;
  }

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

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

@media (max-width: 620px) {
  .technology-hero {
    min-height: 590px;
  }

  .technology-hero > img {
    opacity: .62;
    object-position: 58% 50%;
  }

  .technology-hero-overlay {
    background: linear-gradient(180deg, rgba(5, 7, 9, .48), rgba(5, 7, 9, .95) 78%);
  }

  .technology-hero-copy {
    align-self: flex-end;
    padding-top: 124px;
    padding-bottom: 54px;
  }

  .technology-hero-copy h1 {
    font-size: 2.8rem;
  }

  .technology-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .technology-section {
    padding: 64px 0;
  }

  .technology-section h2 {
    font-size: 2.15rem;
  }

  .technology-flow,
  .metric-strip,
  .technology-facts,
  .genre-grid,
  .research-pillars,
  .grain-listener-outcomes,
  .grain-plain-truth {
    grid-template-columns: 1fr;
  }

  .grain-in-player {
    margin-top: 64px;
    padding-top: 54px;
  }

  .grain-plain-truth {
    gap: 12px;
    margin-top: 54px;
  }

  .technology-flow li,
  .metric-strip > div {
    border-right: 0;
    border-bottom: 1px solid #39434b;
  }

  .technology-flow li:last-child,
  .metric-strip > div:last-child {
    border-bottom: 0;
  }

  .technology-flow-light li {
    border-bottom-color: #ccd6d2;
  }

  .technology-phone img {
    width: 100%;
    height: auto;
  }

  .frequency-curve {
    height: 320px;
  }

  .frequency-curve > div {
    width: 60px;
  }

  .frequency-curve strong,
  .frequency-curve span {
    font-size: .7rem;
  }

  .control-demo {
    gap: 34px;
  }

  .lab-stages > li {
    grid-template-columns: 46px 1fr;
    gap: 16px;
  }
}


/* ============================================================
   Manual page (manual.html) + плотная навигация для 7 пунктов
   ============================================================ */

@media (max-width: 1240px) and (min-width: 761px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 13px;
  }
}

@media (max-width: 1020px) and (min-width: 761px) {
  .site-nav {
    gap: 12px;
  }

  .site-header {
    gap: 14px;
  }

  .brand span {
    font-size: 12px;
  }
}

.manual-shot {
  margin: 0;
}

.manual-shot img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.manual-shot figcaption {
  margin-top: 12px;
  font-size: 0.88rem;
  opacity: 0.72;
  line-height: 1.5;
}

.manual-shot-portrait img {
  max-width: 300px;
  margin: 0 auto;
}

.manual-shot-portrait figcaption {
  text-align: center;
}

.manual-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
  align-items: start;
}

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

.manual-placeholder {
  border: 1.5px dashed rgba(228, 170, 27, 0.55);
  border-radius: 14px;
  padding: 42px 24px;
  text-align: center;
  font-size: 0.92rem;
  opacity: 0.75;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 200px;
}

.manual-note {
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin-top: 28px;
  background: rgba(228, 170, 27, 0.07);
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.technology-section-light .manual-note {
  background: rgba(155, 108, 0, 0.08);
  border-left-color: var(--gold-dark);
}

@media (max-width: 980px) {
  .manual-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .manual-gallery,
  .manual-gallery-2 {
    grid-template-columns: 1fr;
  }

  .manual-shot-portrait img {
    max-width: 260px;
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .site-header {
    padding-inline: 14px;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .site-nav .nav-download {
    padding: 6px 10px;
  }
}