:root {
  --bg: #05070b;
  --panel: #090d14;
  --panel-2: #080c13;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f9fc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --blue: #0b5fff;
  --blue-hover: #2f78ff;
  --ice: #7eb6ff;
  --white: #ffffff;
  --font: "Geist Sans", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease; }

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 2000;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
}
.skip-link:focus {
  top: 0.75rem;
}
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

.wrap {
  width: min(80rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.navin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
}
.brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #000;
  object-fit: cover;
}
.brand-footer { margin-bottom: 1rem; }
.menu {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text);
  border-radius: 0.625rem;
  padding: 0.65rem 0.95rem;
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn,
.links a.cta,
.controls button,
.widget-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
}
.links a:hover,
.links a[aria-current="page"] { color: var(--white); }
.links a.cta,
.btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 700;
  border: 0;
}
.links a.cta:hover,
.btn.primary:hover { background: var(--blue-hover); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-weight: 600;
  backdrop-filter: blur(12px);
}
.btn:hover { background: rgba(255, 255, 255, 0.1); }
.btn.light {
  background: var(--white);
  color: var(--bg);
  border-color: transparent;
}
.btn.light:hover { background: #dce9ff; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.section { padding: clamp(4rem, 9vw, 6.5rem) 0; }
.section.band {
  background: var(--panel-2);
  border-block: 1px solid var(--line);
}
.section.cta-band {
  position: relative;
  overflow: hidden;
  background: #071321;
  border-top: 1px solid var(--line);
}
.section.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(22, 119, 255, 0.2), transparent 35%);
  pointer-events: none;
}
.kicker, .tag {
  color: var(--ice);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--blue);
}
.h1 {
  max-width: 62rem;
  margin: 1.5rem 0 0;
  font-size: clamp(3rem, 8.2vw, 7rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
  color: var(--white);
}
.h1 .accent {
  color: var(--ice);
  text-shadow: 0 0 28px rgba(126, 182, 255, 0.35);
}
.h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: var(--white);
}
.lead {
  max-width: 40rem;
  margin: 1.75rem 0 0;
  color: #e2e8f0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  text-wrap: pretty;
}
.muted { color: var(--muted); }
.prose { max-width: 45rem; color: var(--soft); font-size: 1.125rem; line-height: 1.8; }
.prose p + p { margin-top: 1rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.card {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
a.card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(22, 119, 255, 0.7);
  background: #0d1725;
}
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3.25rem;
}
.card-arrow { color: #64748b; }
a.card:hover .card-arrow { color: var(--ice); }
.card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}
.card p { margin: 0.75rem 0 0; }
.card-portfolio { padding: 0; overflow: hidden; border-radius: 1.5rem; background: var(--panel); }
.card-portfolio .preview { margin: 0; border: 0; border-radius: 0; }
.checks { display: grid; gap: 0.75rem; margin: 0; padding: 0; list-style: none; }
.checks li { display: flex; gap: 0.75rem; color: var(--soft); font-size: 0.9375rem; line-height: 1.6; }
.checks li::before { content: "✓"; color: var(--ice); font-weight: 700; flex: 0 0 auto; margin-top: 0.1rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-size: 0.75rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 4.5rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 8, 0.96), rgba(2, 4, 8, 0.58) 50%, rgba(2, 4, 8, 0.3)),
    linear-gradient(0deg, rgba(2, 4, 8, 0.85), transparent 55%),
    rgba(2, 4, 8, 0.35);
}
.hero .wrap {
  position: relative;
  z-index: 1;
  width: min(80rem, calc(100% - 2.5rem));
  padding: clamp(4.5rem, 12vw, 7.5rem) 0 3rem;
}
.hero-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  color: #cbd5e1;
  font-size: 0.875rem;
}
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.controls { display: flex; align-items: center; gap: 0.5rem; }
.controls button {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  display: grid;
  place-items: center;
  line-height: 1;
}
.controls button:hover { background: rgba(255, 255, 255, 0.15); }
.controls .label {
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--panel);
}
.preview-shell {
  position: relative;
  height: 16rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(11, 95, 255, 0.35), transparent 35%),
    linear-gradient(145deg, #0d1725, #05070b 70%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}
.preview-shell strong {
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 12ch;
  line-height: 1.05;
}
.preview-shell span.host {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}
.preview-frame {
  position: relative;
  height: 16rem;
  overflow: hidden;
  background: #0a111d;
}
.preview-frame iframe {
  width: 139%;
  height: 139%;
  border: 0;
  transform: scale(0.72);
  transform-origin: top left;
  pointer-events: none;
  background: #fff;
}
.preview.large .preview-frame { height: 32rem; }
.preview.large .preview-frame iframe {
  transform: none;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.preview-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #090d14, transparent 55%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}
.preview-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.preview-index {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
}
.preview-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  color: #64748b;
  font-size: 0.75rem;
}
.preview-meta a { color: #2563eb; font-weight: 600; }
.preview-body { padding: 1.25rem; }
.preview-body h3 { margin: 0.5rem 0 0; font-size: 1.5rem; }

.faq { display: grid; gap: 0.75rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 0 1.25rem;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
}
.faq summary::after {
  content: "▾";
  color: var(--ice);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq p { margin: 0 0 1.25rem; max-width: 48rem; color: var(--muted); line-height: 1.75; }

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.75rem;
  background: var(--panel);
  aspect-ratio: 16 / 9;
  box-shadow: 0 25px 50px -12px rgba(23, 37, 84, 0.35);
}
.media-card video { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.media-card .badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.widget-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.widget-jump .chip {
  border-color: rgba(11, 95, 255, 0.35);
  background: rgba(11, 95, 255, 0.12);
  color: var(--ice);
}
.widget-jump .chip:hover {
  border-color: var(--blue);
  color: var(--white);
}
.widget-section-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}
.widget-section.is-active .widget-panel {
  border-color: rgba(11, 95, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(11, 95, 255, 0.2);
}
.btn.active-try,
.btn.primary.active-try {
  background: #0a3f99;
}
.widget-list { display: grid; gap: 0.75rem; }
.widget-btn {
  text-align: left;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 1.25rem;
  transition: border-color .2s ease, background .2s ease;
}
.widget-btn:hover { border-color: rgba(255, 255, 255, 0.3); }
.widget-btn.active {
  border-color: var(--blue);
  background: #0c1a2b;
}
.widget-btn-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.widget-btn h3 {
  margin: 1.1rem 0 0;
  font-size: 1.25rem;
  color: var(--white);
}
.widget-panel {
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--panel);
  padding: 1.75rem;
}
.widget-hint {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(11, 95, 255, 0.35);
  background: #071321;
  color: var(--soft);
  font-size: 0.9rem;
}
.insights-block {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.widget-privacy {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
.field { display: grid; gap: 0.5rem; margin-top: 1rem; color: var(--soft); font-size: 0.875rem; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.875rem;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  padding: 0.85rem 1rem;
  outline: none;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #94a3b8 50%), linear-gradient(135deg, #94a3b8 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) calc(50% - 0.15rem), calc(100% - 0.85rem) calc(50% - 0.15rem);
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--blue); }

.adopt-hero {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: #020408;
  overflow: hidden;
  /* Square creative → full-bleed landscape crop so sides aren't empty */
  aspect-ratio: 16 / 9;
  max-height: min(85vh, 52rem);
}
.adopt-hero-link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.adopt-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center center;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.adopt-benefits {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  background: #071321;
}
.adopt-benefit-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.adopt-benefit-row li {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.adopt-tools {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
}
.adopt-tools li {
  display: grid;
  gap: 0.55rem;
  padding: 0 0 0 1rem;
  border-left: 2px solid rgba(22, 119, 255, 0.75);
}
.adopt-tools strong {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.adopt-tools span {
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.55;
}
.adopt-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.adopt-offer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.adopt-offer h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.adopt-offer .muted { margin: 0.55rem 0 0.85rem; }
.adopt-offer p { margin: 0; color: var(--soft); line-height: 1.6; }
.adopt-meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem !important;
  font-size: 0.82rem;
  color: #93c5fd !important;
}
.adopt-stages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}
.adopt-stages li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.adopt-stage-num {
  color: var(--ice);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding-top: 0.25rem;
}
.adopt-stages h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.15rem;
}
.adopt-stages h3 .muted {
  margin-left: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.adopt-stages p {
  margin: 0.45rem 0 0;
  color: var(--soft);
  line-height: 1.6;
}
.adopt-side-visual {
  margin: 1.75rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.adopt-side-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.adopt-form {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
}
.adopt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.adopt-fieldset {
  border: 0;
  padding: 0;
  margin: 1rem 0 0;
}
.adopt-fieldset legend {
  margin-bottom: 0.55rem;
  color: var(--soft);
  font-size: 0.875rem;
}
.adopt-checks {
  display: grid;
  gap: 0.55rem;
}
.adopt-checks label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.92rem;
  min-height: 44px;
}
.adopt-checks input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--blue);
}

.page-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.page-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #050b14;
}
.page-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.prose a { color: var(--ice); text-decoration: underline; text-underline-offset: 3px; }
.mt-10 { margin-top: 2.5rem; }

