/* Updated: 2026-03-09 v2 */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f3f7fb;
  --bg-soft: #eef4fa;
  --panel: #ffffff;
  --panel-2: #f7fbff;
  --panel-3: #edf4fb;
  --line: rgba(112, 145, 184, 0.26);
  --line-strong: rgba(29, 124, 255, 0.42);
  --text: #102033;
  --text-soft: rgba(38, 58, 84, 0.72);
  --text-dim: rgba(66, 86, 113, 0.52);
  --ink: #07111e;
  --white: #ffffff;
  --blue: #1d7cff;
  --blue-2: #25b5ff;
  --glow: rgba(28, 124, 255, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1440px;
  --shadow: 0 18px 48px rgba(24, 48, 82, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 50% 110%, rgba(29, 124, 255, 0.09), transparent 26%),
    radial-gradient(circle at 15% 24%, rgba(37, 181, 255, 0.05), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

body.has-overlay {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.eyebrow,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue-2);
}

.pill {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(20, 46, 80, 0.34);
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-outline-light {
  border-color: rgba(16, 32, 51, 0.16);
  color: var(--text);
  background: transparent;
}

.button-outline-dark {
  border-color: #d2dce8;
  color: var(--ink);
  background: transparent;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(29, 124, 255, 0.24);
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
}

.text-link {
  color: var(--blue-2);
  font-weight: 600;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-inline-button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.footer-inline-button {
  display: block;
  margin: 0 0 10px;
  color: var(--text-soft);
}

.footer-inline-button:hover {
  opacity: 0.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 48;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e6edf5;
}

.header-shell {
  min-height: 96px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand-image {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 14px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: #17304d;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #1b5ba1;
  background: rgba(29, 124, 255, 0.08);
}

.nav-link.is-active {
  color: #114684;
  background: rgba(29, 124, 255, 0.14);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-language-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid #d8e3ef;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 20px rgba(17, 51, 88, 0.08);
}

.locale-chip {
  min-height: 36px;
  min-width: 68px;
  padding: 0 12px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #25384f;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.locale-chip:hover,
.locale-chip:focus-visible {
  color: #174a84;
  background: rgba(29, 124, 255, 0.1);
}

.locale-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 124, 255, 0.22);
}

.locale-chip.is-active {
  color: #0f4e90;
  background: rgba(29, 124, 255, 0.16);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid #d8e3ef;
  background: #ffffff;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: #25384f;
}

.mobile-menu-layer {
  position: fixed;
  inset: 0;
  z-index: 72;
}

.mobile-menu-layer[hidden] {
  display: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 23, 38, 0.46);
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 440px);
  max-width: 100vw;
  height: 100dvh;
  background: #ffffff;
  color: var(--ink);
  padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.28);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.mobile-menu-layer.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-layer.is-open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.mobile-panel-head strong {
  color: #1a314f;
  font-size: 16px;
  line-height: 1.3;
}

.mobile-panel-head button {
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: #1d7cff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-panel-body {
  display: grid;
  gap: 0;
}

.mobile-panel-language {
  display: none;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #edf2f7;
}

.mobile-panel-language-title {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-language-group-mobile {
  width: fit-content;
}

.mobile-link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 0 2px;
  border-bottom: 1px solid #edf2f7;
  color: #153251;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile-link:hover,
.mobile-link:focus-visible {
  color: #1d66b6;
}

.mobile-link.is-active {
  color: #124f93;
}

.mobile-link.utility {
  color: #4d637b;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 28px));
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(110, 146, 190, 0.28);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 42px rgba(18, 39, 67, 0.14);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
}

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent-action {
  min-height: 42px;
  min-width: 104px;
  width: auto;
  padding: 0 16px;
}

main {
  overflow: hidden;
}

.section,
.hero-shell-wrap {
  padding: 60px 0;
}

.hero-shell-wrap {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: stretch;
  padding: 18px 0 26px;
}

.hero-full-preview .hero-frame {
  width: 100%;
  margin: 0;
  border-radius: 0;
  min-height: clamp(640px, calc(100vh - 92px), 780px);
}

.hero-full-preview .hero-shell {
  min-height: clamp(640px, calc(100vh - 92px), 780px);
}

.hero-full-preview {
  padding-top: 0;
}

.hero-frame {
  position: relative;
  min-height: clamp(540px, calc(100vh - 198px), 660px);
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  background: #050a12;
  box-shadow: var(--shadow);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.94;
}

.hero-shell,
.hero-shell .eyebrow,
.hero-shell h1,
.hero-shell .hero-lead,
.hero-shell .button-outline-light {
  color: #f3f7fb;
}

.hero-shell .button-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 18, 0.68) 0%, rgba(2, 9, 18, 0.36) 48%, rgba(2, 9, 18, 0.16) 78%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0) 42%);
  pointer-events: none;
  z-index: 1;
}

.hero-frame::after {
  content: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
  padding: 0 56px 48px;
  min-height: clamp(540px, calc(100vh - 198px), 660px);
  position: relative;
  z-index: 2;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(380px, calc(100vh - 330px), 470px);
}

.hero-copy .eyebrow {
  margin-bottom: 30px;
}

.hero-copy h1,
.page-hero h1,
.page-intro h1 {
  margin: 0 0 34px;
  font-size: clamp(1.9rem, 3.15vw, 3rem);
  line-height: 1.14;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: left;
}

.hero-shell .hero-copy h1 {
  font-size: clamp(1.7rem, 2.7vw, 2.6rem);
}

.hero-title-rotator {
  display: grid;
  position: relative;
  top: 118px;
  margin-top: 0;
  justify-items: start;
}

.hero-title-line {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  text-align: left;
  transform: translateY(18px) scale(0.985);
  animation: heroTitleSwapPrimary 16s ease-in-out infinite;
}

.hero-title-segment {
  display: block;
}

.hero-title-segment + .hero-title-segment {
  margin-top: 2px;
}

.hero-title-line.is-secondary {
  animation-name: heroTitleSwapSecondary;
}

.hero-lead,
.page-hero p,
.page-intro p,
.section-head p,
.card p,
.feature-card p,
.summary-card p,
.hub-card p,
.resource-card p,
.timeline-step p,
.callout-card p,
.contact-card p,
.notice-card p {
  color: var(--text-soft);
}

.hero-lead {
  position: relative;
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 6px;
  max-width: 36ch;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-family: 'STKaiti', 'Kaiti SC', 'KaiTi', 'BiauKai', serif;
  font-weight: 600;
  color: rgba(244, 247, 252, 0.92);
  clip-path: inset(0 100% 0 0);
  animation: heroLeadWrite 4.8s steps(28, end) 0.35s forwards;
}

.hero-lead::after {
  content: '';
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -14%;
  width: 64px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 12%, rgba(138, 214, 255, 0.44) 36%, transparent 72%);
  filter: blur(5px);
  opacity: 0;
  animation: heroLeadBrush 4.8s ease-out 0.35s forwards;
  pointer-events: none;
}

.hero-actions,
.card-actions,
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.hero-beam-spark {
  display: none;
}

.hero-beam-spark::before,
.hero-beam-spark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4%;
  border-radius: 999px;
  animation: heroSparkTravel 6.6s linear infinite;
}

.hero-beam-spark::before {
  width: 14px;
  height: 14px;
  background: #8ed0ff;
  box-shadow:
    0 0 0 5px rgba(142, 208, 255, 0.16),
    0 0 18px rgba(87, 191, 255, 0.92),
    0 0 34px rgba(71, 176, 255, 0.58);
  transform: translate(-50%, -50%);
}

