:root {
  --ink: #111111;
  --muted: #666a70;
  --line: #e6e3dc;
  --paper: #f6f3ec;
  --white: #ffffff;
  --blue: #c9a84b;
  --green: #65c6b6;
  --yellow: #f0d86d;
  --gold: #d9b64f;
  --gold-light: #f4d978;
  --navy: #07101f;
  --black: #050505;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(20, 24, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(246, 243, 236, 0.86);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.login-link {
  display: flex;
  align-items: center;
}

.brand {
  width: clamp(100px, 10.7vw, 154px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  justify-content: center;
  gap: 6px;
  padding: 6px;
  background: #ebe7de;
  border-radius: 999px;
}

nav a,
.login-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

nav a:hover,
nav a:focus-visible {
  background: var(--white);
}

.login-link {
  justify-self: end;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 28px rgba(217, 182, 79, 0.2);
}

.hero,
.belief,
.split-section,
.focus,
.story,
.opportunity,
.contact,
footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
  padding: 64px 0 44px;
}

.hero-copy {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.04em;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-copy p:not(.eyebrow),
.belief-copy p,
.split-copy p,
.story-copy p,
.focus-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.18rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  font-weight: 800;
}

.button-dark {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button-light {
  color: var(--navy);
  background: #eee6d4;
}

.hero-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 24%, rgba(66, 215, 167, 0.78), transparent 24%),
    radial-gradient(circle at 74% 18%, rgba(46, 115, 255, 0.7), transparent 26%),
    linear-gradient(145deg, #101115, #24313f 54%, #f0d86d);
  box-shadow: var(--shadow);
}

.hero-panel,
.rounded-media,
.quote-panel,
.article-media {
  background-position: center calc(50% + var(--parallax-y, 0px));
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), #000);
}

.hero-image {
  position: absolute;
  inset: 34% 8% 8%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.14), rgba(5, 9, 20, 0.58)),
    url("/assets/market-abstract.webp") center / cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translate3d(0, calc(var(--parallax-y, 0px) * -0.25), 0);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 217, 120, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 217, 120, 0.15) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}

