:root {
  --bg: #0b1118;
  --bg-deep: #080d13;
  --surface: #111a26;
  --surface-2: #162232;
  --text: #eef4fb;
  --muted: #b3c0d1;
  --muted-2: #98a7bc;
  --accent: #d8b468;
  --accent-soft: #f0ddaa;
  --cool: #8bb1dc;
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 14px 30px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 24px 56px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 34px 78px rgba(0, 0, 0, 0.46);
  --r-xl: 8px;
  --r-lg: 8px;
  --r-md: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  background: #080d13;
  overscroll-behavior-x: none;
}

body {
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, #0b1118 0%, #09101a 44%, #080d13 100%);
  letter-spacing: 0.008em;
  line-height: 1.68;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.bg-canvas {
  position: absolute;
  inset: 0;
  z-index: -6;
  pointer-events: none;
  overflow: hidden;
}

.bg-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(880px 420px at 50% -10%, rgba(255, 255, 255, 0.025), transparent 70%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.92));
  opacity: 0.72;
}

.bg-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 460px at 50% -16%, rgba(255, 255, 255, 0.04), transparent 66%),
    radial-gradient(1400px 720px at 50% 118%, rgba(0, 0, 0, 0.38), transparent 72%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.44;
}

.bg-orb-gold {
  width: 44vw;
  height: 44vw;
  min-width: 460px;
  min-height: 460px;
  max-width: 760px;
  max-height: 760px;
  right: -12vw;
  top: -14vh;
  background: radial-gradient(circle at 30% 30%, rgba(209, 173, 91, 0.35), rgba(209, 173, 91, 0.04) 70%);
  animation: orbGold 26s ease-in-out infinite alternate;
}

.bg-orb-blue {
  width: 46vw;
  height: 46vw;
  min-width: 500px;
  min-height: 500px;
  max-width: 820px;
  max-height: 820px;
  left: -16vw;
  top: 22vh;
  background: radial-gradient(circle at 60% 40%, rgba(134, 168, 207, 0.32), rgba(134, 168, 207, 0.03) 72%);
  animation: orbBlue 30s ease-in-out infinite alternate;
}

.bg-orb-neutral {
  width: 52vw;
  height: 52vw;
  min-width: 560px;
  min-height: 560px;
  max-width: 920px;
  max-height: 920px;
  right: -12vw;
  bottom: -28vh;
  background: radial-gradient(circle at 45% 45%, rgba(110, 130, 160, 0.22), rgba(110, 130, 160, 0.02) 72%);
  opacity: 0.34;
  animation: orbNeutral 34s ease-in-out infinite alternate;
}

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

.container {
  width: min(var(--container), calc(100% - 46px));
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 23, 0.78);
  border-bottom: 1px solid var(--border-soft);
}

main {
  padding-top: 74px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.014em;
  color: #f3f7fd;
  white-space: nowrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  box-shadow: 0 0 0 8px rgba(209, 173, 91, 0.1);
}

.right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b7c5d6;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.right .btn {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #e5c984, var(--accent));
  color: #161205;
  box-shadow: 0 12px 28px rgba(209, 173, 91, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(209, 173, 91, 0.38);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: rgba(134, 168, 207, 0.42);
  background: rgba(134, 168, 207, 0.12);
}

.hero {
  padding: 86px 0 112px;
  background: transparent;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: min(820px, 92vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 177, 90, 0.16), rgba(231, 238, 247, 0.14), rgba(214, 177, 90, 0.16), transparent);
  box-shadow: 0 0 22px rgba(214, 177, 90, 0.2);
  opacity: 0.7;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: min(180px, 60vw);
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 177, 90, 0.35), rgba(214, 177, 90, 0));
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 36px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(209, 173, 91, 0.34);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #eed8a6;
  background: rgba(209, 173, 91, 0.12);
  margin-bottom: 20px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.024em;
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.05rem);
  line-height: 1.01;
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero h2 {
  font-size: clamp(1.08rem, 2.25vw, 1.52rem);
  color: #d7e1ef;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 40ch;
}

