:root {
  --ink: #05070b;
  --ink-2: #090d13;
  --panel: #0d121a;
  --panel-2: #111824;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f5f7fb;
  --muted: #a9b1bd;
  --red: #ff2b32;
  --red-soft: rgba(255, 43, 50, 0.22);
  --blue: #22a8ff;
  --blue-soft: rgba(34, 168, 255, 0.22);
  --silver: #d6dae1;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1240px;
  --header-h: 72px;
  --focus: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 43, 50, 0.08), transparent 30rem),
    radial-gradient(circle at 88% 28%, rgba(34, 168, 255, 0.08), transparent 32rem),
    var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  background: #fff;
  color: #000;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.88);
  backdrop-filter: blur(18px) saturate(130%);
}
.header-inner {
  width: min(calc(100% - 32px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .02em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--line), 0 0 30px rgba(34, 168, 255, 0.08);
}
.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .92rem;
}
.header-axis {
  flex: 1;
  height: 1px;
  position: relative;
  background: linear-gradient(90deg, var(--red), rgba(255,255,255,.16) 40%, rgba(255,255,255,.16) 60%, var(--blue));
  opacity: .7;
}
.header-axis::before,
.header-axis::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.header-axis::before { left: 0; background: var(--red); box-shadow: 0 0 16px var(--red); }
.header-axis::after { right: 0; background: var(--blue); box-shadow: 0 0 16px var(--blue); }

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(5, 7, 11, .98);
  border-bottom: 1px solid var(--line);
  padding: 12px 16px 18px;
  display: grid;
  gap: 4px;
}
.js .site-nav[hidden] { display: none; }
.no-js .site-header { height: auto; }
.no-js .header-inner { height: auto; min-height: var(--header-h); flex-wrap: wrap; padding: 10px 0; }
.no-js .nav-toggle { display: none; }
.no-js .site-nav { position: static; display: flex; width: 100%; flex-wrap: wrap; margin-left: 0; padding: 0; background: transparent; border: 0; }
.site-nav a {
  position: relative;
  overflow: hidden;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.site-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transition: width .25s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--text); }
.site-nav a:hover::before,
.site-nav a:focus-visible::before { width: calc(100% - 28px); }

main { overflow: clip; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(.82) contrast(1.08) brightness(.62);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,7,11,.95) 0%, rgba(5,7,11,.58) 48%, rgba(5,7,11,.15) 76%),
    linear-gradient(0deg, rgba(5,7,11,.95) 0%, transparent 52%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 6%, #000 34%, #000 88%, transparent);
}
.hero-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 76px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}
.hero-copy { max-width: 880px; }
.hero-logo-wrap {
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 28px;
  background: rgba(5,7,11,.68);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow);
}
.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
}
.hero-logo-wrap::before { border-top: 2px solid var(--red); border-left: 2px solid var(--red); clip-path: polygon(0 0, 45% 0, 45% 2px, 2px 2px, 2px 45%, 0 45%); }
.hero-logo-wrap::after { border-bottom: 2px solid var(--blue); border-right: 2px solid var(--blue); clip-path: polygon(55% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 55%, 100% 55%, 100% 100%, 55% 100%); }
.hero-logo { width: 82px; height: 82px; object-fit: contain; }
.hero h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.85rem, 10vw, 7rem);
  line-height: .84;
  letter-spacing: -.065em;
  font-weight: 900;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}
.hero h1 .domain-tld { display: inline-block; }
.hero h1 .domain-dot { color: var(--red); text-shadow: 0 0 28px rgba(255,43,50,.34); }
.hero-lines {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 82px minmax(80px, 1fr) 82px;
  gap: 10px;
  align-items: center;
  max-width: 560px;
}
.hero-lines i { display: block; height: 2px; }
.hero-lines i:first-child { background: var(--red); box-shadow: 0 0 18px var(--red-soft); }
.hero-lines i:nth-child(2) { background: rgba(255,255,255,.24); }
.hero-lines i:last-child { background: var(--blue); box-shadow: 0 0 18px var(--blue-soft); }
.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.action-link {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  background: rgba(5,7,11,.56);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.action-link:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.action-link.red-edge { box-shadow: inset 3px 0 0 var(--red); }
.action-link.blue-edge { box-shadow: inset 3px 0 0 var(--blue); }
.ripple {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple .55s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: translate(-50%, -50%) scale(22); opacity: 0; } }

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 132px) 0;
}
.section-heading {
  margin: 0 0 clamp(28px, 5vw, 54px);
  font-size: clamp(2.6rem, 7.5vw, 6.4rem);
  line-height: .88;
  letter-spacing: -.055em;
  font-weight: 900;
  text-transform: uppercase;
}
.section-heading span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.36);
}