.hero-beam-spark::after {
  width: 86px;
  height: 86px;
  background:
    radial-gradient(circle, rgba(168, 226, 255, 0.72) 0 8%, rgba(89, 185, 255, 0.38) 24%, transparent 60%),
    conic-gradient(from 0deg, transparent 0 12%, rgba(129, 212, 255, 0.3) 12% 18%, transparent 18% 30%, rgba(129, 212, 255, 0.22) 30% 34%, transparent 34% 52%, rgba(129, 212, 255, 0.24) 52% 58%, transparent 58% 100%);
  filter: blur(0.5px);
  opacity: 0.88;
  transform: translate(-50%, -50%);
}

.hero-chat-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
  z-index: 26;
}

.hero-chat-teaser {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-chat-teaser[hidden] {
  display: none;
}

.hero-chat-dismiss {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(192, 199, 208, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #4b5563;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
  cursor: pointer;
}

.hero-chat-prompt {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(202, 210, 219, 0.9);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.98);
  color: #253242;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  cursor: pointer;
}

.hero-chat-prompt::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(202, 210, 219, 0.9);
  border-right: 1px solid rgba(202, 210, 219, 0.9);
  transform: translateY(-50%) rotate(45deg);
}

.hero-chat-prompt-spark {
  color: #253242;
  font-size: 15px;
  line-height: 1;
}

.hero-chat-launcher {
  position: relative;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #47a600, #349100);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 70, 10, 0.26);
}

.hero-chat-launcher-ai {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 7px;
  transform: translate(-50%, -50%);
}

.hero-chat-launcher-ai::after {
  content: '';
  position: absolute;
  left: 4px;
  bottom: -5px;
  width: 7px;
  height: 7px;
  border-left: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  transform: rotate(-35deg);
}

.hero-chat-launcher-ai-dots {
  position: absolute;
  left: 5px;
  top: 7px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 5px 0 0 rgba(255, 255, 255, 0.95), 10px 0 0 rgba(255, 255, 255, 0.95);
}

.hero-chat-launcher-ai-spark {
  position: absolute;
  right: -8px;
  top: -9px;
  font-size: 9px;
  line-height: 1;
  color: rgba(231, 255, 222, 0.96);
}

.hero-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(300px, calc(100vw - 40px));
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 13, 22, 0.92);
  color: #f3f7fb;
  box-shadow: 0 24px 60px rgba(5, 12, 23, 0.35);
  backdrop-filter: blur(16px);
}

.hero-chat-panel[hidden] {
  display: none;
}

.hero-chat-widget.is-open .hero-chat-launcher {
  box-shadow: 0 16px 38px rgba(8, 15, 26, 0.24);
}

.hero-chat-widget.is-open .hero-chat-teaser {
  display: none;
}

.hero-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-chat-heading {
  display: grid;
  gap: 4px;
}

.hero-chat-heading strong {
  font-size: 14px;
}

.hero-chat-heading small {
  color: rgba(243, 247, 251, 0.62);
  font-size: 11px;
}

.hero-chat-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #f3f7fb;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.hero-chat-messages {
  display: grid;
  gap: 10px;
  max-height: 190px;
  margin-top: 12px;
  overflow-y: auto;
}

.hero-chat-bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.5;
}

.hero-chat-bubble.is-agent {
  background: rgba(255, 255, 255, 0.08);
  color: #f3f7fb;
  border-top-left-radius: 8px;
}

.hero-chat-bubble.is-user {
  margin-left: auto;
  background: linear-gradient(135deg, #1d7cff, #46bbff);
  color: #fff;
  border-top-right-radius: 8px;
}

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

.hero-chat-quick {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #f3f7fb;
  font-size: 11px;
  cursor: pointer;
}

.hero-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 12px;
}

.hero-chat-input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #f3f7fb;
  padding: 0 12px;
}

.hero-chat-input::placeholder {
  color: rgba(243, 247, 251, 0.4);
}

.hero-chat-send {
  min-width: 56px;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d7cff, #4ec4ff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

@keyframes heroGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }

  50% {
    transform: translate3d(-1.5%, 1%, 0) scale(1.03);
    opacity: 0.9;
  }

  100% {
    transform: translate3d(1.25%, -1.5%, 0) scale(1.05);
    opacity: 0.8;
  }
}

@keyframes heroGridFlow {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 0 0, 0 0, 0 0, 160px 0;
  }
}

@keyframes heroSparkTravel {
  0% {
    left: 4%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    left: 52%;
    opacity: 0.96;
  }

  88% {
    opacity: 1;
  }

  100% {
    left: 94%;
    opacity: 0;
  }
}

@keyframes heroTitleSwapPrimary {
  0%,
  38% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  46%,
  100% {
    opacity: 0;
    transform: translateY(-16px) scale(1.01);
  }
}

@keyframes heroTitleSwapSecondary {
  0%,
  46% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  54%,
  92% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  96%,
  100% {
    opacity: 0;
    transform: translateY(-16px) scale(1.01);
  }
}

