:root {
  color-scheme: dark;
  --bg: oklch(0.105 0.012 55);
  --surface: oklch(0.155 0.014 55);
  --surface-raised: oklch(0.19 0.016 55);
  --text: oklch(0.96 0.012 70);
  --muted: oklch(0.7 0.018 65);
  --line: oklch(0.31 0.02 55);
  --orange: oklch(0.72 0.19 55);
  --orange-bright: oklch(0.82 0.17 65);
  --orange-soft: oklch(0.72 0.19 55 / 0.13);
  --shadow: 0 32px 80px oklch(0.04 0.01 50 / 0.55);
  font-family: Inter, "Segoe UI Variable", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 5%, oklch(0.25 0.08 55 / 0.24), transparent 34rem),
    linear-gradient(145deg, oklch(0.125 0.015 55), var(--bg) 58%);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--bg);
  background: var(--orange-bright);
  transform: translateY(-180%);
  transition: transform 140ms ease;
}

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

.backdrop,
.backdrop__grid,
.backdrop__glow {
  position: fixed;
  pointer-events: none;
}

.backdrop {
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.backdrop__grid {
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
}

.backdrop__glow {
  width: 36rem;
  height: 36rem;
  border: 1px solid oklch(0.72 0.19 55 / 0.12);
  border-radius: 50%;
  filter: blur(1px);
}

.backdrop__glow::before,
.backdrop__glow::after {
  position: absolute;
  content: "";
  border: 1px solid oklch(0.72 0.19 55 / 0.09);
  border-radius: inherit;
}

.backdrop__glow::before {
  inset: 14%;
}

.backdrop__glow::after {
  inset: 31%;
  background: oklch(0.72 0.19 55 / 0.035);
}

.backdrop__glow--top {
  top: -23rem;
  right: -8rem;
  animation: orbit 22s linear infinite;
}

.backdrop__glow--bottom {
  bottom: -28rem;
  left: -13rem;
  animation: orbit 28s linear infinite reverse;
}

.portal-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px 0 28px;
  display: flex;
  flex-direction: column;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid oklch(0.72 0.19 55 / 0.38);
  border-radius: 14px;
  color: var(--orange-bright);
  background: linear-gradient(145deg, var(--orange-soft), oklch(0.12 0.01 55));
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.08);
}

.brand__mark svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand__copy {
  display: flex;
  align-items: baseline;
  gap: 7px;
  letter-spacing: -0.025em;
}

.brand__name {
  font-size: 20px;
  font-weight: 760;
}

.brand__product {
  color: var(--orange-bright);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  max-width: 850px;
  margin: clamp(72px, 11vh, 124px) 0 54px;
}

.hero__eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-bright);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(48px, 7.2vw, 92px);
  font-weight: 760;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.hero__lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.service-card {
  position: relative;
  min-height: 344px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  text-decoration: none;
  background:
    radial-gradient(circle at 92% 8%, oklch(0.72 0.19 55 / 0.11), transparent 16rem),
    linear-gradient(145deg, var(--surface-raised), var(--surface));
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.04);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -32px;
  bottom: -48px;
  width: 190px;
  height: 190px;
  border: 1px solid oklch(0.72 0.19 55 / 0.11);
  border-radius: 50%;
  content: "";
  transition: transform 280ms ease;
}

.service-card:hover {
  border-color: oklch(0.72 0.19 55 / 0.7);
  box-shadow: var(--shadow), inset 0 1px 0 oklch(1 0 0 / 0.06);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scale(1.12);
}

.service-card:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 4px;
}

.service-card--shops {
  background:
    radial-gradient(circle at 92% 8%, oklch(0.72 0.19 55 / 0.07), transparent 16rem),
    linear-gradient(145deg, oklch(0.17 0.012 55), oklch(0.135 0.01 55));
}

.service-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__number {
  color: var(--muted);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 12px;
}

.service-card__status {
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid oklch(0.72 0.19 55 / 0.26);
  border-radius: 999px;
  color: var(--orange-bright);
  background: var(--orange-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__status--soon {
  color: var(--muted);
  border-color: var(--line);
  background: oklch(1 0 0 / 0.035);
}

.service-card__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.service-card__icon {
  position: absolute;
  top: 72px;
  right: 26px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid oklch(0.72 0.19 55 / 0.18);
  border-radius: 18px;
  color: var(--orange-bright);
  background: oklch(0.72 0.19 55 / 0.07);
  transform: rotate(3deg);
}

.service-card__icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card__body {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 72px);
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.service-card__label {
  margin-bottom: 7px;
  color: var(--orange-bright);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 730;
  letter-spacing: -0.045em;
}

.service-card__description {
  max-width: 470px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-card__action {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.service-card__action svg {
  width: 20px;
  fill: none;
  stroke: var(--orange-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.service-card:hover .service-card__action svg {
  transform: translateX(5px);
}

.portal-footer {
  margin-top: auto;
  padding-top: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-footer__line {
  width: 42px;
  height: 1px;
  background: var(--line);
}

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

@media (max-width: 760px) {
  .portal-shell {
    width: min(100% - 28px, 580px);
    padding-top: 22px;
  }

  .hero {
    margin: 64px 0 36px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 66px);
    line-height: 0.98;
  }

  .hero__lead {
    margin-top: 22px;
  }

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

  .service-card {
    min-height: 318px;
    padding: 22px;
    border-radius: 20px;
  }

  .portal-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .portal-footer__line {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .hero__eyebrow {
    font-size: 10px;
  }

  .service-card__icon {
    top: 68px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .service-card__body {
    max-width: calc(100% - 50px);
  }
}

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