:root {
  --navy: #171a67;
  --navy-soft: #2d3293;
  --navy-ink: #10143f;
  --orange: #ffa11a;
  --orange-deep: #f28d00;
  --orange-soft: #ffd28c;
  --paper: #f8f7f2;
  --mist: #eef2ff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(23, 26, 103, 0.12);
  --text: #11163f;
  --muted: #5f688f;
  --shadow: 0 16px 42px rgba(17, 22, 63, 0.08);
  --shadow-soft: 0 8px 24px rgba(17, 22, 63, 0.06);
  --hero-start: rgba(18, 22, 82, 0.98);
  --hero-end: rgba(43, 50, 146, 0.96);
  --container: 1180px;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

body[data-theme="dark"] {
  --paper: #0b0f18;
  --mist: #121827;
  --surface: rgba(19, 25, 39, 0.82);
  --surface-strong: rgba(20, 27, 43, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f7ff;
  --muted: #b5bbdb;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.18);
  --hero-start: rgba(8, 12, 36, 0.98);
  --hero-end: rgba(33, 39, 112, 0.96);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.18), transparent 24%),
    radial-gradient(circle at left 22%, rgba(23, 26, 103, 0.14), transparent 24%),
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  transition: background 0.25s ease, color 0.25s ease;
  min-height: 100vh;
  overflow-x: hidden;
}

body.intro-lock {
  overflow: hidden;
}

body.guide-lock {
  overflow: hidden;
}

html[data-cp-intro="skip"] .site-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 161, 26, 0.18), transparent 24%),
    radial-gradient(circle at 80% 26%, rgba(45, 50, 147, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(7, 11, 28, 0.96) 0%, rgba(14, 20, 52, 0.98) 100%);
  transition: opacity 0.72s ease, visibility 0.72s ease;
}

.site-intro.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-intro.is-hidden {
  display: none;
}

.journey-guide {
  position: fixed;
  inset: 0;
  z-index: 4700;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.journey-guide.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ai-fab {
  position: fixed;
  inset-inline-start: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 161, 26, 0.24);
  background: rgba(9, 13, 32, 0.9);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(7, 11, 28, 0.28);
  cursor: pointer;
}

.ai-fab-core {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffffff, #ffc25c 38%, var(--orange-deep) 72%, #b86100 100%);
  box-shadow: 0 0 24px rgba(255, 161, 26, 0.4);
  animation: aiPulse 2.4s ease-in-out infinite;
}

.ai-fab-core::before,
.ai-fab-core::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 161, 26, 0.24);
  animation: aiOrbit 6s linear infinite;
}

.ai-fab-core::after {
  inset: -12px;
  border-color: rgba(255, 255, 255, 0.16);
  animation: aiOrbitReverse 8s linear infinite;
}

.ai-fab-label {
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.journey-guide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 24, 0.62);
  backdrop-filter: blur(12px);
}

.journey-guide-shell {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.16), transparent 24%),
    linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
  box-shadow: 0 28px 90px rgba(7, 11, 28, 0.28);
}

.journey-guide-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.journey-guide-head h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  font-weight: 900;
  max-width: 620px;
}

.journey-guide-head p {
  margin: 12px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

.journey-guide-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.journey-ai-shell {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.journey-ai-strip {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.14), transparent 32%),
    linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
  box-shadow: var(--shadow-soft);
}

.journey-ai-visual {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto;
}

.journey-ai-core,
.journey-ai-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.journey-ai-core {
  inset: 18px;
  background: radial-gradient(circle at 32% 30%, #ffffff, #ffc25c 38%, var(--orange-deep) 72%, #b86100 100%);
  box-shadow: 0 0 24px rgba(255, 161, 26, 0.4);
  animation: aiPulse 2.4s ease-in-out infinite;
}

.journey-ai-ring {
  border: 1px solid rgba(45, 50, 147, 0.18);
}

.journey-ai-ring-a {
  animation: aiOrbit 7s linear infinite;
}

.journey-ai-ring-b {
  inset: 8px;
  border-color: rgba(255, 161, 26, 0.24);
  animation: aiOrbitReverse 9s linear infinite;
}

.journey-ai-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.journey-ai-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 700;
}