@keyframes heroLeadWrite {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroLeadBrush {
  0% {
    left: -12%;
    opacity: 0;
  }

  12% {
    opacity: 0.85;
  }

  88% {
    opacity: 0.6;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-frame::before,
  .hero-frame::after,
  .hero-beam-spark::before,
  .hero-beam-spark::after,
  .hero-title-line,
  .hero-lead,
  .hero-lead::after {
    animation: none;
  }

  .hero-lead {
    clip-path: none;
  }
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head-centered {
  margin-inline: auto;
  text-align: center;
}

.section-head-centered p {
  margin-inline: auto;
}

.section-head h2 {
  margin: 14px 0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.section-subtitle {
  margin: -2px 0 14px;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 600;
}

.section-head p,
.section-copy p,
.about-lead p,
.art-copy p {
  max-width: 42ch;
}

.section-muted {
  color: var(--text-dim);
}

.home-portal {
  background:
    radial-gradient(circle at 50% 100%, rgba(18, 101, 255, 0.08), transparent 20%),
    var(--bg);
}

.access-grid,
.news-grid,
.metric-row,
.card-grid,
.grid-2,
.grid-3,
.grid-4,
.split-layout,
.two-column,
.timeline {
  display: grid;
  gap: 20px;
}

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

.nav-link-button,
.mobile-link-button,
.footer-nav-button,
.search-result-button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.nav-link-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: inherit;
}

.mobile-link-button,
.search-result-button {
  width: 100%;
}

.footer-nav-button {
  color: var(--text-soft);
  padding: 0;
}

.news-grid,
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.split-layout,
.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-row,
.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-row-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portal-card,
.card,
.feature-card,
.summary-card,
.hub-card,
.resource-card,
.timeline-step,
.callout-card,
.contact-card,
.notice-card,
.hero-aside {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 10px 32px rgba(19, 41, 71, 0.06);
}

.portal-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at 86% 22%, rgba(37, 181, 255, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  padding: 24px;
  box-shadow: 0 10px 28px rgba(21, 45, 78, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.portal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 124, 255, 0.22);
  box-shadow: 0 14px 30px rgba(21, 45, 78, 0.08);
}

.portal-card-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.portal-card-copy h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
}

.card h3,
.feature-card h3,
.summary-card h3,
.hub-card h3,
.resource-card h3,
.timeline-step h3,
.callout-card h3,
.contact-card h3,
.notice-card h3,
.hero-aside h3 {
  margin: 14px 0 0;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 600;
}

.portal-card-action,
.news-card .arrow {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(18, 39, 67, 0.08);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.portal-card-copy p {
  margin: 0;
  max-width: 22ch;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portal-card:hover .portal-card-action {
  transform: translateX(3px);
  background: #f4f9ff;
  box-shadow: 0 10px 24px rgba(18, 39, 67, 0.12);
}

.home-site-card {
  padding: 18px;
  gap: 14px;
}

.home-site-card .project-real-thumb {
  min-height: 170px;
}

.home-site-card .brand-matrix-head h3 {
  font-size: 20px;
}

.home-entry-showcase-shell {
  display: block;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.home-entry-showcase {
  --home-entry-tab-overlap: -2px;
  display: grid;
  gap: 0;
}

.home-entry-tabs {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 10px;
  padding: 10px;
  margin-bottom: calc(var(--home-entry-tab-overlap) * -1);
  border-radius: 999px;
  border: 1px solid rgba(110, 146, 190, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94)),
    radial-gradient(circle at 20% 20%, rgba(37, 181, 255, 0.08), transparent 22%);
  box-shadow: 0 18px 38px rgba(18, 39, 67, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
}

.home-entry-tabs::-webkit-scrollbar {
  display: none;
}

.home-entry-tab {
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.home-entry-tab:hover,
.home-entry-tab:focus-visible {
  color: var(--text);
  background: rgba(29, 124, 255, 0.08);
  outline: none;
}

.home-entry-tab.is-active {
  color: var(--white);
  background: linear-gradient(135deg, #1d7cff, #25b5ff);
  box-shadow: 0 14px 28px rgba(29, 124, 255, 0.24);
}

.home-entry-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(108, 144, 190, 0.2);
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(18, 39, 67, 0.12);
}

.home-entry-stage.is-animated .home-entry-media {
  animation: none;
}

.home-entry-stage.is-animated .home-entry-copy,
.home-entry-stage.is-animated .home-entry-cta {
  animation: home-entry-copy-in 0.42s ease;
}

.home-entry-media {
  position: relative;
  min-height: 520px;
  background: #ffffff;
  isolation: isolate;
  filter: none;
  mix-blend-mode: normal;
}

.home-entry-media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  box-shadow: none;
}

.home-entry-media[data-fit='contain'] {
  min-height: 0;
  background: transparent;
  display: block;
}

.home-entry-media[data-fit='contain'] .home-entry-media-image {
  height: auto;
  object-fit: contain;
  background: transparent;
}

.home-entry-media-glow {
  display: none;
}

.home-entry-brand-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(15, 34, 58, 0.16);
  backdrop-filter: blur(12px);
}

.home-entry-brand-chip.is-hidden {
  display: none;
}

.home-entry-brand-chip .brand-logo-shell {
  background: transparent;
  box-shadow: none;
  padding: 0;
  min-width: 0;
  height: auto;
}

.home-entry-brand-chip .brand-logo {
  max-width: 110px;
  max-height: 20px;
}

.home-entry-brand-text {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.home-entry-detail {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.home-entry-copy {
  max-width: 60ch;
}

.home-entry-domain {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.home-entry-detail h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.home-entry-copy > p:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.72;
}

.home-entry-cta {
  min-width: 170px;
  width: auto;
  flex-shrink: 0;
  align-self: flex-start;
}

.home-entry-mobile-controls {
  display: none;
}

.home-entry-mobile-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(110, 146, 190, 0.32);
  background: #ffffff;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.home-entry-mobile-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.home-entry-mobile-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(110, 146, 190, 0.42);
  cursor: pointer;
}

.home-entry-mobile-dot.is-active {
  width: 24px;
  background: linear-gradient(90deg, #1d7cff, #25b5ff);
}

@keyframes home-entry-media-in {
  from {
    opacity: 0.72;
    transform: scale(1.015);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes home-entry-copy-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.trust-band {
  padding: 72px 0 22px;
  text-align: center;
}

.trust-band h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  font-weight: 500;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.trust-chips span {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(11, 19, 32, 0.76);
}

.outcomes-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  gap: 28px;
  align-items: stretch;
  background:
    radial-gradient(circle at 28% 100%, rgba(22, 123, 255, 0.1), transparent 24%),
    linear-gradient(135deg, #ffffff, #f5f9fe 40%, #edf5fc 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 64px;
}

.outcome-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.outcome-tab {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.outcome-tab span {
  display: grid;
  gap: 8px;
  padding-left: 24px;
  border-left: 4px solid rgba(16, 32, 51, 0.12);
}

.outcome-tab strong {
  font-size: 22px;
  font-weight: 600;
}

.outcome-tab.is-active span {
  color: var(--text);
  border-color: var(--blue);
}

.outcome-visual {
  position: relative;
  min-height: 520px;
}

.outcome-panel {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-columns: minmax(0, 1fr);
  align-content: space-between;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(247, 251, 255, 0.98), rgba(238, 246, 254, 0.96)),
    radial-gradient(circle at 70% 40%, rgba(41, 177, 255, 0.12), transparent 24%);
  padding: 32px;
  border: 1px solid rgba(88, 153, 232, 0.18);
}

.outcome-panel.is-active {
  display: grid;
}

.outcome-panel .visual {
  height: 320px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 40% 48%, rgba(73, 211, 255, 0.5), transparent 12%),
    linear-gradient(125deg, rgba(239, 246, 253, 0.9), rgba(223, 236, 248, 0.92)),
    linear-gradient(45deg, #f4f8fd, #edf4fb 56%, #e6eff8);
  position: relative;
  overflow: hidden;
}

.outcome-panel .visual::before,
.outcome-panel .visual::after {
  content: '';
  position: absolute;
  inset: auto auto 34% 8%;
  width: 86%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(82, 179, 255, 0.95), transparent);
  transform: rotate(-9deg);
  box-shadow: 0 0 18px rgba(82, 179, 255, 0.9);
}

.outcome-panel .visual::after {
  inset: auto auto 46% 14%;
  transform: rotate(7deg);
}

.panel-copy h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 600;
}

.panel-copy p {
  max-width: 44ch;
}

.metric-card {
  text-align: center;
  padding: 16px;
}

.metric-card strong {
  display: block;
  font-size: 62px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.metric-card span {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
}

.news-card {
  display: grid;
  gap: 16px;
}

.news-visual {
  height: 220px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(238, 245, 252, 0.96)),
    radial-gradient(circle at 25% 30%, rgba(255, 47, 175, 0.12), transparent 22%),
    radial-gradient(circle at 72% 78%, rgba(29, 124, 255, 0.14), transparent 28%);
  overflow: hidden;
  position: relative;
}

.news-visual.alt-2 {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 130, 32, 0.18), transparent 22%),
    radial-gradient(circle at 66% 56%, rgba(29, 124, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fbff, #eef5fc 68%, #e8f1fb);
}

.news-visual.alt-3 {
  background:
    radial-gradient(circle at 78% 20%, rgba(92, 182, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #f7fbff, #eef6fd 54%, #eaf2fb);
}

.news-visual.alt-4 {
  background:
    radial-gradient(circle at 34% 44%, rgba(33, 213, 255, 0.14), transparent 26%),
    radial-gradient(circle at 66% 54%, rgba(255, 94, 58, 0.12), transparent 18%),
    linear-gradient(135deg, #f8fbff, #edf5fc 70%);
}

.news-card small,
.search-result span,
.search-empty,
.form-notice,
.footer-brand p,
.footer-columns a,
.footer-nav-button,
.breadcrumb {
  color: var(--text-soft);
}

.footer-cta-shell .button-outline-light,
.hero-shell .button-outline-light {
  color: #f3f7fb;
}

.footer-cta-shell .button-outline-light {
  color: var(--text);
  border-color: rgba(16, 32, 51, 0.14);
}

.news-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}

.news-card p {
  margin: 0;
}

.project-card {
  min-height: 320px;
}

.project-meta {
  margin: 14px 0 0;
  color: rgba(187, 214, 243, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.button-disabled,
.button-disabled:hover,
.button-disabled:focus-visible {
  background: rgba(237, 244, 251, 0.96);
  color: var(--text-dim);
  border-color: rgba(112, 145, 184, 0.18);
  transform: none;
  cursor: default;
  pointer-events: none;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.status-panel {
  max-width: 860px;
}

.category-section {
  scroll-margin-top: 136px;
}

.category-section-head,
.category-section-intro,
.category-project-grid,
.home-about-grid,
.home-contact-grid {
  margin-top: 24px;
}

#contact {
  scroll-margin-top: 136px;
}

.page-hero,
.page-intro {
  padding: 60px 0 18px;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.hero-aside ul,
.card ul,
.feature-card ul,
.summary-card ul,
.hub-card ul,
.resource-card ul,
.callout-card ul,
.contact-card ul,
.timeline-step ul,
.list-clean {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.footer-cta {
  padding: 64px 0 0;
}

.footer-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff, #f4f9fe 56%, #edf5fc);
  border: 1px solid var(--line);
}

.footer-cta-shell h2 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  font-weight: 600;
}

.site-footer {
  padding: 42px 0 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(233, 241, 249, 0.62));
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  min-height: 68px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.footer-brand-symbol {
  display: block;
  width: 48px;
  height: auto;
  max-width: 100%;
  flex: 0 0 auto;
}

.footer-copyright {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  white-space: nowrap;
}

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

.footer-columns h3 {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-columns a {
  display: block;
  margin: 0 0 10px;
}

.footer-nav-button {
  display: block;
  margin: 0 0 10px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 25, 40, 0.18);
}

.search-dialog {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 88px auto 0;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f5f9fe);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.search-head h2 {
  margin: 12px 0 0;
  font-size: 34px;
  font-weight: 600;
}

.icon-close-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(112, 153, 210, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.icon-close-button:hover {
  transform: rotate(90deg);
  border-color: rgba(91, 171, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.search-input {
  width: 100%;
  height: 58px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  padding: 0 18px;
  margin: 18px 0;
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.search-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

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

.field label {
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 14px 16px;
}

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

.form-grid {
  display: grid;
  gap: 16px;
}

.breadcrumb-wrap {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  .header-shell {
    min-height: 88px;
  }

  .desktop-nav {
    display: none;
  }

  .header-tools {
    margin-left: auto;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .access-grid,
  .news-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell,
  .outcomes-shell {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-shell {
    padding: 0 36px 42px;
  }

  .hero-side {
    justify-content: flex-end;
    padding-top: 0;
  }

  .hero-chat-widget {
    margin-top: 8px;
  }

  .home-entry-media {
    min-height: 460px;
  }

  .home-entry-detail {
    padding: 26px;
  }

  .home-entry-detail h3 {
    font-size: clamp(2.2rem, 5vw, 3.3rem);
  }

  .platform-tabs-shell {
    padding: 0;
  }

  .platform-showcase-intro h2,
  .platform-tabs-intro h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
  }

  .platform-showcase-media,
  .platform-tab-media {
    min-height: 560px;
  }

  .platform-tab-screen {
    min-height: 400px;
  }

  .vacation-art-card-surface {
    min-height: 500px;
  }

  .vacation-art-card-preview .vacation-art-card-surface {
    min-height: 430px;
  }
}

@media (max-width: 1024px) {
  .utility-links {
    gap: 16px;
  }

  .grid-3,
  .card-grid,
  .metric-row,
  .metric-row-wide,
  .timeline,
  .split-layout,
  .two-column,
  .page-hero-shell,
  .footer-shell,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .home-entry-detail {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-entry-showcase.is-mobile-carousel .home-entry-tabs {
    display: none;
  }

  .home-entry-showcase.is-mobile-carousel .home-entry-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding: 0 4px;
  }

  .platform-showcase-stage,
  .platform-tabs-stage {
    grid-template-columns: 1fr;
  }

  .platform-showcase-media,
  .platform-tabs-media-column {
    order: -1;
  }

  .platform-tabs-panel {
    order: 1;
  }

  .platform-tabs-media-column {
    order: 2;
  }

  .platform-showcase-media,
  .platform-tab-media {
    min-height: 520px;
  }

  .platform-tabs-list {
    justify-content: flex-start;
    width: 100%;
  }

  .platform-poster-meta {
    flex-direction: column;
  }

  .platform-poster-meta .platform-tab-actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
  }

  .platform-poster-copy {
    padding: 0;
  }

  .platform-tab-detail > p:last-of-type {
    max-width: none;
  }

  .platform-tab-media {
    padding: 28px 24px 74px;
  }

  .platform-tab-screen {
    min-height: 360px;
    border-width: 12px;
  }

  .platform-tab-screen::after {
    bottom: -64px;
    width: 168px;
    height: 78px;
  }

  .platform-tab-chip-cloud {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    inset: auto;
  }

  .platform-tab-chip-cloud span {
    position: static;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .vacation-art-stage {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
  }

  .vacation-art-stage-track {
    grid-template-columns: 1fr;
  }

  .vacation-art-card-preview {
    display: none;
  }

  .vacation-art-card-surface {
    min-height: 440px;
  }

  .vacation-art-detail {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .utility-bar {
    display: none;
  }

  .header-shell {
    min-height: 78px;
  }

  .header-language-group-desktop {
    display: none;
  }

  .mobile-panel {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .mobile-panel-language {
    display: grid;
  }

  .mobile-toggle {
    width: 46px;
    height: 46px;
  }

  .hero-frame {
    min-height: 560px;
    border-radius: 28px;
  }

  .hero-full-preview .hero-frame,
  .hero-full-preview .hero-shell {
    min-height: 640px;
  }

  .hero-shell {
    min-height: 560px;
    padding: 0 22px 32px;
    align-items: center;
  }

  .hero-copy {
    min-height: 332px;
  }

  .hero-beam-spark {
    left: 22%;
    top: 58%;
    width: 56%;
  }

  .hero-copy h1,
  .page-hero h1,
  .page-intro h1,
  .section-head h2 {
    font-size: 1.86rem;
  }

  .hero-shell .hero-copy h1 {
    font-size: 1.62rem;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
    line-height: 1.16;
  }

  .hero-title-rotator {
    top: 56px;
  }

  .hero-lead {
    margin-bottom: 2px;
    font-size: 1.02rem;
    line-height: 1.65;
    letter-spacing: 0.06em;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-chat-panel {
    position: fixed;
    right: 14px;
    bottom: 76px;
    width: min(300px, calc(100vw - 28px));
  }

  .hero-chat-widget {
    right: 14px;
    bottom: 14px;
    gap: 6px;
  }

  .hero-chat-dismiss {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .hero-chat-prompt {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-chat-launcher {
    width: 46px;
    height: 46px;
  }

  .access-grid,
  .news-grid,
  .metric-row-wide {
    grid-template-columns: 1fr;
  }

  .outcomes-shell {
    padding: 32px 24px;
  }

  .metric-card strong {
    font-size: 48px;
  }

  .footer-cta-shell,
  .footer-cta-actions,
  .hero-actions,
  .card-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .button-light,
  .button-outline-light,
  .button-outline-dark {
    width: 100%;
  }

  .cookie-consent {
    width: min(100%, calc(100% - 20px));
    bottom: 10px;
    padding: 14px;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-action {
    width: 100%;
    min-width: 0;
  }

  .home-entry-tabs {
    --home-entry-tab-overlap: -2px;
    padding: 8px;
    gap: 8px;
  }

  .home-entry-tab {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .home-entry-stage {
    border-radius: 26px;
  }

  .home-entry-media {
    min-height: 260px;
  }

  .home-entry-brand-chip {
    top: 16px;
    left: 16px;
    min-height: 38px;
    padding: 7px 12px;
  }

  .home-entry-detail {
    padding: 22px 20px 20px;
    gap: 18px;
  }

  .home-entry-detail h3 {
    font-size: 1.45rem;
  }

  .home-entry-copy > p:last-child {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .home-entry-cta {
    width: 100%;
  }

  .home-entry-showcase.is-mobile-carousel .home-entry-mobile-controls {
    margin-top: 12px;
  }

  .home-entry-mobile-arrow {
    width: 38px;
    height: 38px;
  }

  .platform-tabs-shell {
    padding: 0;
  }

  .platform-showcase-intro h2,
  .platform-tabs-intro h2 {
    font-size: 2.4rem;
  }

  .platform-showcase-stage,
  .platform-tabs-stage {
    gap: 20px;
  }

  .platform-showcase-copy > p:last-of-type {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .platform-showcase-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .platform-tab {
    min-height: 30px;
    padding: 0 2px 12px;
  }

  .platform-tab-copy strong {
    font-size: 0.92rem;
  }

  .platform-tab-detail h3 {
    font-size: 2rem;
  }

  .platform-tab-detail > p:last-of-type {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .platform-tab-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .platform-showcase-media,
  .platform-tab-media {
    min-height: 420px;
    border-radius: 22px;
  }

  .platform-poster-link {
    border-radius: 24px;
  }

  .platform-poster-meta .platform-tab-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .platform-poster-copy {
    padding: 0;
    border-radius: 0;
  }

  .platform-tab-detail {
    padding: 24px 22px;
    border-radius: 26px;
  }

  .platform-tab-detail.platform-poster-copy {
    padding: 0;
    border-radius: 0;
  }

  .platform-tab-orbit {
    width: 88px;
    height: 88px;
    margin-bottom: 8px;
  }

  .platform-tab-orbit-ring {
    inset: 12px;
    border-width: 3px;
  }

  .platform-tab-orbit-core {
    inset: 31px;
    border-width: 3px;
  }

  .platform-tab-orbit-dot {
    width: 14px;
    height: 14px;
  }

  .platform-tab-orbit-dot.dot-a {
    left: 37px;
  }

  .platform-tab-orbit-dot.dot-b {
    top: 45px;
  }

  .platform-tab-media {
    padding: 22px 16px 58px;
  }

  .platform-tab-media-kicker {
    margin-bottom: 18px;
    font-size: 0.82rem;
  }

  .platform-tab-screen {
    min-height: 250px;
    border-width: 10px;
    border-radius: 18px 18px 12px 12px;
  }

  .platform-tab-screen::after {
    bottom: -52px;
    width: 132px;
    height: 62px;
  }

  .platform-tab-chip-cloud span {
    min-height: 38px;
    font-size: 0.84rem;
  }

  .vacation-art-head {
    margin-bottom: 26px;
  }

  .vacation-art-showcase {
    gap: 18px;
  }

  .vacation-art-stage {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .vacation-art-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .vacation-art-card-surface {
    min-height: 280px;
    border-radius: 26px;
  }

  .vacation-art-card-badge {
    top: 16px;
    left: 16px;
  }

  .vacation-art-card-placeholder-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .vacation-art-detail {
    width: 100%;
    gap: 16px;
  }

  .vacation-art-copy h3 {
    font-size: 1.42rem;
  }

  .vacation-art-copy > p:last-child {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .vacation-art-cta {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .header-shell {
    min-height: 74px;
    gap: 10px;
  }

  .brand-image {
    height: 28px;
  }

  .mobile-panel {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .mobile-link {
    min-height: 48px;
    font-size: 15px;
  }

  .locale-chip {
    min-width: 62px;
    padding: 0 10px;
    font-size: 12px;
  }

  .home-entry-showcase.is-mobile-carousel .home-entry-mobile-controls {
    gap: 10px;
    padding: 0;
  }

  .footer-brand-lockup {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-copyright {
    white-space: normal;
    word-break: break-word;
  }
}

@media (max-width: 360px) {
  .header-shell {
    min-height: 72px;
    gap: 8px;
  }

  .brand-image {
    height: 26px;
  }

  .mobile-panel {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mobile-panel-head strong {
    font-size: 15px;
  }
}

@media (max-width: 320px) {
  .container {
    width: min(var(--max-width), calc(100% - 16px));
  }

  .mobile-panel {
    padding-right: 12px;
    padding-left: 12px;
  }

  .mobile-link {
    min-height: 46px;
    font-size: 14px;
  }
}

.section-entry-grid {
  padding-top: 68px;
}

.entry-grid-head {
  margin: 0 auto 34px;
  max-width: 680px;
  text-align: center;
}

.entry-grid-head h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
}

.category-section {
  scroll-margin-top: 140px;
}

.section-shell,
.about-grid,
.contact-panel-grid {
  display: grid;
  gap: 24px;
}

.section-shell-platforms,
.section-shell-saas,
.contact-panel-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.platform-tabs-shell {
  display: grid;
  gap: 18px;
  padding: 0;
  color: var(--text);
}

.section-platform-showcase {
  padding-top: 20px;
  padding-bottom: 18px;
}

.platform-showcase-shell {
  display: grid;
  gap: 18px;
  color: var(--text);
}

.platform-showcase-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.platform-showcase-intro h2 {
  margin: 12px 0;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.platform-showcase-intro .eyebrow {
  margin-inline: auto;
}

.platform-showcase-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  gap: 10px;
  align-items: start;
}

.platform-showcase-stage.is-reversed .platform-showcase-copy {
  order: 2;
}

.platform-showcase-stage.is-reversed .platform-showcase-media {
  order: 1;
}

.platform-showcase-copy {
  display: grid;
  gap: 12px;
  align-self: center;
}

.platform-showcase-domain {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.platform-showcase-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.platform-showcase-copy > p:last-of-type {
  margin: 0;
  max-width: 30ch;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

.platform-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.platform-showcase-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(132, 169, 220, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  isolation: isolate;
}

.platform-showcase-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 23, 0.02), rgba(5, 12, 23, 0.08)),
    radial-gradient(circle at 24% 24%, rgba(34, 153, 255, 0.1), transparent 24%);
}

.platform-showcase-brand {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.platform-showcase-brand .brand-logo-shell {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(9, 20, 39, 0.18);
}

.platform-tabs-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.platform-tabs-intro h2 {
  margin: 12px 0 12px;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.platform-tabs-intro .eyebrow {
  margin-inline: auto;
}

.platform-tabs-list {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 0 0 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.platform-tabs-list::-webkit-scrollbar {
  display: none;
}

.platform-tabs-list::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(19, 25, 38, 0.1);
}

.platform-tab {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 40px;
  padding: 0 4px 18px;
  border: 0;
  background: transparent;
  color: rgba(17, 22, 31, 0.4);
  text-align: center;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.platform-tab::after {
  content: '';
  position: absolute;
  right: 4px;
  bottom: -1px;
  left: 4px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9b63, #ff4d57);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.platform-tab-copy {
  display: grid;
  gap: 8px;
}

.platform-tab-copy strong {
  font-size: clamp(0.92rem, 1.1vw, 1.35rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.platform-tab-copy small {
  display: none;
}

.platform-tab.is-active {
  color: var(--text);
}

.platform-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.platform-tab:hover,
.platform-tab:focus-visible {
  color: rgba(17, 22, 31, 0.74);
  outline: none;
}

.platform-tabs-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.platform-tabs-panel {
  display: block;
}

.platform-tabs-media-column {
  display: grid;
}

.platform-tab-detail {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #7c137a 0%, #b22f78 48%, #ff7468 100%);
  color: var(--white);
  box-shadow: 0 28px 64px rgba(159, 43, 92, 0.2);
}

.platform-tab-detail.is-animated h3,
.platform-tab-detail.is-animated p,
.platform-tab-detail.is-animated .platform-tab-actions,
.platform-tab-detail.is-animated .platform-tab-orbit {
  animation: home-entry-copy-in 0.38s ease;
}

.platform-tab-orbit {
  position: relative;
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
}

.platform-tab-orbit-ring,
.platform-tab-orbit-core,
.platform-tab-orbit-dot {
  position: absolute;
  border-radius: 50%;
}

.platform-tab-orbit-ring {
  inset: 14px;
  border: 4px solid rgba(255, 248, 243, 0.95);
}

.platform-tab-orbit-core {
  inset: 39px;
  border: 4px solid rgba(255, 248, 243, 0.95);
}

.platform-tab-orbit-dot {
  width: 18px;
  height: 18px;
  background: #fff6ef;
  box-shadow: 0 0 0 5px rgba(255, 246, 239, 0.14);
}

.platform-tab-orbit-dot.dot-a {
  top: 2px;
  left: 47px;
}

.platform-tab-orbit-dot.dot-b {
  top: 57px;
  right: 2px;
}

.platform-tab-orbit-dot.dot-c {
  bottom: 8px;
  left: 10px;
}

.platform-tab-domain {
  margin: 0;
  color: rgba(255, 244, 237, 0.72);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.platform-tab-detail h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.platform-tab-detail > p:last-of-type {
  margin: 0;
  max-width: 17ch;
  color: rgba(255, 246, 241, 0.94);
  font-size: 1rem;
  line-height: 1.78;
}

.platform-tab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
}

.platform-tab-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  padding: 34px 36px 86px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 84%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #0b0d12 0%, #030405 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 32px 70px rgba(10, 14, 18, 0.18);
  isolation: isolate;
}

.platform-tab-media::before {
  content: '';
  position: absolute;
  inset: auto auto -18% -12%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 55%, transparent 72%);
  opacity: 0.55;
  filter: blur(8px);
}

.platform-tab-media-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.platform-tab-screen {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  min-height: 470px;
  margin: 0 auto;
  border-radius: 22px 22px 14px 14px;
  border: 14px solid #efefef;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.platform-tab-screen::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(21, 26, 32, 0.72);
  transform: translateX(-50%);
}

.platform-tab-screen::after {
  content: '';
  position: absolute;
  right: 50%;
  bottom: -78px;
  width: 210px;
  height: 92px;
  background:
    linear-gradient(180deg, #f8f8f8 0%, #d1d1d1 100%);
  clip-path: polygon(35% 0, 65% 0, 78% 100%, 22% 100%);
  transform: translateX(50%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.platform-tab-chip-cloud {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.platform-tab-chip-cloud span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d61f35, #f84f55);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(160, 11, 29, 0.26);
}

.platform-tab-chip-cloud span:nth-child(1) {
  top: 138px;
  left: 78px;
}

.platform-tab-chip-cloud span:nth-child(2) {
  top: 220px;
  right: 82px;
}

.platform-tab-chip-cloud span:nth-child(3) {
  bottom: 162px;
  left: 124px;
}

.platform-tab-chip-cloud span:nth-child(4) {
  right: 116px;
  bottom: 106px;
}

.platform-tab-chip-cloud span:nth-child(5) {
  top: 96px;
  right: 176px;
}

.section-platforms {
  padding-top: 24px;
  padding-bottom: 44px;
}

.platform-poster-shell {
  gap: 26px;
}

.platform-poster-stage {
  display: grid;
  gap: 0;
}

.platform-poster-link {
  display: block;
  width: min(100%, 1120px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: #07090d;
  box-shadow: 0 28px 64px rgba(8, 12, 18, 0.18);
}

.platform-poster-shell .platform-tab-actions,
.platform-poster-shell .platform-showcase-actions {
  display: none !important;
}

.platform-poster-image {
  display: block;
  width: 100%;
  height: auto;
}

.section-digital-assets .section-head {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-digital-assets .section-head .eyebrow {
  margin-inline: auto;
}

.infra-note-callout {
  margin-top: auto;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(75, 120, 168, 0.2);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.92), rgba(231, 240, 250, 0.9));
}

.infra-note-callout p {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
}

.section-shell-education {
  align-items: start;
}

.section-copy {
  max-width: 540px;
}

.section-copy h2,
.about-lead h2,
.art-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

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

.platform-card,
.saas-feature-card,
.saas-side-card,
.infra-module-card,
.infra-status-panel,
.about-summary-card,
.compact-project,
.art-feature-card,
.art-secondary-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.platform-card,
.saas-feature-card,
.saas-side-card,
.infra-module-card,
.infra-status-panel,
.about-summary-card,
.compact-project,
.art-secondary-card {
  padding: 28px;
}

.platform-card-primary {
  background:
    radial-gradient(circle at 76% 20%, rgba(53, 166, 255, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.98));
}

.platform-card-secondary {
  background:
    radial-gradient(circle at 26% 22%, rgba(37, 181, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.98));
}

.platform-card-header,
.saas-feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(88, 141, 201, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 28px;
  height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(19, 42, 71, 0.08);
}

.brand-logo {
  display: block;
  max-width: 84px;
  max-height: 18px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.platform-domain {
  color: var(--text-dim);
  font-size: 13px;
}

.platform-card h3,
.compact-project h3,
.saas-feature-card h3,
.saas-side-card h3,
.infra-module-card h3,
.infra-status-panel h3,
.art-secondary-card h3,
.about-summary-card h3,
.contact-panel-grid h3 {
  margin: 16px 0 12px;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 600;
}

.platform-visual,
.saas-visual,
.art-feature-media,
.art-secondary-media,
.compact-project-media {
  overflow: hidden;
  border-radius: 22px;
}

.platform-visual,
.saas-visual {
  min-height: 220px;
  margin-bottom: 18px;
}

.featured-story-card {
  position: relative;
  min-height: 400px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.featured-story-media {
  position: absolute;
  inset: 0;
}

.featured-story-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}

.featured-story-slide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.5s ease;
}

.featured-story-slide.is-active {
  opacity: 1;
}

.featured-story-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  padding: 28px;
  max-width: 560px;
  gap: 0;
  color: #f3f7fb;
}

.featured-story-kicker {
  display: inline-flex;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.featured-story-overlay h3 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.featured-story-overlay p:not(.pill):not(.featured-story-kicker) {
  max-width: 28ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.featured-story-overlay .button-outline-light {
  color: #f3f7fb;
  border-color: rgba(255, 255, 255, 0.28);
}

.featured-story-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.featured-story-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.featured-story-dot.is-active {
  width: 30px;
  background: var(--blue-2);
}

.education-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 20px;
}

.section-shell-education .featured-story-overlay {
  max-width: none;
}

.section-shell-education .featured-story-overlay p:not(.pill):not(.featured-story-kicker) {
  max-width: 34ch;
}

.section-shell-education .education-secondary-stack {
  gap: 16px;
}

.section-shell-education .compact-project {
  gap: 14px;
  padding: 24px;
}

.section-shell-education .compact-project-media {
  min-height: 128px;
}

.section-shell-education .compact-project-body > p:first-of-type {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.education-secondary-stack,
.saas-side-column,
.infra-module-group,
.about-summary-grid {
  display: grid;
  gap: 20px;
}

.compact-project {
  display: grid;
  gap: 18px;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
}

.compact-project-media {
  min-height: 150px;
}

.compact-project-body {
  display: grid;
  gap: 0;
}

.section-enterprise-saas {
  background:
    radial-gradient(circle at 70% 100%, rgba(28, 124, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(228, 238, 248, 0.34));
}

.saas-metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1 / -1;
}

.saas-metric-strip span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(91, 171, 255, 0.34);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.saas-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  grid-column: 1 / -1;
}

.saas-feature-card {
  background:
    radial-gradient(circle at 84% 18%, rgba(63, 137, 255, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.98));
}

.saas-side-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
}

.section-digital-assets {
  background:
    radial-gradient(circle at 50% 110%, rgba(14, 96, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(240, 247, 255, 0.3), rgba(240, 247, 255, 0));
}

.infra-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: 22px;
}

.infra-module-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.infra-module-card,
.infra-status-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.98));
  border-color: rgba(75, 120, 168, 0.2);
}

.infra-status-panel {
  display: flex;
  flex-direction: column;
}

.infra-line-art {
  height: 128px;
  border-radius: 20px;
  border: 1px solid rgba(86, 144, 209, 0.18);
  background:
    radial-gradient(circle at 20% 50%, rgba(45, 131, 255, 0.46) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 38%, rgba(45, 131, 255, 0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 56% 72%, rgba(45, 131, 255, 0.38) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(244, 249, 255, 0.95), rgba(231, 240, 249, 0.94));
  position: relative;
  overflow: hidden;
}

.infra-visual {
  min-height: 180px;
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
}

.infra-line-art::before,
.infra-line-art::after {
  content: '';
  position: absolute;
  left: 14%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 162, 255, 0.92), transparent);
}

.infra-line-art::before {
  top: 42%;
  transform: rotate(-12deg);
}

.infra-line-art::after {
  top: 58%;
  transform: rotate(8deg);
}

.status-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.section-vacation-art {
  background:
    radial-gradient(circle at 18% 18%, rgba(227, 181, 114, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 238, 229, 0.4));
}

.vacation-art-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.vacation-art-showcase {
  display: grid;
  gap: 26px;
}

.vacation-art-stage {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 18px;
  align-items: center;
}

.vacation-art-stage-track {
  display: grid;
  grid-template-columns: minmax(96px, 0.16fr) minmax(0, 1fr) minmax(96px, 0.16fr);
  gap: 22px;
  align-items: stretch;
}

.vacation-art-arrow {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(112, 146, 187, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 37, 63, 0.08);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.vacation-art-arrow:hover,
.vacation-art-arrow:focus-visible,
.vacation-art-card-preview:hover,
.vacation-art-card-preview:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(58, 129, 214, 0.34);
  outline: none;
}

.vacation-art-card {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
}

.vacation-art-card-preview {
  cursor: pointer;
}

.vacation-art-card-surface {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(113, 143, 181, 0.2);
  background-color: #dbe8f7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 30px 68px rgba(20, 42, 68, 0.14);
  isolation: isolate;
}

.vacation-art-card-surface.is-contained {
  background-size: contain;
}

.vacation-art-card-preview .vacation-art-card-surface {
  min-height: 500px;
  transform: scale(0.92);
  transform-origin: center;
  opacity: 0.72;
}

.vacation-art-card-active .vacation-art-card-surface {
  animation: vacation-art-card-in 0.4s ease;
}

.vacation-art-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 10, 18, 0.08), rgba(4, 10, 18, 0.24)),
    radial-gradient(circle at 80% 76%, rgba(244, 176, 89, 0.22), transparent 24%);
  opacity: 1;
  transition: opacity 0.24s ease, background 0.24s ease;
}

.vacation-art-card-preview .vacation-art-card-shade {
  background:
    linear-gradient(180deg, rgba(4, 10, 18, 0.14), rgba(4, 10, 18, 0.34)),
    radial-gradient(circle at 80% 76%, rgba(244, 176, 89, 0.18), transparent 24%);
}

.vacation-art-card-active .vacation-art-card-shade {
  opacity: 0;
}

.vacation-art-card-surface.is-placeholder {
  background:
    radial-gradient(circle at 24% 18%, rgba(238, 199, 142, 0.55), transparent 22%),
    radial-gradient(circle at 72% 78%, rgba(154, 109, 66, 0.32), transparent 26%),
    linear-gradient(135deg, rgba(82, 60, 43, 0.94), rgba(178, 134, 94, 0.82) 52%, rgba(246, 229, 203, 0.92));
}

.vacation-art-card-surface.is-placeholder .vacation-art-card-shade {
  background:
    linear-gradient(180deg, rgba(25, 15, 8, 0.08), rgba(25, 15, 8, 0.22)),
    radial-gradient(circle at 82% 24%, rgba(255, 247, 232, 0.28), transparent 18%);
}

.vacation-art-card-active .vacation-art-card-surface.is-placeholder .vacation-art-card-shade {
  opacity: 0.24;
}

.vacation-art-card-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
}

.vacation-art-card-badge .brand-logo-shell,
.vacation-art-card-chip {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(16, 35, 58, 0.14);
}

.vacation-art-card-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.vacation-art-card-placeholder-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: grid;
  gap: 10px;
  color: rgba(255, 248, 239, 0.96);
  text-align: left;
}

.vacation-art-card-placeholder-copy span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vacation-art-card-placeholder-copy strong {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.vacation-art-detail {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 960px);
  margin: 0 auto;
}

.vacation-art-detail.is-animated .vacation-art-copy,
.vacation-art-detail.is-animated .vacation-art-cta {
  animation: home-entry-copy-in 0.38s ease;
}

.vacation-art-copy {
  max-width: 62ch;
}

.vacation-art-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.56rem, 2.1vw, 1.96rem);
  line-height: 1.14;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.vacation-art-copy > p:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.68;
}

.vacation-art-cta {
  min-width: 190px;
  flex-shrink: 0;
}

.vacation-art-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.vacation-art-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(56, 111, 178, 0.18);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.vacation-art-dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, #1d7cff, #25b5ff);
}

@keyframes vacation-art-card-in {
  from {
    opacity: 0.76;
    transform: scale(1.015);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.section-about {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.about-story-card {
  padding: 38px;
  border-radius: 32px;
  border: 1px solid rgba(112, 145, 184, 0.2);
  background:
    radial-gradient(circle at 88% 12%, rgba(43, 148, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.98));
  box-shadow: 0 22px 46px rgba(17, 40, 71, 0.06);
}

.about-story-card h2 {
  margin: 14px 0 18px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.about-story-lead {
  max-width: 36ch;
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1.24rem;
  line-height: 1.58;
}

.about-story-copy {
  display: grid;
  gap: 16px;
  max-width: 76ch;
}

.about-story-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.about-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-principles span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(91, 171, 255, 0.28);
  background: rgba(248, 251, 255, 0.96);
  color: var(--text);
  font-weight: 600;
}

.about-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.about-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-summary-card {
  min-height: 210px;
}

.brand-matrix-wrap {
  margin-top: 28px;
  display: grid;
  gap: 20px;
}

.section-head-brand-matrix {
  max-width: 760px;
}

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

.brand-matrix-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(112, 145, 184, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.brand-matrix-card:hover {
  transform: translateY(-2px);
  border-color: rgba(62, 130, 211, 0.34);
  box-shadow: 0 16px 30px rgba(17, 40, 71, 0.08);
}

.brand-matrix-card.is-placeholder {
  opacity: 0.86;
}

.project-thumb-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(105, 139, 180, 0.18);
  background: rgba(244, 249, 255, 0.84);
}

.project-real-thumb {
  min-height: 164px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.brand-matrix-copy {
  display: grid;
  gap: 8px;
}

.brand-matrix-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-matrix-head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 600;
}

.brand-matrix-copy p {
  margin: 0;
  color: var(--text-soft);
}

.section-contact {
  padding-top: 10px;
}

.about-drawer,
.contact-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.about-drawer.is-open,
.contact-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.about-drawer-backdrop,
.contact-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 25, 40, 0.18);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.about-drawer-panel,
.contact-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100vw);
  height: 100vh;
  padding: 28px 24px 24px;
  background:
    radial-gradient(circle at 10% 8%, rgba(37, 181, 255, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 255, 0.99));
  border-left: 1px solid rgba(105, 154, 218, 0.28);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.34);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-drawer.is-open .about-drawer-backdrop,
.contact-drawer.is-open .contact-drawer-backdrop {
  opacity: 1;
}

.about-drawer.is-open .about-drawer-panel,
.contact-drawer.is-open .contact-drawer-panel {
  transform: translateX(0);
}

.about-drawer-head,
.contact-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.about-drawer-head-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.about-drawer-head h2,
.contact-drawer-head h2 {
  margin: 10px 0 8px;
  font-size: 2.2rem;
  line-height: 1.06;
  font-weight: 600;
}

.about-drawer-head p:last-child,
.contact-drawer-head p:last-child {
  margin: 0;
  color: var(--text-soft);
}

.about-drawer-lead {
  margin: 24px 0 18px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-drawer-copy {
  display: grid;
  gap: 16px;
}

.about-drawer-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.about-drawer-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-drawer-principles span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(91, 171, 255, 0.28);
  background: rgba(248, 251, 255, 0.96);
  color: var(--text);
  font-weight: 600;
}

.about-drawer-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.contact-drawer-meta {
  display: grid;
  gap: 8px;
  margin: 24px 0 22px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(79, 130, 190, 0.3);
  background: rgba(244, 249, 255, 0.96);
  color: var(--text-soft);
}

.contact-drawer-form {
  display: grid;
  gap: 18px;
}

.contact-drawer-form .field label {
  color: rgba(232, 239, 248, 0.84);
  font-size: 14px;
  font-weight: 500;
}

.contact-drawer-form input,
.contact-drawer-form textarea {
  border-color: rgba(82, 128, 186, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.contact-drawer-form input:focus,
.contact-drawer-form textarea:focus,
.search-input:focus {
  outline: none;
  border-color: rgba(91, 171, 255, 0.68);
  box-shadow: 0 0 0 4px rgba(29, 124, 255, 0.12);
}

.contact-card-primary,
.contact-card-form {
  min-height: 100%;
}

.project-meta {
  margin: 16px 0 0;
}

.placeholder-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
}

.placeholder-visual span {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.placeholder-visual::before,
.placeholder-visual::after {
  content: '';
  position: absolute;
  inset: auto auto 50% 10%;
  width: 80%;
  height: 2px;
  opacity: 0.9;
}

.placeholder-visual-compact {
  min-height: 180px;
}

.placeholder-tech {
  background:
    radial-gradient(circle at 24% 24%, rgba(37, 181, 255, 0.38), transparent 18%),
    radial-gradient(circle at 78% 76%, rgba(29, 124, 255, 0.28), transparent 20%),
    linear-gradient(135deg, #06111e, #0b2342 58%, #081521);
}

.placeholder-tech::before,
.placeholder-tech::after {
  background: linear-gradient(90deg, transparent, rgba(77, 180, 255, 0.96), transparent);
  box-shadow: 0 0 18px rgba(77, 180, 255, 0.76);
}

.placeholder-tech::before {
  transform: rotate(-7deg);
}

.placeholder-tech::after {
  transform: rotate(9deg);
}

.placeholder-dashboard {
  background:
    linear-gradient(180deg, rgba(8, 17, 30, 0.96), rgba(7, 15, 25, 0.96)),
    radial-gradient(circle at 84% 16%, rgba(70, 148, 255, 0.18), transparent 20%);
}

.placeholder-dashboard::before,
.placeholder-dashboard::after {
  left: 12%;
  width: 76%;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(53, 133, 255, 0.22) 0 30%, rgba(53, 133, 255, 0.9) 30% 58%, rgba(53, 133, 255, 0.2) 58% 100%);
}

.placeholder-dashboard::before {
  top: 38%;
}

.placeholder-dashboard::after {
  top: 54%;
}

.placeholder-editorial {
  background:
    radial-gradient(circle at 20% 24%, rgba(215, 171, 106, 0.24), transparent 20%),
    radial-gradient(circle at 74% 78%, rgba(97, 143, 173, 0.16), transparent 20%),
    linear-gradient(135deg, #0f1419, #2a211b 58%, #111820);
}

.placeholder-editorial::before,
.placeholder-editorial::after {
  background: linear-gradient(90deg, transparent, rgba(255, 223, 190, 0.52), transparent);
}

.placeholder-editorial::before {
  transform: rotate(-11deg);
}

.placeholder-editorial::after {
  transform: rotate(6deg);
}

.placeholder-soft {
  background:
    radial-gradient(circle at 26% 26%, rgba(150, 160, 176, 0.22), transparent 16%),
    linear-gradient(135deg, #0a131f, #182433 58%, #0d1621);
}

.media-photo {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.media-real::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(7, 13, 22, 0), rgba(7, 13, 22, 0.26));
}

.media-brand-lockup {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}

.media-brand-lockup-compact {
  top: 12px;
  left: 12px;
}

@media (max-width: 1200px) {
  .section-shell-platforms,
  .section-shell-saas,
  .education-story-grid,
  .infra-status-grid,
  .art-editorial-layout,
  .art-feature-card,
  .about-grid,
  .contact-panel-grid {
    grid-template-columns: 1fr;
  }

  .platform-duo-grid,
  .infra-module-group,
  .about-summary-grid,
  .brand-matrix {
    grid-template-columns: 1fr;
  }

  .portal-card {
    min-height: 124px;
    padding: 22px 20px;
  }

  .portal-card-copy h3 {
    font-size: 24px;
  }

  .portal-card-copy p {
    font-size: 15px;
  }

  .portal-card-action {
    width: 52px;
    height: 52px;
  }

  .featured-story-card,
  .featured-story-overlay {
    min-height: 400px;
  }

  .about-story-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .section,
  .hero-shell-wrap {
    padding: 52px 0;
  }

  .section-entry-grid {
    padding-top: 56px;
  }

  .entry-grid-head h2,
  .section-copy h2,
  .about-lead h2,
  .art-copy h2 {
    font-size: 2.6rem;
  }

  .portal-card {
    min-height: 116px;
    padding: 18px;
    gap: 14px;
  }

  .portal-card-copy {
    gap: 8px;
  }

  .portal-card-copy h3 {
    font-size: 20px;
  }

  .portal-card-copy p {
    font-size: 14px;
    max-width: none;
  }

  .portal-card-action {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .brand-chip {
    padding: 8px 10px;
  }

  .brand-logo-shell {
    min-width: 24px;
    height: 24px;
    padding: 4px 6px;
  }

  .brand-logo {
    max-width: 70px;
    max-height: 14px;
  }

  .project-real-thumb {
    min-height: 138px;
  }

  .featured-story-card,
  .featured-story-overlay {
    min-height: 340px;
  }

  .featured-story-overlay {
    padding: 22px 20px;
  }

  .featured-story-overlay h3 {
    font-size: 2rem;
  }

  .about-story-card {
    padding: 24px;
    border-radius: 24px;
  }

  .about-story-lead {
    font-size: 1.08rem;
  }

  .about-principles span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .art-feature-card,
  .platform-card,
  .saas-feature-card,
  .saas-side-card,
  .infra-module-card,
  .infra-status-panel,
  .about-summary-card,
  .compact-project,
  .art-secondary-card {
    padding: 22px;
  }

  .contact-drawer-panel {
    width: 100vw;
    padding: 24px 18px 20px;
  }
}

/* Global lightweight typography override */
body {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Noto Sans SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
  font-weight: 400;
}

body :where(
  p,
  span,
  a,
  li,
  dt,
  dd,
  label,
  small,
  time,
  figcaption,
  button,
  input,
  textarea,
  select
) {
  font-weight: 400 !important;
}

body :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  strong,
  b,
  .button,
  .nav-link,
  .mobile-link,
  .home-entry-tab,
  .locale-chip,
  .hero-chat-prompt,
  .hero-chat-send
) {
  font-weight: 500 !important;
}

body :where(.eyebrow, .pill, .tag) {
  font-weight: 500 !important;
}

/* Header and section title refinement */
.desktop-nav .nav-link,
.desktop-nav .nav-link-button {
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 400 !important;
}

.section-platforms .platform-tabs-intro h2,
.section-entry-grid .entry-grid-head h2,
.section-digital-assets .section-head h2,
.section-vacation-art .section-head h2 {
  font-size: clamp(1.82rem, 2.4vw, 2.18rem) !important;
  line-height: 1.18;
  letter-spacing: 0.02em;
  font-weight: 500 !important;
}

@media (max-width: 768px) {
  .section-platforms .platform-tabs-intro h2,
  .section-entry-grid .entry-grid-head h2,
  .section-digital-assets .section-head h2,
  .section-vacation-art .section-head h2 {
    font-size: 1.56rem !important;
  }
}