.about-section { position: relative; background: linear-gradient(180deg, #05070b, #080b10); }
.about-grid {
  display: grid;
  gap: 18px;
}
.about-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; filter: saturate(.75) contrast(1.06); transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .6s ease; }
.about-frame:hover img { transform: scale(1.025); filter: saturate(.95) contrast(1.1); }
.about-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,43,50,.13), transparent 30%, transparent 70%, rgba(34,168,255,.13));
  pointer-events: none;
}
.about-axis {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), rgba(255,255,255,.28), var(--blue), transparent);
  opacity: .78;
}

.services-section { background: #070a0f; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.service-shot {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.service-shot img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; filter: saturate(.78) brightness(.78); transition: transform .55s ease, filter .55s ease; }
.service-shot:hover img { transform: scale(1.035); filter: saturate(1) brightness(.9); }
.service-shot:first-child { clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%); }
.service-shot:last-child { clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%); }
.service-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--red), transparent 48%, var(--blue)) 1;
}

.features-section { position: relative; }
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,43,50,.035), transparent 38%, transparent 62%, rgba(34,168,255,.035));
  pointer-events: none;
}
.feature-band {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: var(--panel);
  border-left: 2px solid var(--red);
  border-right: 2px solid var(--blue);
  box-shadow: var(--shadow);
}
.feature-band img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; filter: contrast(1.08) brightness(.82); transition: transform .65s ease; }
.feature-band:hover img { transform: scale(1.025); }
.feature-band::before,
.feature-band::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 26%;
  pointer-events: none;
}
.feature-band::before { left: 0; background: linear-gradient(90deg, rgba(255,43,50,.15), transparent); }
.feature-band::after { right: 0; background: linear-gradient(-90deg, rgba(34,168,255,.15), transparent); }

.why-section { background: #06090e; border-top: 1px solid var(--line); }
.why-layout {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,43,50,.065), transparent 35%),
    linear-gradient(315deg, rgba(34,168,255,.065), transparent 35%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 1px, transparent 1px 14px),
    #080c12;
  box-shadow: var(--shadow);
}
.why-layout::before,
.why-layout::after {
  content: "";
  position: absolute;
  width: 64%;
  height: 1px;
  top: 50%;
}
.why-layout::before { left: -12%; background: linear-gradient(90deg, transparent, var(--red), rgba(255,255,255,.34)); transform: rotate(22deg); }
.why-layout::after { right: -12%; background: linear-gradient(-90deg, transparent, var(--blue), rgba(255,255,255,.34)); transform: rotate(-22deg); }
.why-emblem {
  position: relative;
  z-index: 2;
  width: min(54vw, 300px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: rgba(4,6,10,.74);
  border: 1px solid rgba(255,255,255,.18);
  clip-path: polygon(12% 0, 88% 0, 100% 12%, 100% 88%, 88% 100%, 12% 100%, 0 88%, 0 12%);
}
.why-emblem::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.16);
  clip-path: inherit;
  box-shadow: inset 5px 0 0 rgba(255,43,50,.78), inset -5px 0 0 rgba(34,168,255,.78);
}
.why-emblem img { position: relative; z-index: 1; width: 76%; height: 76%; object-fit: contain; }
.why-corner {
  position: absolute;
  width: 90px;
  height: 90px;
  border-color: var(--line-strong);
  pointer-events: none;
}
.why-corner.a { left: 20px; top: 20px; border-left: 1px solid; border-top: 1px solid; color: var(--red); }
.why-corner.b { right: 20px; bottom: 20px; border-right: 1px solid; border-bottom: 1px solid; color: var(--blue); }

.contact-section {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,43,50,.07), transparent 35%),
    linear-gradient(315deg, rgba(34,168,255,.07), transparent 35%),
    #080c12;
}
.contact-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  padding: 38px 20px;
}
.contact-panel::before,
.contact-panel::after {
  content: "";
  position: absolute;
  width: 38%;
  height: 2px;
  top: 22px;
}
.contact-panel::before { left: 0; background: linear-gradient(90deg, var(--red), transparent); }
.contact-panel::after { right: 0; background: linear-gradient(-90deg, var(--blue), transparent); }
.contact-logo { width: 96px; height: 96px; object-fit: contain; margin: 0 auto 20px; }
.contact-name { margin: 0; font-size: clamp(2rem, 6vw, 4rem); line-height: .95; letter-spacing: -.05em; font-weight: 900; overflow-wrap: anywhere; }
.contact-email { margin: 18px 0 26px; color: var(--muted); overflow-wrap: anywhere; }
.contact-email a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.email-button {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: inset 3px 0 0 var(--red), inset -3px 0 0 var(--blue);
  text-decoration: none;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem;
  transition: background .2s ease, transform .2s ease;
}
.email-button:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }

.site-footer {
  background: #030509;
  padding: 32px 0;
}
.footer-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand strong { overflow-wrap: anywhere; }
.footer-email { color: var(--muted); overflow-wrap: anywhere; }
.footer-email a { text-underline-offset: 4px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.footer-nav a:hover { color: #fff; }

.scroll-top {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  background: rgba(8,12,18,.92);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, border-color .2s ease;
  box-shadow: 0 14px 35px rgba(0,0,0,.32);
}
.scroll-top::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  margin: 4px auto 0;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { border-color: rgba(255,255,255,.52); }

/* Decorative reveal animations never hide content by default. */
.visual-reveal.is-inview { animation: visualReveal .7s cubic-bezier(.2,.8,.2,1) both; }
@keyframes visualReveal {
  from { transform: translateY(16px); filter: brightness(.84); }
  to { transform: translateY(0); filter: brightness(1); }
}

/* Privacy Policy */
.policy-page { background: #070a0f; }
.policy-main { overflow: visible; }
.policy-shell {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  padding: 46px 0 88px;
  display: grid;
  gap: 28px;
}
.policy-side {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255,43,50,.08), transparent 44%),
    linear-gradient(330deg, rgba(34,168,255,.08), transparent 44%),
    var(--panel);
  padding: 22px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
}
.policy-side::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
}
.policy-side img { position: relative; width: 110px; height: 110px; object-fit: contain; flex: 0 0 auto; }
.policy-side-name { position: relative; font-size: clamp(1.2rem, 2.2vw, 1.65rem); font-weight: 900; letter-spacing: -.035em; overflow-wrap: normal; white-space: nowrap; }
.policy-side-name span { display: inline; }
.policy-side-axis { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, var(--red), transparent 47%, var(--blue)); }
.policy-article {
  min-width: 0;
  color: #dfe4eb;
}
.policy-title-block {
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 30px;
  margin-bottom: 18px;
}
.policy-article h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: .9;
  letter-spacing: -.05em;
  font-weight: 900;
  color: #fff;
  max-width: 980px;
}
.policy-date { margin: 4px 0; color: var(--silver); font-weight: 750; }
.policy-intro { margin: 26px 0; font-size: 1.02rem; }
.policy-section {
  position: relative;
  padding: 34px 0 36px;
  border-top: 1px solid var(--line);
}
.policy-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.policy-section h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(1.35rem, 3.2vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.policy-section p { margin: 0 0 18px; }
.policy-section ul { margin: 0 0 22px; padding: 0; list-style: none; }
.policy-section li {
  position: relative;
  margin: 10px 0;
  padding-left: 22px;
}
.policy-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.policy-article a { color: #dff2ff; text-decoration-color: var(--blue); text-underline-offset: 4px; overflow-wrap: anywhere; }
.policy-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 850;
}
.policy-home-link::before { content: "←"; color: var(--red); }
.policy-home-link:hover { color: #fff; }

@media (min-width: 720px) {
  .services-visual { grid-template-columns: 1fr 1fr; gap: 18px; }
  .service-shot { min-height: 390px; }
  .service-shot img { min-height: 390px; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer-email { grid-column: 1; }
  .footer-nav { grid-column: 2; grid-row: 1 / span 2; justify-content: flex-end; }
  .policy-shell { grid-template-columns: 220px minmax(0, 1fr); align-items: start; gap: 44px; padding-top: 58px; }
  .policy-side { position: sticky; top: calc(var(--header-h) + 24px); min-height: 360px; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
  .policy-side img { width: 150px; height: 150px; }
  .policy-side-name span { display: block; }
}

@media (min-width: 940px) {
  .nav-toggle { display: none; }
  .site-nav,
  .js .site-nav[hidden] {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .site-nav a { padding: 12px 10px; font-size: .72rem; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 160px; align-items: end; }
  .hero-copy { grid-column: 1; }
  .hero-logo-wrap { width: 140px; height: 140px; grid-column: 2; grid-row: 1; align-self: center; justify-self: end; margin: 0; transform: translateY(-18px); }
  .hero-logo { width: 112px; height: 112px; }
  .about-grid { grid-template-columns: 150px minmax(0, 1fr); align-items: stretch; }
  .about-grid .section-heading { margin: 0; writing-mode: vertical-rl; transform: rotate(180deg); font-size: clamp(3.8rem, 6vw, 6rem); }
  .about-frame { min-height: 560px; }
  .about-frame img { min-height: 560px; }
  .feature-band { min-height: 520px; }
  .feature-band img { min-height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .visual-reveal.is-inview { animation: none; }
}