@media (max-width: 960px) {
  .adopt-benefit-row,
  .adopt-tools,
  .adopt-offers,
  .adopt-form-row,
  .page-intro { grid-template-columns: 1fr; }
  .adopt-benefit-row {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .page-intro .page-visual { order: -1; }
  .adopt-hero {
    aspect-ratio: auto;
    max-height: none;
  }
  .adopt-hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.form-status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
}
.form-status.is-success { color: #86efac; }
.form-status.is-error { color: #fca5a5; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.thank-you {
  min-height: calc(100svh - 8rem);
  display: flex;
  align-items: center;
}
.thank-you-panel {
  max-width: 44rem;
  padding: 2rem 0;
}
.thank-you .checks a { color: var(--ice); }

.footer {
  border-top: 1px solid var(--line);
  background: #030509;
  padding: 3.5rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.25rem;
}
.footer h4 { margin: 0 0 1rem; font-size: 0.875rem; color: var(--white); }
.footer p, .footer a { color: var(--muted); font-size: 0.875rem; }
.footer a { display: block; margin-top: 0.65rem; }
.footer a:hover { color: var(--ice); }
.footer a.accent { color: var(--ice); }
.footer-address { margin-top: 0.65rem; color: #94a3b8; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  color: #94a3b8;
  font-size: 0.75rem;
}
.footer-bottom a { display: inline; margin: 0; color: #94a3b8; }
.footer-bottom a:hover { color: var(--ice); }
.footer-title {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.max-copy { max-width: 56rem; }

.legal { max-width: 48rem; }
.legal-meta {
  margin-top: 1.75rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
  font-size: 0.95rem;
}
.legal-meta p { margin: 0.35rem 0; }
.legal-doc { margin-top: 2.5rem; color: var(--soft); }
.legal-doc h2 {
  margin: 2.5rem 0 0.85rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
  color: var(--white);
}
.legal-doc h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.05rem;
  color: var(--white);
}
.legal-doc p { margin: 0.75rem 0; line-height: 1.75; }
.legal-doc ul,
.legal-doc ol {
  margin: 0.75rem 0 0.75rem 1.15rem;
  padding: 0;
  line-height: 1.7;
}
.legal-doc li { margin: 0.4rem 0; }
.legal-doc a { color: var(--ice); text-decoration: underline; text-underline-offset: 3px; }
.legal-doc code {
  font-size: 0.9em;
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
}
.legal-ack {
  margin-top: 2.5rem !important;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(11, 95, 255, 0.35);
  border-radius: 1rem;
  background: #071321;
  color: var(--soft);
}

.gallery-jump { margin-top: 1.75rem; }
.gallery-group { margin-top: 2.5rem; }
.gallery-group-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.gallery-grid-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-item {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.gallery-media {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #050b14;
  aspect-ratio: 16 / 9;
}
.gallery-item-image .gallery-media {
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}
.gallery-media video,
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item-video .gallery-media video {
  object-fit: contain;
  background: #000;
}
.gallery-item figcaption {
  font-size: 0.95rem;
  color: var(--soft);
  line-height: 1.45;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(2, 4, 8, 0.88);
  backdrop-filter: blur(8px);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox img {
  max-width: min(96vw, 72rem);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
}
.gallery-lightbox-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 960px) {
  .wrap { width: min(80rem, calc(100% - 1.5rem)); }
  .navin {
    flex-wrap: wrap;
    padding: 0.85rem 0;
    padding-top: max(0.85rem, env(safe-area-inset-top));
  }
  .brand { letter-spacing: 0.12em; font-size: 0.75rem; }
  .grid, .grid.two, .two, .split, .footer-grid,
  .gallery-grid, .gallery-grid-images { grid-template-columns: 1fr; }
  .menu { display: inline-flex; align-items: center; justify-content: center; }
  .links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.25rem 0 0.85rem;
    border-top: 1px solid var(--line);
    margin-top: 0.35rem;
  }
  .nav.open .links { display: flex; }
  .links a {
    padding: 0.9rem 0.15rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .links a.cta {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
    min-height: 48px;
  }
  .section { padding: clamp(3rem, 8vw, 4.5rem) 0; }
  .h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    letter-spacing: -0.045em;
  }
  .h2 { font-size: clamp(1.65rem, 7vw, 2.35rem); }
  .lead { font-size: 1.05rem; margin-top: 1.25rem; }
  .hero {
    min-height: calc(100svh - 4rem);
    min-height: calc(100dvh - 4rem);
  }
  .hero .wrap {
    width: min(80rem, calc(100% - 1.5rem));
    padding: 3.5rem 0 1.75rem;
  }
  .hero-controls { margin-top: 2.5rem; gap: 1rem; }
  .controls .label { display: none; }
  .actions {
    margin-top: 1.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .actions .btn,
  .actions .btn.primary {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .widget-section-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .widget-jump { margin-top: 1.25rem; }
  .preview-frame,
  .preview-shell { height: 12.5rem; }
  .preview.large .preview-frame { height: 14rem; }
  .preview-frame iframe {
    width: 160%;
    height: 160%;
    transform: scale(0.625);
  }
  .card-top { margin-bottom: 1.5rem; }
  .card,
  .widget-panel,
  .widget-btn { padding: 1.15rem; }
  .media-card { border-radius: 1.25rem; }
  .faq summary { min-height: 48px; gap: 0.75rem; }
  .footer { padding: 2.5rem 0 max(1.5rem, env(safe-area-inset-bottom)); }
  .footer-bottom { line-height: 1.6; }
  .field input,
  .field textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    min-height: 48px;
  }
  .field textarea { min-height: 8rem; }
}

@media (max-width: 480px) {
  .brand span,
  .brand { letter-spacing: 0.08em; }
  .kicker::before { width: 1.5rem; }
  .preview-badge { font-size: 0.55rem; left: 0.65rem; top: 0.65rem; }
  .chips { gap: 0.4rem; }
}

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