.journey-input-shell {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.journey-input-label {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 900;
}

.journey-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.journey-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.journey-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 161, 26, 0.28);
}

.journey-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.journey-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  outline: none;
}

.journey-input:focus {
  border-color: rgba(255, 161, 26, 0.28);
}

.journey-input-hint,
.journey-error {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
}

.journey-input-hint {
  color: var(--muted);
}

.journey-error {
  min-height: 22px;
  color: #bb4d28;
}

.journey-activity-line {
  display: inline-grid;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.journey-activity-line span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
}

.journey-activity-line strong {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 900;
}

.journey-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.journey-choice {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 20px;
  text-align: start;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.journey-choice:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 161, 26, 0.28);
}

.journey-choice h3,
.journey-plan h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 900;
}

.journey-choice p,
.journey-plan p,
.journey-point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.84;
  font-weight: 700;
}

.journey-plan {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.journey-plan-copy,
.journey-points {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.journey-points strong {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
}

.journey-point-list {
  display: grid;
  gap: 12px;
}

.journey-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}

.journey-point span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 12px;
  background: rgba(255, 161, 26, 0.14);
  border: 1px solid rgba(255, 161, 26, 0.18);
  color: #6d4f0d;
  font-size: 14px;
  font-weight: 900;
}

body[data-theme="dark"] .journey-point span {
  color: #ffd88d;
}

.journey-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes aiPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 24px rgba(255, 161, 26, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 36px rgba(255, 161, 26, 0.52);
  }
}

@keyframes aiOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes aiOrbitReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.site-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 86%);
  opacity: 0.44;
}

.site-intro-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.55;
  animation: intro-orbit 13s linear infinite;
}

.site-intro-orbit-a {
  width: min(70vw, 760px);
  height: min(70vw, 760px);
}

.site-intro-orbit-b {
  width: min(52vw, 540px);
  height: min(52vw, 540px);
  animation-direction: reverse;
  animation-duration: 10s;
}

.site-intro-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 34px 32px 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  text-align: center;
}

.site-intro-mark {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto 18px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(145deg, var(--navy), var(--navy-soft));
  box-shadow:
    0 24px 50px rgba(23, 26, 103, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: intro-float 3.4s ease-in-out infinite;
}

.site-intro-mark::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 42px;
  border: 1px solid rgba(255, 161, 26, 0.22);
  opacity: 0.7;
}

.site-intro-mark img {
  width: 80px;
  height: 80px;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(255, 161, 26, 0.18));
}

.site-intro-copy strong {
  display: block;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.site-intro-copy strong span {
  color: var(--orange);
}

.site-intro-copy small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-intro-progress {
  margin-top: 22px;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.site-intro-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 161, 26, 0.3), var(--orange), #fff1d3, var(--navy-soft));
  animation: intro-progress 1.45s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

[dir="rtl"] .site-intro-progress span {
  transform-origin: right center;
}

[dir="ltr"] .site-intro-progress span {
  transform-origin: left center;
}

@keyframes intro-progress {
  from {
    transform: scaleX(0);
    opacity: 0.5;
  }

  65% {
    transform: scaleX(0.82);
    opacity: 1;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes intro-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes intro-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 88%);
  opacity: 0.18;
}

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

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

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

.seo-fallback {
  padding: 52px 0 24px;
}

.seo-fallback-block {
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.seo-fallback h1 {
  margin: 0 0 14px;
  max-width: 860px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  font-weight: 900;
}

.seo-fallback h2 {
  margin: 24px 0 10px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
}

.seo-fallback p,
.seo-fallback li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

.seo-fallback ul {
  margin: 0;
  padding-inline-start: 20px;
  display: grid;
  gap: 10px;
}

.seo-fallback-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.seo-fallback-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(23, 26, 103, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(248, 247, 242, 0.92);
  border-bottom: 1px solid var(--line);
}

body[data-theme="dark"] .site-header {
  background: rgba(11, 15, 24, 0.92);
}

.header-bar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(145deg, var(--navy), var(--navy-soft));
  box-shadow: 0 18px 38px rgba(23, 26, 103, 0.22);
}

.brand-mark::before {
  content: "C";
  position: absolute;
  inset: 3px auto auto 10px;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
}

.brand-mark::after {
  content: "⚡";
  position: absolute;
  inset: auto 8px 2px auto;
  font-size: 16px;
  color: var(--orange);
  filter: drop-shadow(0 4px 10px rgba(255, 161, 26, 0.36));
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.brand-copy strong span {
  color: var(--orange);
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  position: relative;
  padding: 8px 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px 0;
  width: 0;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--navy-soft));
  transition: width 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.toggle-btn,
.menu-btn,
.button,
.filter-btn {
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.toggle-btn,
.menu-btn {
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.button:hover,
.toggle-btn:hover,
.menu-btn:hover,
.filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 161, 26, 0.34);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--navy-ink);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 161, 26, 0.16);
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
}