.lead {
  font-size: 1.08rem;
  margin: 0 0 26px;
  color: #dde6f2;
  max-width: 48ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #cfb37b;
  max-width: 56ch;
}

.fade {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.75s ease forwards;
}

.d1 { animation-delay: 0.06s; }
.d2 { animation-delay: 0.14s; }
.d3 { animation-delay: 0.22s; }
.d4 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbGold {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-2vw, 2vh, 0) scale(1.08);
  }
}

@keyframes orbBlue {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(3vw, -2vh, 0) scale(1.06);
  }
}

@keyframes orbNeutral {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-2vw, -2vh, 0) scale(1.05);
  }
}

.preview,
.portal-shot {
  background: rgba(10, 16, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-xl);
  padding: 0;
  box-shadow:
    0 0 0 1px rgba(214, 177, 90, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(214, 177, 90, 0.12);
  position: relative;
  overflow: hidden;
}

.preview-wrap {
  width: min(100%, 640px);
  justify-self: end;
}

.preview,
.preview::before,
.preview .screen-frame,
.preview .screen-frame::after {
  border-radius: 5px;
}

.preview .screen-frame::after {
  display: none;
}

.preview {
  transition: box-shadow 0.32s ease, border-color 0.32s ease, transform 0.32s ease;
}

.preview-hint {
  display: none;
  margin: 10px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: rgba(214, 177, 90, 0.88);
  cursor: pointer;
}

.preview::before,
.portal-shot::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 78%, rgba(214, 177, 90, 0.18));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
}

.screen-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 0;
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  display: block;
}

.screen-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 17, 0.68));
  z-index: 2;
  pointer-events: none;
}

.screen-slider {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
}

.screen-media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
}

.slider-hero {
  aspect-ratio: 14 / 10;
}

.slider-portal {
  aspect-ratio: 16 / 10;
  transition: aspect-ratio 0.28s ease;
  background: #05080d;
}

.hero-media {
  aspect-ratio: 2468 / 1832;
  background: #05080d;
}

.screen-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  filter: saturate(0.92) contrast(1.02);
  transition: opacity 0.38s ease, visibility 0.38s ease;
  pointer-events: none;
  z-index: 0;
}

.screen-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.screen-slide:not(.is-active) {
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}

.slider-portal .screen-slide {
  object-fit: contain;
  background: #05080d;
}

.screen-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #05080d;
}

.video-loading {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(320px 180px at 50% 38%, rgba(214, 177, 90, 0.08), transparent 68%),
    rgba(5, 8, 13, 0.92);
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.video-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-top-color: rgba(214, 177, 90, 0.92);
  animation: spin 0.9s linear infinite;
}

.video-loading-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(231, 238, 247, 0.76);
}

.screen-media.is-ready .video-loading {
  opacity: 0;
  visibility: hidden;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.82);
  backdrop-filter: blur(10px);
}

.video-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: auto;
}

.video-lightbox-slot {
  width: min(90vw, calc(90vh * 1.347));
}

.video-lightbox-slot .preview {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.video-lightbox-close {
  position: fixed;
  right: 28px;
  top: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  text-shadow: 0 0 18px rgba(214, 177, 90, 0.28);
  transition: transform 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.video-lightbox-close:hover {
  transform: scale(1.06);
  color: var(--accent-soft);
}

body.has-lightbox {
  overflow: hidden;
}

body.has-lightbox .preview-hint {
  opacity: 0;
  pointer-events: none;
}

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

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

.access-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 17, 0.58);
  backdrop-filter: blur(8px);
}

.access-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 640px);
  max-height: calc(100vh - 32px);
  overflow: auto;
}

.access-modal-card {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
  padding: 28px;
}

.access-modal-title {
  margin: 0 0 8px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
  color: #0f172a;
}

.access-modal-subtitle {
  margin: 0 0 22px;
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.6;
}

.access-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: #475569;
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.access-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.access-field {
  display: grid;
  gap: 8px;
}

