:root {
  color-scheme: dark;
  --page: #02050b;
  --panel: #070d16;
  --text: #f8fbff;
  --muted: rgba(231, 238, 248, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --blue: #55b8ff;
  --cyan: #9fe8ff;
  --gold: #f4c76a;
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html {
  background: var(--page);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 6%, rgba(85, 184, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 18% 70%, rgba(244, 199, 106, 0.12), transparent 26rem),
    linear-gradient(180deg, #02050b 0%, #06101d 44%, #02050b 100%);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Microsoft YaHei",
    sans-serif;
}

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

.portal {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portal::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(2, 5, 11, 0.86), rgba(2, 5, 11, 0.48));
  padding: 12px 0 13px;
  backdrop-filter: blur(24px) saturate(130%);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 14px 38px var(--shadow);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.nav-actions {
  display: inline-flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.nav-actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.nav-actions a:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.nav-actions .team-shortcut.is-selected {
  background: rgba(45, 154, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(92, 190, 255, 0.26);
}

.nav-actions .personal-shortcut.is-selected {
  background: rgba(244, 184, 73, 0.18);
  box-shadow: inset 0 0 0 1px rgba(244, 199, 106, 0.25);
}

a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.94);
  outline-offset: 4px;
}

.page-rail {
  position: fixed;
  top: 50%;
  right: max(12px, env(safe-area-inset-right));
  z-index: 19;
  display: grid;
  gap: 6px;
  transform: translateY(-50%);
}

.page-rail a {
  display: grid;
  width: 28px;
  height: 26px;
  place-items: center;
}

.page-rail a::before {
  content: "";
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0.72;
  transition:
    height 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.page-rail a:nth-child(1)::before {
  background: rgba(85, 184, 255, 0.46);
}

.page-rail a:nth-child(3)::before {
  background: rgba(244, 199, 106, 0.46);
}

.page-rail a:hover::before {
  height: 14px;
  opacity: 1;
}

.page-rail a.is-active::before {
  height: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.38);
  opacity: 1;
}

.page-rail a:nth-child(1).is-active::before {
  background: var(--blue);
  box-shadow: 0 0 16px rgba(85, 184, 255, 0.5);
}

.page-rail a:nth-child(3).is-active::before {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(244, 199, 106, 0.46);
}

.page-rail a:focus-visible {
  outline: none;
}

.page-rail a:focus-visible::before {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.26),
    0 0 16px rgba(255, 255, 255, 0.42);
}

.panel {
  position: relative;
  display: grid;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  align-items: center;
  overflow: hidden;
  padding: clamp(58px, 8vh, 98px) 24px;
  isolation: isolate;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.panel-intro::before {
  background:
    radial-gradient(circle at 74% 47%, rgba(85, 184, 255, 0.2), transparent 28rem),
    linear-gradient(90deg, rgba(2, 5, 11, 0.94), rgba(2, 5, 11, 0.6) 54%, rgba(2, 5, 11, 0.08));
}

.panel-story::before {
  background:
    radial-gradient(circle at 28% 44%, rgba(159, 232, 255, 0.15), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%);
}

.panel-choice::before {
  background:
    radial-gradient(circle at 25% 50%, rgba(85, 184, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 80% 62%, rgba(244, 199, 106, 0.16), transparent 24rem);
}

.panel-inner {
  display: grid;
  width: min(1180px, 100%);
  align-items: center;
  gap: clamp(38px, 5.8vw, 82px);
  margin: 0 auto;
}

.panel .panel-inner > * {
  opacity: 0.7;
  transform: translateY(16px) scale(0.992);
  transition:
    opacity 0.42s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel .panel-inner > :nth-child(2) {
  transition-delay: 70ms;
}

.panel.is-active .panel-inner > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intro-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
}

.story-grid {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 0.9fr);
}

.choice-grid {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 0.95fr);
}

.copy-block {
  display: grid;
  gap: 22px;
}

.intro-copy {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(103, 189, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 25, 46, 0.36);
  color: #dff2ff;
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.45;
  backdrop-filter: blur(18px);
}

.section-kicker {
  border-color: rgba(255, 214, 111, 0.3);
  color: #fff0c4;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 6.7vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.mobile-break {
  display: none;
}

.intro-subline {
  max-width: 620px;
  margin: 0;
  color: rgba(233, 241, 251, 0.72);
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.9;
}

.lead {
  max-width: 740px;
  margin: 0;
  color: rgba(239, 247, 255, 0.84);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.95;
}

.stat-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 12px;
}

.stat-pair span {
  display: grid;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 15px;
}

.stat-pair strong {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.stat-pair small {
  color: rgba(230, 239, 249, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.visual {
  position: relative;
  width: min(470px, 100%);
  margin: 0;
  justify-self: center;
}

.visual::after {
  content: "";
  position: absolute;
  inset: auto 10% -20px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(22px);
  pointer-events: none;
}

.visual img {
  display: block;
  width: 100%;
  height: min(75svh, 720px);
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.54),
    0 0 80px rgba(85, 184, 255, 0.1);
  filter: saturate(1.08) contrast(1.04);
  -webkit-mask-image: radial-gradient(
    ellipse 72% 66% at 50% 49%,
    #000 58%,
    rgba(0, 0, 0, 0.96) 70%,
    rgba(0, 0, 0, 0.62) 84%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 72% 66% at 50% 49%,
    #000 58%,
    rgba(0, 0, 0, 0.96) 70%,
    rgba(0, 0, 0, 0.62) 84%,
    transparent 100%
  );
}

.opening-visual img {
  object-position: 50% 48%;
}

.story-visual img {
  object-position: 50% 42%;
}

.choice-visual img {
  object-position: 50% 48%;
}

.choice-copy {
  display: grid;
  gap: 24px;
}

.choice-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 16px;
  align-content: start;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: stretch;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 11, 20, 0.72);
  padding: 24px;
  box-shadow: 0 28px 86px var(--shadow);
  backdrop-filter: blur(20px);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
  scroll-margin-top: 110px;
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
}

.choice-card.team::before {
  background: linear-gradient(135deg, rgba(17, 135, 255, 0.78), transparent 52%);
}

.choice-card.personal::before {
  background: linear-gradient(135deg, rgba(255, 173, 41, 0.76), transparent 52%);
}

.choice-card span,
.choice-card strong,
.choice-card small,
.choice-card em {
  position: relative;
}

.choice-kicker {
  color: rgba(235, 246, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

.choice-card strong {
  font-size: clamp(1.62rem, 2.35vw, 2.08rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.choice-card small {
  max-width: 310px;
  color: rgba(240, 247, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.72;
}

.choice-card em {
  align-self: end;
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.5;
}

.choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(8, 23, 42, 0.8);
}

.choice-card.is-selected {
  transform: translateY(-3px);
  background: rgba(8, 23, 42, 0.86);
}

.choice-card.is-selected::before {
  opacity: 0.52;
}

.choice-card.team.is-selected {
  border-color: rgba(91, 190, 255, 0.78);
  box-shadow:
    0 28px 86px var(--shadow),
    0 0 0 1px rgba(62, 169, 255, 0.16),
    0 0 48px rgba(29, 139, 255, 0.18);
}

.choice-card.personal.is-selected {
  border-color: rgba(244, 199, 106, 0.74);
  box-shadow:
    0 28px 86px var(--shadow),
    0 0 0 1px rgba(244, 199, 106, 0.14),
    0 0 48px rgba(244, 168, 49, 0.16);
}

.proof-strip {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 48px));
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0;
  opacity: 0.78;
  transform: translateX(-50%);
}

.proof-strip span {
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  backdrop-filter: none;
}

.proof-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 900px) {
  .page-rail {
    display: none;
  }

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

  .nav-actions {
    width: 100%;
  }

  .nav-actions a {
    flex: 1 1 auto;
  }

  .intro-grid,
  .story-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    order: 1;
    padding-top: 0;
  }

  .opening-visual {
    order: 2;
  }

  .story-copy,
  .choice-copy {
    order: 2;
  }

  .story-visual,
  .choice-visual {
    order: 1;
  }

  .visual {
    width: min(560px, 100%);
  }

  .choice-panel {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 521px) and (max-width: 900px) {
  .topbar {
    gap: 8px;
    min-height: 0;
    padding: 9px 0;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .nav-actions {
    padding: 4px;
  }

  .nav-actions a {
    min-height: 32px;
    font-size: 0.76rem;
  }

  .panel {
    align-items: start;
    padding: 116px 24px 20px;
  }

  .panel-inner {
    gap: 18px;
  }

  .copy-block {
    gap: 14px;
  }

  .eyebrow,
  .section-kicker {
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  h1 {
    font-size: clamp(2.65rem, 7vw, 3.4rem);
    line-height: 1.02;
  }

  .intro-subline {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .visual img {
    height: clamp(150px, 25dvh, 250px);
  }

  .opening-visual img {
    height: clamp(170px, 30dvh, 310px);
  }

  .story-visual img {
    height: clamp(145px, 23dvh, 240px);
  }

  .choice-visual img {
    height: clamp(120px, 18dvh, 190px);
  }

  .lead {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .stat-pair strong {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .choice-copy {
    gap: 12px;
  }

  .choice-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .choice-card {
    min-height: 180px;
    gap: 7px;
    padding: 16px;
  }

  .choice-card small {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .choice-card em {
    margin-top: 2px;
    font-size: 0.82rem;
  }

  .proof-strip {
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .topbar {
    width: calc(100% - 24px);
    gap: 12px;
    min-height: 0;
    padding: 12px 0 11px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    min-width: 0;
    overflow: hidden;
    padding: 4px;
  }

  .nav-actions a {
    min-height: 34px;
    padding: 0 6px;
    min-width: 0;
    overflow: visible;
    font-size: 0.68rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .panel {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    align-items: start;
    padding: 140px 16px 54px;
  }

  .panel-intro {
    padding-top: 140px;
  }

  .panel-inner {
    gap: 24px;
  }

  .copy-block {
    gap: 16px;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  h1 {
    width: 100%;
    max-width: 9.2em;
    font-size: clamp(2.22rem, 10.2vw, 3rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: auto;
  }

  .mobile-break {
    display: block;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.9;
  }

  .visual {
    width: 100%;
  }

  .visual::after {
    inset: auto 12% -14px;
    height: 34px;
    filter: blur(18px);
  }

  .visual img {
    width: 100%;
    height: clamp(310px, 43svh, 430px);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  }

  .opening-visual img {
    height: clamp(300px, 39svh, 390px);
    object-position: 50% 50%;
  }

  .story-visual img {
    height: clamp(280px, 36svh, 390px);
    object-position: 50% 44%;
  }

  .choice-visual img {
    height: clamp(180px, 22svh, 220px);
    object-position: 50% 46%;
  }

  .intro-subline {
    max-width: 24em;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .stat-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-pair span {
    padding-top: 11px;
  }

  .stat-pair strong {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .stat-pair small {
    font-size: 0.74rem;
  }

  .choice-copy {
    gap: 16px;
  }

  .choice-card {
    min-height: 136px;
    gap: 8px;
    padding: 18px;
    scroll-margin-top: 112px;
  }

  .choice-card strong {
    font-size: 1.72rem;
  }

  .choice-card small {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .choice-card em {
    margin-top: 2px;
    font-size: 0.86rem;
  }

  .proof-strip {
    width: fit-content;
    max-width: calc(100% - 32px);
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
    bottom: 20px;
    left: 50%;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    opacity: 0.86;
    backdrop-filter: none;
    transform: translateX(-50%);
  }

  .proof-strip::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 50%;
    width: 46px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: translateX(-50%);
  }

  .proof-strip span {
    min-height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 7px;
    color: rgba(241, 247, 255, 0.68);
    font-size: 0.68rem;
    line-height: 1.35;
    white-space: nowrap;
    backdrop-filter: none;
  }

  .proof-strip span:first-child {
    padding-left: 0;
  }

  .proof-strip span:last-child {
    padding-right: 0;
  }

  .proof-strip span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 520px) and (max-height: 740px) {
  .topbar {
    gap: 6px;
    padding: 8px 0;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .brand small {
    display: none;
  }

  .nav-actions {
    padding: 3px;
  }

  .nav-actions a {
    min-height: 30px;
    font-size: 0.64rem;
  }

  .panel,
  .panel-intro {
    align-items: center;
    padding: 100px 14px 24px;
  }

  .panel-inner {
    gap: 14px;
  }

  .copy-block {
    gap: 12px;
  }

  .eyebrow,
  .section-kicker {
    padding: 6px 9px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  h1 {
    max-width: 9.4em;
    font-size: 2rem;
    line-height: 1.03;
  }

  .intro-subline {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .opening-visual img {
    height: clamp(170px, 28dvh, 190px);
  }

  .story-visual img {
    height: clamp(145px, 23dvh, 170px);
  }

  .choice-visual img {
    height: clamp(120px, 19dvh, 145px);
  }

  .lead {
    font-size: 0.83rem;
    line-height: 1.55;
  }

  .stat-pair span {
    gap: 4px;
    padding-top: 8px;
  }

  .stat-pair strong {
    font-size: 1.75rem;
  }

  .stat-pair small {
    font-size: 0.66rem;
  }

  .choice-copy,
  .choice-panel {
    gap: 10px;
  }

  .choice-card {
    min-height: 0;
    gap: 5px;
    padding: 12px;
  }

  .choice-kicker {
    font-size: 0.66rem;
  }

  .choice-card strong {
    font-size: 1.42rem;
  }

  .choice-card small {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .choice-card em {
    margin-top: 0;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .proof-strip {
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .panel .panel-inner > *,
  .nav-actions a,
  .choice-card,
  .page-rail a::before {
    transition: none;
  }

  .panel .panel-inner > * {
    opacity: 1;
    transform: none;
  }
}

/* Service destinations share one image without adding height to the snap panel. */
.panel-choice::before {
  background: linear-gradient(180deg, rgba(2, 5, 11, 0.05), rgba(2, 5, 11, 0.35) 35%, #02050b 95%);
}

.panel-choice .choice-grid {
  height: 100%;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
}

.panel-choice .choice-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: none;
  transition: none;
}

.panel-choice .choice-visual::after {
  display: none;
}

.panel-choice .choice-visual img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: 50% 36%;
  box-shadow: none;
  filter: none;
  mask-image: none;
  -webkit-mask-image: none;
}

.panel-choice .choice-copy {
  gap: 28px;
  padding-bottom: 16px;
  transform: none;
}

.services-heading {
  display: grid;
  gap: 14px;
}

.services-heading .section-kicker {
  border: 0;
  padding: 0;
  background: none;
  color: #e0e7ed;
  backdrop-filter: none;
  font-weight: 500;
}

.services-heading h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.service-card {
  --service-color: #a8e3cd;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-width: 0;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 2px solid var(--service-color);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.82);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease;
}

.service-coding { --service-color: #9ed4ff; }
.service-aigc { --service-color: #f4c76a; }

.service-card:hover {
  border-color: var(--service-color);
  background: rgba(18, 24, 31, 0.94);
}

.service-label {
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--service-color);
}

.service-card strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.service-status {
  font-size: 0.7rem;
  font-weight: 400;
  color: #f4c76a;
}

.service-card small {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #c3ccd5;
}

.service-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: #f8fbff;
  font-size: 0.82rem;
  line-height: 1.5;
}

.service-action > span { font-size: 1.3rem; }

@media (max-width: 900px) {
  .nav-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nav-actions a { min-height: 36px; font-size: 0.8rem; }
  .panel-choice { padding-bottom: 54px; }
  .service-card { padding: 18px; min-height: 215px; }
  .service-card strong { font-size: 1.5rem; }
  .services-heading h2 { font-size: 2.5rem; }
}

@media (max-width: 700px) {
  .panel-choice .choice-copy { gap: 20px; padding-bottom: 4px; }
  .panel-choice .choice-visual img { object-position: 50% 0%; }
  .services-heading { gap: 10px; }
  .services-heading h2 { font-size: 2rem; }
  .service-links { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .service-card {
    position: relative;
    grid-template-rows: auto auto;
    min-height: 96px;
    gap: 6px;
    padding: 16px 44px 16px 18px;
    border-top-width: 1px;
    border-left: 2px solid var(--service-color);
  }
  .service-label { display: none; }
  .service-card strong { font-size: 1.4rem; }
  .service-card small { font-size: 0.8rem; line-height: 1.5; }
  .service-action { position: absolute; right: 16px; top: 50%; margin: 0; font-size: 0; transform: translateY(-50%); }
}

@media (max-height: 740px) and (max-width: 700px) {
  .panel-choice .choice-copy { gap: 14px; padding-bottom: 0; }
  .services-heading { gap: 8px; }
  .services-heading h2 { font-size: 1.75rem; }
  .service-card { min-height: 78px; padding: 10px 40px 10px 14px; }
  .service-card small { font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card { transition: none; }
}

@media (max-height: 600px) and (min-width: 521px) {
  .topbar { flex-direction: row; align-items: center; gap: 12px; min-height: 56px; padding: 8px 0; }
  .brand img { width: 32px; height: 32px; }
  .brand small { display: none; }
  .nav-actions { width: auto; padding: 3px; gap: 0; }
  .nav-actions a { min-height: 32px; padding: 0 10px; }
  .panel { padding: 76px 24px 34px; }
  .intro-grid, .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .panel .copy-block { gap: 12px; }
  .panel .intro-copy { padding-top: 0; }
  .eyebrow { padding: 6px 9px; font-size: 0.7rem; }
  h1 { font-size: 2.25rem; line-height: 1.1; }
  .intro-subline, .lead { font-size: 0.82rem; line-height: 1.55; }
  .visual img, .opening-visual img, .story-visual img { height: 65dvh; }
  .stat-pair strong { font-size: 2rem; }
  .stat-pair small { font-size: 0.7rem; }
  .panel-choice .choice-copy { gap: 16px; padding-bottom: 0; }
  .services-heading .section-kicker, .service-label { display: none; }
  .services-heading h2 { font-size: 1.75rem; }
  .service-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-card { grid-template-rows: auto 1fr auto; min-height: 150px; padding: 14px; gap: 8px; }
  .service-card strong { font-size: 1.35rem; }
  .service-card small { font-size: 0.78rem; line-height: 1.45; }
  .service-action { position: static; margin-top: 0; font-size: 0.75rem; transform: none; }
  .proof-strip { bottom: 10px; }
}