.desktop-cta {
  white-space: nowrap;
}

.menu-btn {
  display: none;
  width: 46px;
  padding: 0;
  justify-content: center;
}

.mobile-panel {
  display: none;
  padding-bottom: 16px;
}

.mobile-panel.open {
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 800;
}

.page-shell {
  padding: 48px 0 18px;
}

.hero-home,
.hero-simple,
.hero-minimal,
.content-shell,
.cta-shell,
.contact-shell,
.footer-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-home {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  overflow: hidden;
}

.hero-corporate {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 320px;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 5vw, 60px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 760px;
}

.hero-cover {
  margin: 0;
}

.hero-cover-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #11183f, #283a9f);
  box-shadow: var(--shadow-soft);
}

.hero-cover-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: coverPan 18s ease-in-out infinite alternate;
}

.hero-cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 24, 0.05), rgba(11, 15, 24, 0.32));
}

.hero-cover-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.7;
  animation: glowFloat 12s ease-in-out infinite;
}

.hero-cover-glow-a {
  width: 180px;
  height: 180px;
  top: 34px;
  left: 28px;
  background: rgba(255, 161, 26, 0.24);
}

.hero-cover-glow-b {
  width: 240px;
  height: 240px;
  right: 18px;
  bottom: 12px;
  background: rgba(100, 135, 255, 0.18);
  animation-delay: -4s;
}

.hero-cover-card {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 240px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 16, 36, 0.44);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 36px rgba(6, 9, 23, 0.22);
  animation: floatCard 10s ease-in-out infinite;
}

.hero-cover-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.hero-cover-card strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.hero-cover-card-top {
  top: 28px;
  right: 24px;
}

.hero-cover-card-bottom {
  right: 36px;
  bottom: 26px;
  animation-delay: -3.5s;
}

.hero-minimal {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 62px);
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.14), transparent 24%),
    linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
}

.hero-minimal::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--navy-soft));
  opacity: 0.92;
}

.hero-home::before {
  content: "";
  position: absolute;
  display: none;
}

.hero-simple {
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
}

.hero-content,
.hero-simple-content {
  padding: clamp(28px, 5vw, 56px);
}

.hero-simple-content {
  max-width: 860px;
}

.hero-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 161, 26, 0.12);
  border: 1px solid rgba(255, 161, 26, 0.18);
  font-size: 13px;
  font-weight: 900;
  color: #6d4f0d;
}

body[data-theme="dark"] .hero-kicker,
body[data-theme="dark"] .section-label {
  color: #ffd88d;
}

.hero-title {
  margin: 20px 0 0;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -1px;
  max-width: 760px;
}

.hero-title .accent {
  display: block;
  color: var(--orange);
}