.orbital {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.orbital-one {
  width: 420px;
  height: 420px;
  top: 48px;
  right: -110px;
}

.orbital-two {
  width: 250px;
  height: 250px;
  top: 120px;
  left: 60px;
}

.metric-card {
  position: absolute;
  z-index: 2;
  width: min(220px, 42%);
  padding: 18px;
  color: #fff;
  background: rgba(5, 5, 5, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(14px);
}

.metric-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.metric-card strong {
  display: block;
  line-height: 1.15;
}

.metric-card-ai {
  top: 62px;
  left: 52px;
}

.metric-card-med {
  right: 48px;
  bottom: 82px;
}

.belief {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 6vw, 78px);
  padding: 72px 0;
}

.belief h2 {
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
}

.belief-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.belief-copy p {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  padding: 36px 0 78px;
}

.rounded-media {
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-lab {
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.06), rgba(5, 9, 20, 0.28)),
    url("/assets/medical-lab.webp") center / cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-copy p {
  margin-top: 26px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.check-list span {
  padding: 16px 18px;
  background: #f4f1ea;
  border-radius: 16px;
  font-weight: 800;
}

.focus {
  padding: 68px 0;
}

.section-title {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

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

.focus-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.focus-card:nth-child(2) {
  background: #eef9f4;
}

.focus-card:nth-child(3) {
  background: #f7edca;
}

.focus-card span {
  width: max-content;
  padding: 8px 11px;
  color: #fff;
  background: var(--black);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.focus-card p {
  margin-bottom: 0;
}

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  padding: 52px 0 78px;
}

.story-copy,
.quote-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-copy {
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
}

.story-copy p:not(.eyebrow) {
  max-width: 720px;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  padding: clamp(30px, 5vw, 52px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.1), rgba(5, 9, 20, 0.72)),
    url("/assets/future-tech.webp") center / cover;
}

blockquote {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.quote-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.news {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 12px 0 72px;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(244, 217, 120, 0.26), transparent 28%),
    linear-gradient(135deg, #050914, #111d30 72%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.news-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 28px;
  padding: 8px 12px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card h3 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3.3vw, 3.4rem);
  line-height: 0.98;
}

.news-card p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.news-card strong {
  white-space: nowrap;
  font-size: 0.95rem;
}

.article {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 40px;
}

.article-hero {
  padding: clamp(30px, 6vw, 66px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-hero h1 {
  max-width: 860px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.article-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.article-media {
  position: relative;
  min-height: 430px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 22%, rgba(66, 215, 167, 0.72), transparent 25%),
    radial-gradient(circle at 82% 18%, rgba(46, 115, 255, 0.62), transparent 26%),
    linear-gradient(145deg, #101115, #24313f 60%, #f0d86d);
  box-shadow: var(--shadow);
}

.article-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
}

.article-body {
  padding: clamp(30px, 6vw, 66px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-body p {
  color: var(--muted);
  font-size: 1.08rem;
}

.article-body .lead {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 30px;
  color: #fff;
  background: var(--black);
  border-radius: 22px;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
}

.article-footer {
  width: 100%;
  padding: 24px 0 0;
}

.portal-shell {
  width: min(760px, calc(100% - 36px));
  min-height: calc(100vh - 180px);
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: 56px 0;
}

.portal-card {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portal-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.portal-card p {
  color: var(--muted);
}

.portal-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.portal-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.portal-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

.portal-form button {
  border: 0;
  cursor: pointer;
}

.portal-error {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: #7d1d1d;
  background: #ffe4df;
  border-radius: 14px;
  font-weight: 800;
}

.portal-status {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border-radius: 16px;
}

.status-row strong {
  color: var(--ink);
}

.status-pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.opportunity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
  padding: clamp(30px, 5vw, 58px);
  color: #f7f1df;
  background:
    radial-gradient(circle at 82% 24%, rgba(244, 217, 120, 0.22), transparent 28%),
    linear-gradient(135deg, #050914, #111d30 72%);
  border-radius: var(--radius);
}

.opportunity h2 {
  max-width: 780px;
}

.opportunity .button-dark {
  flex: 0 0 auto;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.contact p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.contact a,
.contact span {
  font-size: clamp(1.35rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 32px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal-block {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax-panel {
  transition: transform 140ms linear;
}

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

  nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  nav a {
    flex: 1;
  }

  .hero,
  .belief,
  .split-section,
  .section-title,
  .story {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    min-height: 520px;
  }

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

  .focus-card {
    min-height: 260px;
  }

  .opportunity,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --radius: 22px;
    --shadow: 0 18px 46px rgba(20, 24, 30, 0.1);
  }

  .hero,
  .belief,
  .split-section,
  .focus,
  .story,
  .news,
  .portal-shell,
  .opportunity,
  .contact,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    gap: 12px;
  }

  .hero {
    gap: 16px;
    padding: 22px 0 34px;
  }

  .hero-copy,
  .split-copy,
  .story-copy,
  .opportunity {
    padding: 26px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.72rem, 14vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
  }

  h2,
  .belief h2 {
    font-size: clamp(2.05rem, 10vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.035em;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero-copy p:not(.eyebrow),
  .belief-copy p,
  .split-copy p,
  .story-copy p,
  .focus-card p {
    font-size: 1rem;
  }

  .belief {
    gap: 22px;
    padding: 42px 0;
  }

  .split-section {
    gap: 16px;
    padding: 24px 0 48px;
  }

  .focus {
    padding: 42px 0;
  }

  .section-title {
    gap: 18px;
    margin-bottom: 20px;
  }

  .focus-grid {
    gap: 14px;
  }

  .focus-card {
    min-height: auto;
    gap: 48px;
    padding: 24px;
  }

  .story {
    gap: 16px;
    padding: 38px 0 48px;
  }

  .news {
    padding: 0 0 46px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px;
  }

  .news-card h3 {
    font-size: clamp(1.65rem, 8vw, 2.7rem);
  }

  .article {
    width: min(100% - 24px, 980px);
    padding-top: 22px;
  }

  .article-hero,
  .article-body {
    padding: 26px;
  }

  .article-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .article-media {
    min-height: 360px;
  }

  .quote-panel {
    min-height: 360px;
  }

  blockquote {
    font-size: clamp(1.7rem, 8vw, 2.7rem);
    line-height: 1.03;
  }

  .opportunity {
    margin-bottom: 22px;
  }

  .contact {
    padding: 28px 0;
  }

  .contact span {
    max-width: 100%;
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.05;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: auto 1fr;
    padding: 12px;
  }

  .brand {
    width: 94px;
  }

  nav {
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 18px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a,
  .login-link {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .login-link {
    justify-self: end;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy,
  .hero-panel {
    min-height: auto;
  }

  .hero-panel {
    height: 430px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metric-card {
    width: min(190px, calc(100% - 44px));
    padding: 15px;
    border-radius: 16px;
  }

  .metric-card span {
    margin-bottom: 18px;
  }

  .orbital-one {
    width: 300px;
    height: 300px;
    top: 44px;
    right: -118px;
  }

  .orbital-two {
    width: 180px;
    height: 180px;
    top: 118px;
    left: 22px;
  }

  .metric-card-ai {
    left: 22px;
    top: 26px;
  }

  .metric-card-med {
    right: 22px;
    bottom: 34px;
  }

  .hero-image {
    inset: 38% 18px 18px;
    border-radius: 18px;
  }

  .rounded-media {
    min-height: 300px;
  }

  .check-list span {
    padding: 14px 15px;
    border-radius: 14px;
  }

  .quote-panel {
    min-height: 330px;
    padding: 26px;
  }

  .article-media {
    min-height: 320px;
  }

  .status-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-body blockquote {
    padding: 24px;
    border-radius: 18px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.45rem;
  }

  h2,
  .belief h2 {
    font-size: 1.9rem;
  }

  .hero-copy,
  .split-copy,
  .story-copy,
  .opportunity,
  .focus-card,
  .portal-card {
    padding: 22px;
  }

  .hero-panel {
    height: 390px;
  }

  .contact span {
    font-size: 1.32rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f7f1df;
    --muted: #b6b4ad;
    --line: #263142;
    --paper: #07101f;
    --white: #101a2b;
    --black: #f4d978;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  }

  .site-header {
    background: rgba(7, 16, 31, 0.88);
    border-bottom-color: rgba(244, 217, 120, 0.12);
  }

  nav {
    background: #121d2f;
  }

  nav a:hover,
  nav a:focus-visible {
    background: #1b2940;
  }

  .login-link,
  .button-dark,
  .focus-card span {
    color: #07101f;
    background: var(--gold-light);
  }

  .button-light,
  .check-list span {
    color: var(--ink);
    background: #18243a;
  }

  .hero-copy,
  .split-copy,
  .focus-card,
  .story-copy,
  .article-hero,
  .article-body,
  .portal-card {
    background: #101a2b;
  }

  .focus-card:nth-child(2) {
    background: #102a2d;
  }

  .focus-card:nth-child(3) {
    background: #2c2613;
  }

  .hero-panel,
  .article-media {
    background:
      radial-gradient(circle at 18% 24%, rgba(244, 217, 120, 0.3), transparent 24%),
      radial-gradient(circle at 74% 18%, rgba(46, 115, 255, 0.52), transparent 26%),
      linear-gradient(145deg, #050914, #0d1a2e 54%, #2a2210);
  }

  .news-card,
  .opportunity,
  .article-body blockquote {
    color: #f7f1df;
    background:
      radial-gradient(circle at 82% 20%, rgba(244, 217, 120, 0.22), transparent 28%),
      linear-gradient(135deg, #030712, #101a2b 72%);
  }

  .news-card span {
    color: #07101f;
    background: var(--gold-light);
  }

  .opportunity .button-dark {
    color: #07101f;
    background: var(--gold-light);
  }

  .contact,
  footer {
    border-color: var(--line);
  }

  .portal-form input,
  .status-row {
    background: #07101f;
    border-color: var(--line);
  }

  .portal-error {
    color: #ffd8d0;
    background: #401c1c;
  }
}

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

  .reveal-block,
  .parallax-panel,
  .hero-image {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