.access-field span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.access-field input,
.access-field select,
.access-field textarea {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.access-field input:focus,
.access-field select:focus,
.access-field textarea:focus {
  border-color: rgba(216, 180, 104, 0.9);
  box-shadow: 0 0 0 4px rgba(216, 180, 104, 0.16);
  background: #ffffff;
}

.access-field-full {
  grid-column: 1 / -1;
}

.access-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.access-submit {
  margin-top: 20px;
  width: 100%;
}

.access-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.access-error {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #b42318;
}

.access-success {
  padding: 18px 0 6px;
  font-size: 1rem;
  line-height: 1.7;
  color: #0f172a;
}

body.has-access-modal {
  overflow: hidden;
}

@media (min-width: 981px) {
  .preview .screen-frame {
    cursor: pointer;
  }

  .preview-hint {
    display: block;
  }

  .portal-layout {
    align-items: stretch;
  }

  .portal-showcase,
  .portal-shot,
  .portal-showcase .screen-frame,
  .slider-portal {
    height: 100%;
  }

  .slider-portal {
    aspect-ratio: auto;
    background: #05080d;
  }

  .slider-portal .screen-slide {
    inset: auto 0 auto 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: initial;
  }

  .slider-portal .screen-slide.is-fill-height {
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    max-width: none;
    transform: translateX(-50%);
  }

  .slider-portal .screen-slide.is-top-aligned {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
  }
}

.screen-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 11, 17, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  z-index: 4;
}

.screen-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(231, 238, 247, 0.24);
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, width 0.22s ease;
}

.screen-dot:hover,
.screen-dot:focus-visible {
  background: rgba(231, 238, 247, 0.5);
  outline: none;
}

.screen-dot.is-active {
  width: 20px;
  background: rgba(209, 173, 91, 0.92);
  transform: scale(1.02);
}

.section {
  padding: 104px 0;
  position: relative;
}

.section + .section {
  padding-top: 82px;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 92vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 177, 90, 0.16), rgba(231, 238, 247, 0.14), rgba(214, 177, 90, 0.16), transparent);
  box-shadow: 0 0 22px rgba(214, 177, 90, 0.2);
  opacity: 0.7;
  pointer-events: none;
}

.section + .section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(180px, 60vw);
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 177, 90, 0.35), rgba(214, 177, 90, 0));
  opacity: 0.55;
  pointer-events: none;
}

.section-solid {
  background: transparent;
}