.hero-simple .hero-title {
  max-width: 900px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.hero-simple .hero-title .accent {
  display: inline;
  color: var(--navy-soft);
}

body[data-theme="dark"] .hero-simple .hero-title .accent {
  color: #95afff;
}

.hero-title-compact {
  max-width: 920px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-title-corporate {
  max-width: 820px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero-text {
  margin: 20px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.88;
  font-weight: 700;
}

.hero-text-compact {
  max-width: 760px;
}

.hero-text-corporate {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.95;
}

.hero-simple .hero-text {
  max-width: 760px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.95;
}

.hero-simple .hero-actions {
  margin-top: 20px;
}

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

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.intent-shell {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

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

.intent-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  font-weight: 900;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.route-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 161, 26, 0.28);
}

.route-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.route-card .inline-link {
  margin-top: auto;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.metric-pod,
.proof-card,
.card,
.route-card,
.impact-card,
.contact-card,
.brief-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

body[data-theme="dark"] .metric-pod,
body[data-theme="dark"] .proof-card,
body[data-theme="dark"] .card,
body[data-theme="dark"] .route-card,
body[data-theme="dark"] .impact-card,
body[data-theme="dark"] .contact-card,
body[data-theme="dark"] .brief-card {
  background: rgba(15, 20, 54, 0.96);
}

.metric-pod:hover,
.proof-card:hover,
.card:hover,
.route-card:hover,
.impact-card:hover,
.contact-card:hover,
.brief-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 161, 26, 0.28);
}

.metric-pod {
  padding: 20px;
}

.metric-pod strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.metric-pod span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.18), transparent 22%),
    linear-gradient(180deg, var(--hero-start), var(--hero-end));
  color: #ffffff;
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage-title {
  margin: 18px 0 0;
  font-size: 32px;
  line-height: 1.14;
  font-weight: 900;
  max-width: 420px;
}

.stage-text {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 700;
  max-width: 460px;
}

.proof-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.proof-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.proof-card h3,
.card h3,
.impact-card h3,
.contact-card h3,
.brief-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 900;
}

.proof-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.motion-strip-wrap {
  padding: 8px 0 0;
}

.section-tight {
  padding-top: 12px;
}

.motion-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

body[data-theme="dark"] .motion-strip {
  background: rgba(255, 255, 255, 0.03);
}

.motion-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding: 14px 0;
  animation: drift 28s linear infinite;
}

.motion-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
}

.section {
  padding: 82px 0;
}

.section-head {
  display: grid;
  gap: 10px;
  align-items: start;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.3;
  font-weight: 900;
}

.section-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 700;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stat-item {
  padding: 22px 20px;
  border-inline-end: 1px solid var(--line);
}

.stat-item:last-child {
  border-inline-end: 0;
}

.stat-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-soft);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

body[data-theme="dark"] .stat-item strong {
  color: #8aa3ff;
}

.stat-item span {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.client-card {
  display: grid;
  gap: 10px;
  min-height: 88px;
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.client-card-media {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1.5 / 1;
  border: 1px solid var(--line);
}

.client-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.client-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 161, 26, 0.24);
}

.client-card strong {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.client-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.screen-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 13, 34, 0.96) 0%, rgba(12, 17, 40, 0.88) 100%);
  box-shadow: 0 24px 44px rgba(7, 11, 28, 0.24);
  isolation: isolate;
}

.screen-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(10px);
}

.screen-dots {
  display: inline-flex;
  gap: 6px;
}

.screen-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.screen-dots span:first-child {
  background: rgba(255, 95, 86, 0.9);
}

.screen-dots span:nth-child(2) {
  background: rgba(255, 189, 46, 0.9);
}

.screen-dots span:nth-child(3) {
  background: rgba(39, 201, 63, 0.9);
}

.screen-url,
.screen-status {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.screen-url {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: ltr;
  text-align: center;
}

.screen-status {
  justify-self: end;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-body {
  flex: 1 1 auto;
  height: calc(100% - 44px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(246, 248, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.screen-body img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.showcase-slider {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.12), transparent 26%),
    linear-gradient(180deg, var(--surface-strong) 0%, rgba(255, 255, 255, 0.66) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

body[data-theme="dark"] .showcase-slider {
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(15, 20, 54, 0.98) 0%, rgba(11, 15, 24, 0.94) 100%);
}

.showcase-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(23, 26, 103, 0.02), transparent 22%, transparent 78%, rgba(255, 161, 26, 0.04));
}

.showcase-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.showcase-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.showcase-intro strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.showcase-controls {
  display: flex;
  gap: 10px;
}

.showcase-arrow {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

body[data-theme="dark"] .showcase-arrow {
  background: rgba(255, 255, 255, 0.06);
}

.showcase-arrow:hover {
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  border-color: transparent;
}

.showcase-arrow:focus-visible,
.showcase-dot:focus-visible,
.showcase-slider:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 161, 26, 0.22);
}

.showcase-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

body[data-theme="dark"] .showcase-viewport {
  background: rgba(8, 12, 36, 0.52);
}

.showcase-track {
  display: flex;
  width: 100%;
  direction: ltr;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.showcase-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.showcase-media {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 0;
  background: linear-gradient(145deg, var(--navy-ink), var(--navy-soft));
}

.showcase-media-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.08);
  filter: blur(24px) saturate(1.08);
  opacity: 0.22;
}

.showcase-media-glow {
  position: absolute;
  inset: auto 22px 24px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 161, 26, 0.24), transparent 68%);
  filter: blur(10px);
  z-index: 1;
}

.showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 36, 0.06), rgba(10, 15, 36, 0.38));
}

.showcase-screen {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  height: auto;
  aspect-ratio: 1200 / 760;
  margin-inline: auto;
  transform-origin: center bottom;
}

.showcase-screen .screen-body img {
  transform: scale(1.02);
  transition: transform 1.1s ease, filter 0.8s ease;
  filter: saturate(1) contrast(1.02);
}

.showcase-slide.is-active .showcase-screen .screen-body img {
  transform: scale(1);
  filter: saturate(1.05) contrast(1.05);
}

.showcase-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(26px, 3.5vw, 36px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, var(--surface-strong) 100%);
}

body[data-theme="dark"] .showcase-copy {
  background: linear-gradient(180deg, rgba(12, 16, 36, 0.72) 0%, rgba(9, 13, 31, 0.92) 100%);
}

.showcase-copy::before {
  content: "";
  position: absolute;
  inset: 26px auto 26px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 161, 26, 0));
  opacity: 0.75;
}

.showcase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-meta .card-tag {
  margin-bottom: 0;
}

.showcase-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(23, 26, 103, 0.08);
  color: var(--navy-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-theme="dark"] .showcase-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: #c8d4ff;
}

.showcase-copy h3 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.showcase-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.showcase-action-static {
  pointer-events: none;
  cursor: default;
}

.showcase-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.showcase-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(23, 26, 103, 0.18);
  background: rgba(23, 26, 103, 0.08);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.showcase-dot:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 161, 26, 0.4);
}

.showcase-dot.active {
  width: 42px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  border-color: transparent;
}

body[data-theme="dark"] .showcase-dot {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

[dir="rtl"] .showcase-copy {
  direction: rtl;
  text-align: right;
  align-items: flex-start;
}

[dir="ltr"] .showcase-copy {
  direction: ltr;
  text-align: left;
  align-items: flex-start;
}

[dir="ltr"] .showcase-copy::before {
  inset: 26px auto 26px 0;
}

[dir="rtl"] .showcase-copy::before {
  inset: 26px 0 26px auto;
}

[dir="rtl"] .showcase-screen {
  transform: perspective(1600px) rotateY(4deg);
}

[dir="ltr"] .showcase-screen {
  transform: perspective(1600px) rotateY(-4deg);
}

.trust-band {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.trust-metric {
  padding: 28px 24px;
  border-inline-end: 1px solid var(--line);
}

.trust-metric:last-child {
  border-inline-end: 0;
}

.trust-metric strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-soft);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
}