.section-title {
  font-size: clamp(1.78rem, 3.2vw, 2.55rem);
  margin: 0 0 12px;
  max-width: 860px;
  line-height: 1.16;
  text-wrap: balance;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 44px;
  max-width: 860px;
  font-size: 1.01rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background:
    radial-gradient(340px 120px at 12% 0%, rgba(134, 168, 207, 0.08), transparent 62%),
    linear-gradient(165deg, rgba(18, 29, 43, 0.99), rgba(10, 16, 24, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(134, 168, 207, 0.4);
  box-shadow: var(--shadow-md);
}

.card-primary {
  border-color: rgba(209, 173, 91, 0.36);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(440px 170px at 18% 0%, rgba(209, 173, 91, 0.13), transparent 62%);
  pointer-events: none;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(209, 173, 91, 0.36);
  background: rgba(209, 173, 91, 0.1);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  color: #eed9a8;
}

.card-kicker-muted {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(231, 238, 247, 0.72);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.card-icon {
  color: rgba(231, 238, 247, 0.74);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.25s ease;
}

.card:hover .card-icon {
  border-color: rgba(134, 168, 207, 0.34);
  background: rgba(134, 168, 207, 0.1);
}

.card-primary .card-icon {
  color: #edd8a6;
  border-color: rgba(209, 173, 91, 0.3);
  background: rgba(209, 173, 91, 0.1);
}

.card h3 {
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: #c0ccdc;
  font-size: 0.96rem;
  line-height: 1.68;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.process-note {
  color: rgba(231, 238, 247, 0.7);
  font-size: 0.95rem;
  max-width: 720px;
}

.timeline {
  background:
    radial-gradient(420px 130px at 16% 0%, rgba(209, 173, 91, 0.09), transparent 60%),
    linear-gradient(165deg, rgba(18, 29, 43, 0.99), rgba(10, 16, 24, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.t-item {
  display: flex;
  gap: 14px;
  padding: 14px 6px;
}

.t-item + .t-item {
  border-top: 1px solid var(--border-soft);
}

.t-mark {
  width: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 46px;
}

.t-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.84rem;
  color: #edd8a6;
  border: 1px solid rgba(209, 173, 91, 0.3);
  background: rgba(209, 173, 91, 0.11);
}

.t-line {
  width: 2px;
  flex: 1;
  margin-top: 10px;
  background: linear-gradient(180deg, rgba(134, 168, 207, 0.6), rgba(134, 168, 207, 0));
  border-radius: 2px;
}

.t-body {
  flex: 1;
  padding-top: 2px;
}

.t-title {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.t-text {
  color: #c0ccdc;
  font-size: 0.96rem;
  line-height: 1.68;
}

.portal-section .section-subtitle {
  max-width: 760px;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.5fr);
  gap: 22px;
  align-items: start;
}

.portal-showcase {
  margin: 0;
}

.portal-shot {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.portal-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
  max-width: 340px;
  width: 100%;
  justify-self: end;
}

.portal-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 18, 27, 0.55);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
  cursor: pointer;
}

.portal-card:hover {
  border-color: rgba(214, 177, 90, 0.26);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.portal-card.is-active {
  border-color: rgba(214, 177, 90, 0.4);
  background: rgba(16, 24, 36, 0.75);
  box-shadow: var(--shadow-md);
}

.portal-shot-mini {
  width: 110px;
  height: 78px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.portal-layout .portal-shot-mini {
  display: none;
}

.portal-shot-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.portal-card.is-active .portal-shot-mini {
  transform: scale(1.04);
  border-color: rgba(214, 177, 90, 0.4);
}

.portal-card.is-active .portal-shot-mini img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
}

.portal-title {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  margin-bottom: 4px;
}

.portal-text {
  color: #c0ccdc;
  font-size: 0.96rem;
  line-height: 1.68;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(12, 18, 27, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(214, 177, 90, 0.26);
  box-shadow: var(--shadow-md);
}

.faq-title {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.012em;
  font-size: 1.08rem;
  margin: 0;
  padding: 18px 22px;
}

.faq-title::-webkit-details-marker {
  display: none;
}

.faq-title::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(231, 238, 247, 0.8);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-title::after {
  transform: rotate(45deg);
  border-color: rgba(214, 177, 90, 0.35);
  color: rgba(214, 177, 90, 0.9);
}

.faq-body {
  padding: 0 22px 20px;
}

.faq-text {
  margin: 0 0 12px;
  color: #c0ccdc;
  font-size: 0.95rem;
  line-height: 1.68;
}

.faq-text:last-child {
  margin-bottom: 0;
}

.cta-section {
  padding: 72px 0 56px;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.5), rgba(11, 15, 20, 0.82));
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.cta-title {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 600;
  letter-spacing: -0.018em;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--text);
  margin: 0;
}

.cta-btn {
  min-height: 46px;
  padding: 0 22px;
  font-weight: 600;
}

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

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #0b0f14;
  color: rgba(231, 238, 247, 0.55);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.footer-email,
.footer-copy {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .bg-canvas::before {
    background-size: auto, 60px 60px, 60px 60px;
    opacity: 0.62;
  }

  .bg-orb-gold {
    width: 70vw;
    height: 70vw;
    min-width: 380px;
    min-height: 380px;
    right: -24vw;
    top: -14vh;
  }

  .bg-orb-blue {
    width: 72vw;
    height: 72vw;
    min-width: 400px;
    min-height: 400px;
    left: -28vw;
    top: 28vh;
  }

  .bg-orb-neutral {
    width: 80vw;
    height: 80vw;
    min-width: 460px;
    min-height: 460px;
    right: -34vw;
    bottom: -22vh;
  }

  .hero-grid,
  .cards,
  .process,
  .portal-layout {
    grid-template-columns: 1fr;
  }

  .preview-wrap {
    width: 100%;
    justify-self: stretch;
  }

  .hero {
    padding: 64px 0 88px;
  }

  .screen-slider {
    aspect-ratio: 16 / 11;
  }

  .slider-portal {
    aspect-ratio: 16 / 11;
  }

  .portal-layout .portal-shot-mini {
    display: block;
  }

  .section {
    padding: 90px 0;
  }

  .section + .section {
    padding-top: 68px;
  }

  .cta-section {
    padding: 64px 0 54px;
  }

  .header-inner {
    min-height: 68px;
  }

  main {
    padding-top: 68px;
  }

  .right {
    margin-left: auto;
  }

  .right span {
    display: none;
  }
}

@media (max-width: 620px) {
  .bg-canvas::before {
    background-size: auto, 52px 52px, 52px 52px;
    opacity: 0.54;
  }

  .bg-orb {
    filter: blur(28px);
  }

  .bg-orb-gold {
    width: 94vw;
    height: 94vw;
    min-width: 0;
    min-height: 0;
    right: -42vw;
    top: -12vh;
  }

  .bg-orb-blue {
    width: 96vw;
    height: 96vw;
    min-width: 0;
    min-height: 0;
    left: -46vw;
    top: 32vh;
  }

  .bg-orb-neutral {
    display: none;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header .container {
    width: calc(100% - 20px);
  }

  .cta-row {
    flex-direction: column;
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand {
    font-size: 0.9rem;
    letter-spacing: -0.008em;
    min-width: 0;
    max-width: calc(100vw - 140px);
  }

  .brand span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .right {
    gap: 0;
  }

  .right .btn {
    width: auto;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.72rem;
    line-height: 1;
  }

  .cta-row .btn {
    width: 100%;
  }

  .screen-slider {
    aspect-ratio: 4 / 3;
  }

  .screen-dots {
    bottom: 14px;
    padding: 7px 9px;
    gap: 7px;
  }

  .video-lightbox {
    display: none;
  }

  .preview,
  .timeline,
  .portal-shot,
  .card {
    border-radius: 8px;
  }

  .preview,
  .preview::before,
  .preview .screen-frame,
  .preview .screen-frame::after {
    border-radius: 5px;
  }

  .section-title {
    font-size: clamp(1.54rem, 8.4vw, 2.02rem);
  }

  .section-subtitle {
    margin-bottom: 30px;
  }

  .faq-item {
    border-radius: 8px;
  }

  body {
    font-size: 0.94rem;
  }

  h1 {
    font-size: clamp(2.05rem, 8.6vw, 2.6rem);
  }

  .hero h2 {
    font-size: clamp(0.98rem, 4.4vw, 1.18rem);
  }

  .lead {
    font-size: 0.98rem;
  }

  .section-title {
    font-size: clamp(1.42rem, 7.8vw, 1.86rem);
  }

  .section-subtitle {
    font-size: 0.96rem;
  }

  .card h3,
  .faq-title,
  .t-title,
  .portal-title {
    font-size: 1rem;
  }

  .card p,
  .faq-text,
  .t-text,
  .portal-text,
  .process-note {
    font-size: 0.9rem;
  }

  .portal-showcase {
    display: none;
  }

  .portal-features {
    grid-template-columns: 1fr;
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .portal-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .portal-shot-mini {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    border-right: 0;
    border-left: 0;
    border-top: 0;
  }

  .portal-card > div:last-child {
    padding: 14px 16px 16px;
  }

  .access-modal-dialog {
    width: min(94vw, 560px);
    max-height: calc(100vh - 20px);
  }

  .access-modal-card {
    padding: 24px 20px 20px;
    border-radius: 12px;
  }

  .access-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portal-shot-mini img {
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .cta-section {
    padding: 56px 0 48px;
  }

  .footer-inner {
    padding: 16px 0;
  }

}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