body[data-theme="dark"] .trust-metric strong {
  color: #80a0ff;
}

.trust-metric span {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 800;
}

.trust-copy {
  padding: 28px 24px 18px;
}

.trust-copy h2 {
  margin: 16px 0 10px;
  max-width: 860px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 900;
}

.trust-copy p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 700;
}

.logo-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 24px 28px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.logo-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 161, 26, 0.34);
  color: var(--text);
}

.grid-three,
.grid-four,
.grid-two,
.project-grid,
.impact-grid,
.process-grid,
.company-grid,
.contact-layout,
.footer-grid {
  display: grid;
  gap: 18px;
}

.grid-two,
.project-grid,
.contact-layout {
  grid-template-columns: repeat(2, 1fr);
}

.grid-three,
.impact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.grid-four,
.process-grid,
.company-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.bento-grid .card:first-child {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.16), transparent 20%),
    linear-gradient(145deg, var(--hero-start), var(--hero-end));
  color: #ffffff;
}

.bento-grid .card:first-child p,
.bento-grid .card:first-child li {
  color: rgba(255, 255, 255, 0.76);
}

.bento-grid .card:first-child .card-tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.card,
.impact-card,
.contact-card,
.brief-card,
.content-shell,
.cta-shell,
.contact-shell {
  padding: 22px;
}

.content-shell {
  background: var(--surface);
}

.news-source-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, var(--surface-strong) 100%);
  box-shadow: var(--shadow-soft);
}

body[data-theme="dark"] .news-source-bar {
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(15, 20, 54, 0.9) 0%, rgba(11, 15, 24, 0.94) 100%);
}

.news-source-copy h2 {
  margin: 10px 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
  font-weight: 900;
}

.news-source-copy p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

.news-source-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.news-source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.news-source-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 26, 103, 0.08);
  border: 1px solid rgba(23, 26, 103, 0.1);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

body[data-theme="dark"] .news-source-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.news-feed-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.news-feed-status {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 26, 103, 0.08);
  border: 1px solid rgba(23, 26, 103, 0.1);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.news-feed-status.is-stale {
  background: rgba(255, 161, 26, 0.12);
  border-color: rgba(255, 161, 26, 0.2);
  color: #805600;
}

.news-feed-status.is-error {
  background: rgba(193, 54, 54, 0.08);
  border-color: rgba(193, 54, 54, 0.16);
  color: #9d2d2d;
}

body[data-theme="dark"] .news-feed-status {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .news-feed-status.is-stale {
  color: #ffd991;
}

body[data-theme="dark"] .news-feed-status.is-error {
  color: #ffb0b0;
}

.news-feed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.news-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 161, 26, 0.28);
}

.news-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(13, 19, 46, 0.98), rgba(24, 31, 72, 0.94));
}

.news-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 24, 0.02), rgba(11, 15, 24, 0.2));
  pointer-events: none;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.04);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.news-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
}

.news-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 900;
}

.news-card h3 a {
  color: inherit;
}

.news-card h3 a:hover {
  color: var(--navy-soft);
}

.news-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-card-tags .card-tag {
  min-height: 30px;
  margin-bottom: 0;
  padding: 0 10px;
}

.news-feed-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  font-weight: 700;
}

.news-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(23, 26, 103, 0.16);
  background: rgba(23, 26, 103, 0.03);
}

body[data-theme="dark"] .news-empty {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.news-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
}

.news-empty p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 700;
}

.news-card-skeleton {
  pointer-events: none;
}

.news-card-skeleton .news-card-media {
  background: linear-gradient(135deg, rgba(23, 26, 103, 0.12), rgba(255, 161, 26, 0.12));
}

.news-card-line {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(23, 26, 103, 0.08), rgba(23, 26, 103, 0.14), rgba(23, 26, 103, 0.08));
  background-size: 200% 100%;
  animation: news-shimmer 1.5s linear infinite;
}

.news-card-line-wide {
  width: 88%;
}

.news-card-line-short {
  width: 52%;
}

@keyframes news-shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 161, 26, 0.12);
  border: 1px solid rgba(255, 161, 26, 0.18);
  color: #6a4e0c;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
}

body[data-theme="dark"] .card-tag {
  color: #ffd991;
}

.project-media .card-tag {
  min-height: 30px;
  padding: 0 10px;
  background: rgba(11, 15, 24, 0.52);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  margin-bottom: 0;
}

.card p,
.impact-card p,
.contact-card p,
.brief-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.feature-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-inline-start: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.76;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.project-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 10px;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 161, 26, 0.28);
}

.project-media {
  position: relative;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 16px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(13, 19, 46, 0.98), rgba(24, 31, 72, 0.94));
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 24, 0.02), rgba(11, 15, 24, 0.18));
  pointer-events: none;
}

.project-media-overlay {
  display: none;
}

.project-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 760;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 20px 34px rgba(5, 9, 26, 0.28);
  transform: translateY(4px);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.project-screen .screen-bar {
  min-height: 38px;
  padding: 0 12px;
}

.project-screen .screen-url,
.project-screen .screen-status {
  font-size: 10px;
}

.project-screen .screen-body img {
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(1) contrast(1.02);
}

.project-card:hover .project-screen {
  transform: translateY(0);
  box-shadow: 0 24px 40px rgba(5, 9, 26, 0.32);
}

.project-card:hover .project-screen .screen-body img {
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.04);
}

.project-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.project-card-head h3,
.project-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.34;
  font-weight: 800;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
  font-weight: 700;
}

.project-index {
  min-width: 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2px;
}

.project-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
}

.project-link {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--navy-ink);
}

.project-link-muted {
  background: rgba(23, 26, 103, 0.08);
  color: var(--text);
}

body[data-theme="dark"] .project-link-muted {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.inline-link {
  background: rgba(23, 26, 103, 0.08);
  color: var(--navy);
}

body[data-theme="dark"] .inline-link {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.impact-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.process-step {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

body[data-theme="dark"] .process-step {
  background: rgba(15, 20, 54, 0.96);
}

.process-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 900;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
  font-weight: 700;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  border-color: transparent;
}

.cta-shell {
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
  color: var(--text);
  border-top: 3px solid var(--orange);
}

.cta-shell h2 {
  margin: 0 0 10px;
  max-width: 760px;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.28;
  font-weight: 900;
}

.cta-shell p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes glowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -10px, 0) scale(1.05);
  }
}

@keyframes coverPan {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.06) translate3d(-8px, -6px, 0);
  }
}

.contact-shell {
  background:
    radial-gradient(circle at top right, rgba(255, 161, 26, 0.18), transparent 22%),
    linear-gradient(180deg, var(--hero-start), var(--hero-end));
  color: #ffffff;
}

.contact-shell .section-head p,
.contact-shell .contact-card p,
.contact-shell .brief-card p,
.contact-shell .form-note {
  color: rgba(255, 255, 255, 0.74);
}

.contact-shell .section-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.channel-stack,
.brief-stack {
  display: grid;
  gap: 16px;
}

.brief-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.brief-item {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.brief-item strong {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 800;
}

.contact-card,
.brief-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.form-shell {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field,
.form-shell textarea,
.form-shell select {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0 16px;
  outline: none;
}

.form-shell textarea {
  min-height: 142px;
  padding-top: 14px;
  resize: vertical;
}

.form-shell option {
  color: var(--navy-ink);
}

.field:focus,
.form-shell textarea:focus,
.form-shell select:focus {
  border-color: rgba(255, 161, 26, 0.36);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.form-note {
  min-height: 24px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 72px 0 28px;
}

.footer-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.footer-card {
  padding: 24px;
}

.footer-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-card p,
.footer-card a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.86;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-source-bar {
    grid-template-columns: 1fr;
  }

  .news-source-side {
    align-items: flex-start;
  }

  .news-source-pills {
    justify-content: flex-start;
  }

  .hero-corporate,
  .hero-home,
  .intent-grid,
  .grid-three,
  .grid-four,
  .impact-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-row,
  .trust-metrics,
  .stats-strip,
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-corporate,
  .hero-home,
  .contact-layout,
  .footer-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid .card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .site-nav,
  .desktop-cta {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
  }

  .hero-home,
  .hero-corporate,
  .intent-grid,
  .journey-choice-grid,
  .grid-two,
  .grid-three,
  .grid-four,
  .impact-grid,
  .project-grid,
  .bento-grid,
  .metrics-row,
  .trust-metrics,
  .stats-strip,
  .logo-grid,
  .field-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-slider {
    padding: 18px;
  }

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

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

  .news-feed-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-slide {
    grid-template-columns: 1fr;
  }

  .showcase-media {
    min-height: 320px;
    padding: 18px 18px 0;
  }

  .showcase-copy {
    padding: 22px;
  }

  .showcase-screen {
    width: 100%;
    transform: none;
  }

  .project-media {
    aspect-ratio: 1.42 / 1;
    padding: 14px 14px 0;
  }

  .showcase-toolbar {
    align-items: flex-start;
  }

  .journey-guide-shell {
    padding: 18px;
  }

  .journey-guide-head {
    flex-direction: column;
  }

  .journey-guide-tools {
    width: 100%;
  }

  .journey-guide-tools .toggle-btn {
    flex: 1 1 0;
    justify-content: center;
  }

  .journey-ai-strip,
  .journey-input-row {
    grid-template-columns: 1fr;
  }

  .journey-ai-visual {
    width: 74px;
    height: 74px;
  }

  .page-shell,
  .section {
    padding: 72px 0 24px;
  }

  .hero-content,
  .hero-simple-content,
  .hero-minimal,
  .hero-corporate,
  .hero-stage,
  .content-shell,
  .cta-shell,
  .contact-shell {
    padding: 24px;
  }

  .hero-cover-frame {
    min-height: 320px;
  }

  .hero-cover-card {
    max-width: 220px;
    padding: 14px;
  }

  .hero-cover-card strong {
    font-size: 16px;
  }

  .stat-item {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .trust-metric {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-metric:last-child {
    border-bottom: 0;
  }

  .bento-grid .card:first-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-intro-shell {
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .site-intro-mark {
    width: 96px;
    height: 96px;
    border-radius: 28px;
  }

  .site-intro-mark img {
    width: 66px;
    height: 66px;
  }

  .site-intro-copy small {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .news-source-bar,
  .content-shell {
    padding: 18px;
  }

  .news-card-body {
    padding: 16px;
  }

  .showcase-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .journey-guide {
    padding: 12px;
  }

  .ai-fab {
    inset-inline-start: 12px;
    bottom: 12px;
    min-height: 52px;
    padding-inline-end: 14px;
  }

  .ai-fab-label {
    font-size: 13px;
  }

  .journey-choice,
  .journey-plan-copy,
  .journey-points,
  .journey-ai-strip,
  .journey-input-shell {
    padding: 16px;
  }

  .journey-point {
    grid-template-columns: 40px 1fr;
  }

  .showcase-intro {
    justify-content: space-between;
  }

  .showcase-controls,
  .showcase-dots {
    justify-content: flex-start;
  }

  .showcase-media {
    min-height: auto;
    padding: 14px 14px 0;
  }

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

  .screen-bar {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 0 12px;
  }

  .screen-status {
    display: none;
  }

  .showcase-screen,
  .project-screen {
    aspect-ratio: 1.48 / 1;
    transform: none;
  }

  .project-media {
    aspect-ratio: 1.46 / 1;
    padding: 12px 12px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro-orbit,
  .site-intro-mark,
  .site-intro-progress span,
  .ai-fab-core,
  .ai-fab-core::before,
  .ai-fab-core::after,
  .journey-ai-core,
  .journey-ai-ring-a,
  .journey-ai-ring-b,
  .news-card-line {
    animation: none;
  }
}
