:root {
  --void: #05090d;
  --panel: rgba(9, 20, 28, 0.82);
  --panel-solid: #09141c;
  --panel-soft: rgba(13, 32, 43, 0.72);
  --ink: #f4fbff;
  --muted: #8da6b5;
  --subtle: #5e7d8e;
  --cyan: #4df4ff;
  --cyan-soft: rgba(77, 244, 255, 0.16);
  --gold: #f7c660;
  --amber: #ffcf75;
  --green: #68f7b1;
  --line: rgba(77, 244, 255, 0.22);
  --line-strong: rgba(77, 244, 255, 0.52);
  --glass: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 0%, rgba(77, 244, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #05090d 0%, #07131b 42%, #05090d 100%);
  font-family: "Noto Sans TC", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  z-index: 60;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.028) 0,
    rgba(255, 255, 255, 0.028) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: screen;
  opacity: 0.34;
}

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

.interface-grid {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 244, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 244, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 78%);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  right: clamp(16px, 4vw, 44px);
  left: clamp(16px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
  padding: 10px 14px;
  border: 1px solid rgba(77, 244, 255, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(5, 13, 19, 0.42);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(77, 244, 255, 0.46);
  background: rgba(5, 13, 19, 0.86);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.44);
}

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

.brand {
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 14px rgba(77, 244, 255, 0.5));
}

.site-nav {
  gap: clamp(10px, 1.6vw, 20px);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(244, 251, 255, 0.76);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(77, 244, 255, 0.2);
  border-radius: 999px;
  background: rgba(77, 244, 255, 0.045);
}

.language-switcher button {
  min-width: 44px;
  min-height: 30px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  color: rgba(244, 251, 255, 0.7);
  background: transparent;
  font: inherit;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  color: #041018;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(77, 244, 255, 0.25);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 132px clamp(20px, 5vw, 72px) 64px;
  color: var(--ink);
  overflow: hidden;
}

.hero-media,
.hero-shade,
.hero-hud {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/adi-tech-hero.png");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.18) contrast(1.08) brightness(0.78);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 9, 13, 0.94) 0%, rgba(5, 9, 13, 0.84) 38%, rgba(5, 9, 13, 0.22) 72%),
    linear-gradient(0deg, rgba(5, 9, 13, 0.82) 0%, rgba(5, 9, 13, 0.02) 55%),
    linear-gradient(135deg, rgba(77, 244, 255, 0.08), transparent 42%);
}

.hero-hud {
  z-index: 1;
  pointer-events: none;
}

.hero-hud::before,
.hero-hud::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(77, 244, 255, 0.16);
}

.hero-hud::before {
  top: 116px;
  right: clamp(20px, 5vw, 72px);
  bottom: 54px;
  left: clamp(20px, 5vw, 72px);
  clip-path: polygon(0 0, 33% 0, 33% 1px, 0 1px, 0 100%, 1px 100%, 1px 0, 100% 0, 100% 1px, 67% 1px, 67% 0, 100% 0, 100% 100%, 99.9% 100%, 99.9% 0);
}

.hero-hud::after {
  right: 8%;
  bottom: 14%;
  width: min(380px, 34vw);
  height: min(380px, 34vw);
  border-radius: 50%;
  border-color: rgba(247, 198, 96, 0.24);
  box-shadow:
    inset 0 0 0 22px rgba(77, 244, 255, 0.025),
    inset 0 0 0 46px rgba(247, 198, 96, 0.018),
    0 0 70px rgba(77, 244, 255, 0.12);
}

.hud-corner {
  position: absolute;
  width: 82px;
  height: 82px;
  border-color: var(--line-strong);
}

.hud-corner.top-left {
  top: 118px;
  left: clamp(20px, 5vw, 72px);
  border-top: 2px solid;
  border-left: 2px solid;
}

.hud-corner.top-right {
  top: 118px;
  right: clamp(20px, 5vw, 72px);
  border-top: 2px solid;
  border-right: 2px solid;
}

.hud-corner.bottom-left {
  bottom: 54px;
  left: clamp(20px, 5vw, 72px);
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.hud-corner.bottom-right {
  right: clamp(20px, 5vw, 72px);
  bottom: 54px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.hero-console {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: 92px;
  width: min(360px, 30vw);
  padding: 18px;
  border: 1px solid rgba(77, 244, 255, 0.28);
  border-radius: 8px;
  background: rgba(5, 13, 19, 0.58);
  box-shadow: inset 0 0 42px rgba(77, 244, 255, 0.05), 0 18px 58px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.hero-console p {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-console ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-console li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 251, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-console span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(104, 247, 177, 0.8);
}

.eyebrow,
.section-kicker,
.panel-tag,
.work-meta {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(77, 244, 255, 0.42);
}

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

h1 {
  margin-bottom: 18px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(77, 244, 255, 0.24);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-lead {
  width: min(720px, 100%);
  margin-bottom: 28px;
  color: rgba(244, 251, 255, 0.88);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  overflow: hidden;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 260ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(120%);
}

.button.primary {
  color: #041018;
  background: var(--cyan);
  box-shadow: 0 0 30px rgba(77, 244, 255, 0.32);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid rgba(77, 244, 255, 0.46);
  background: rgba(77, 244, 255, 0.06);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(640px, 100%);
  margin: 0;
}

.hero-facts div {
  position: relative;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(77, 244, 255, 0.28);
  border-radius: 8px;
  background: rgba(5, 13, 19, 0.58);
  box-shadow: inset 0 0 24px rgba(77, 244, 255, 0.04);
  backdrop-filter: blur(12px);
}

.hero-facts div::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 16px;
  width: 44px;
  height: 2px;
  background: var(--gold);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  font-weight: 700;
}

.section {
  position: relative;
  scroll-margin-top: 112px;
  padding: 94px clamp(20px, 5vw, 72px);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(20px, 5vw, 72px);
  left: clamp(20px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 244, 255, 0.38), transparent);
}

.section-band,
.history-section,
.contact-section,
.brand-info-band {
  background:
    linear-gradient(180deg, rgba(77, 244, 255, 0.04), transparent 34%),
    rgba(5, 12, 18, 0.42);
}

.companion-strip {
  padding-top: 56px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 16% 18%, rgba(247, 198, 96, 0.12), transparent 28%),
    radial-gradient(circle at 80% 34%, rgba(77, 244, 255, 0.1), transparent 32%),
    rgba(5, 12, 18, 0.54);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.section-heading p:last-child,
.intro p:last-child,
.education-grid div:nth-child(2) p,
.contact-grid p {
  color: var(--muted);
  font-size: 18px;
}

.section-kicker,
.work-meta {
  color: var(--gold);
}

.intro-grid,
.education-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.venture-layout {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.feature-panel,
.companion-card,
.service-card,
.craft-grid article,
.work-item,
.brand-info-grid article,
.contact-links a {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow), inset 0 0 36px rgba(77, 244, 255, 0.035);
  backdrop-filter: blur(18px);
}

.feature-panel::before,
.companion-card::before,
.service-card::before,
.craft-grid article::before,
.work-item::before,
.brand-info-grid article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  width: 54px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(77, 244, 255, 0.64);
}

.feature-panel {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.feature-panel p:not(.panel-tag),
.craft-grid p,
.work-item p,
.brand-info-grid dd,
.timeline-item p {
  color: var(--muted);
}

.feature-panel a,
.work-item a,
.education-grid a {
  width: fit-content;
  color: var(--cyan);
  font-weight: 800;
  border-bottom: 1px solid rgba(77, 244, 255, 0.4);
}

.feature-panel.accent {
  border-color: rgba(247, 198, 96, 0.32);
  background: rgba(24, 21, 12, 0.78);
}

.feature-panel.dark {
  border-color: rgba(104, 247, 177, 0.28);
  background: rgba(5, 24, 19, 0.74);
}

.feature-panel.design {
  border-color: rgba(247, 198, 96, 0.34);
  background: rgba(25, 21, 13, 0.76);
}

.feature-panel.fde {
  border-color: rgba(77, 244, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(77, 244, 255, 0.12), transparent 44%),
    rgba(7, 20, 28, 0.78);
}

.panel-tag {
  color: var(--gold);
}

.companion-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.companion-copy p:last-child {
  color: var(--muted);
  font-size: 17px;
}

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

.companion-card {
  display: grid;
  grid-template-rows: minmax(260px, 0.95fr) auto;
  min-height: 590px;
  padding: 0;
  overflow: hidden;
}

.companion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(77, 244, 255, 0.08), transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 16px, rgba(255, 255, 255, 0.025) 16px 17px);
  opacity: 0.72;
}

.companion-card > * {
  position: relative;
  z-index: 1;
}

.companion-lulu {
  border-color: rgba(104, 247, 177, 0.28);
  background: rgba(6, 22, 20, 0.78);
}

.companion-dudu {
  border-color: rgba(247, 198, 96, 0.32);
  background: rgba(24, 18, 18, 0.76);
}

.companion-avatar {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(77, 244, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 28px rgba(77, 244, 255, 0.08), 0 0 28px rgba(77, 244, 255, 0.12);
}

.companion-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.08);
}

.companion-lulu .companion-avatar img {
  object-position: 52% 42%;
}

.companion-dudu .companion-avatar img {
  object-position: 50% 36%;
}

.companion-card > div:last-child {
  padding: 24px;
}

.companion-card h3 {
  margin-bottom: 8px;
}

.companion-card p:not(.panel-tag) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.companion-card ul,
.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.companion-card li,
.service-card li {
  position: relative;
  padding-left: 16px;
  color: rgba(244, 251, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.companion-card li::before,
.service-card li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(77, 244, 255, 0.75);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 5px;
  width: 2px;
  background: linear-gradient(var(--cyan), var(--gold), var(--amber));
  box-shadow: 0 0 22px rgba(77, 244, 255, 0.34);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 30px;
  padding: 0 0 32px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -28px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--void);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(77, 244, 255, 0.8);
}

.timeline-item time {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.timeline-item h3 {
  color: var(--ink);
}

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

.craft-grid article {
  min-height: 250px;
  padding: 24px;
}

.craft-number {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

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

.tool-row span {
  padding: 7px 12px;
  border: 1px solid rgba(77, 244, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(77, 244, 255, 0.06);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.services-section {
  background:
    linear-gradient(135deg, rgba(77, 244, 255, 0.06), transparent 44%),
    rgba(4, 10, 15, 0.72);
}

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

.service-mail {
  width: fit-content;
  margin: 26px 0 2px;
}

.service-positioning {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
  margin: 0 0 4px;
}

.service-pain,
.deployment-flow {
  position: relative;
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(77, 244, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(77, 244, 255, 0.07), transparent 48%),
    rgba(4, 14, 20, 0.72);
  box-shadow: var(--shadow), inset 0 0 34px rgba(77, 244, 255, 0.035);
  backdrop-filter: blur(18px);
}

.service-pain::before,
.deployment-flow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  width: 54px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(247, 198, 96, 0.52);
}

.service-pain h3,
.deployment-flow h3 {
  max-width: 620px;
  margin-bottom: 20px;
}

.pain-list,
.deployment-flow ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-list li {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.pain-list strong,
.deployment-flow strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.pain-list span,
.deployment-flow p {
  display: block;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.deployment-flow li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.deployment-flow li > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(77, 244, 255, 0.38);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(77, 244, 255, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(77, 244, 255, 0.16);
}

.service-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.service-card.featured {
  border-color: rgba(247, 198, 96, 0.4);
  background: rgba(25, 20, 11, 0.8);
}

.service-price {
  margin: 8px 0 16px;
  color: var(--cyan);
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.service-card p:not(.panel-tag):not(.service-price) {
  color: var(--muted);
}

.service-note {
  margin: 20px 0 0;
  color: var(--subtle);
  font-size: 14px;
}

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

.work-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.3fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.work-item p {
  margin-bottom: 0;
}

.work-item h3 {
  margin-bottom: 0;
}

.education-band {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(247, 198, 96, 0.12), transparent 42%),
    rgba(7, 18, 24, 0.78);
}

.education-band .section-kicker {
  color: var(--gold);
}

.education-grid a {
  color: var(--cyan);
  border-color: rgba(77, 244, 255, 0.4);
}

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

.brand-info-grid article {
  padding: 26px;
}

.brand-info-grid dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.brand-info-grid div {
  display: grid;
  gap: 3px;
}

.brand-info-grid dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.brand-info-grid dd {
  margin: 0;
  font-weight: 700;
}

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

.contact-links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: var(--cyan);
  font-weight: 800;
}

.contact-links a::after {
  content: ">";
  color: var(--gold);
}

.site-footer {
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(77, 244, 255, 0.18);
  color: var(--subtle);
  background: #03070a;
  font-size: 14px;
}

.site-footer p {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

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

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

  .site-nav {
    gap: 12px;
    font-size: 11px;
  }

  .hero-console {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    min-height: 58px;
  }

  .site-nav {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: 900px;
    padding-top: 108px;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 9, 13, 0.92) 0%, rgba(5, 9, 13, 0.78) 100%),
      linear-gradient(0deg, rgba(5, 9, 13, 0.82) 0%, rgba(5, 9, 13, 0.08) 52%);
  }

  .hero-hud {
    display: none;
  }

  .hero-hud::after {
    display: none;
  }

	  .hero-facts,
	  .intro-grid,
	  .education-grid,
	  .contact-grid,
	  .companion-shell,
	  .companion-grid,
	  .venture-layout,
	  .craft-grid,
	  .service-grid,
	  .service-positioning,
	  .brand-info-grid,
	  .work-item {
	    grid-template-columns: 1fr;
	  }

	  .feature-panel,
	  .companion-card,
	  .service-pain,
	  .deployment-flow,
	  .service-card,
	  .craft-grid article {
	    min-height: auto;
	  }

  .work-item {
    align-items: start;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-item::before {
    left: -24px;
  }
}

@media (max-width: 560px) {
  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

	  .hero {
	    min-height: 850px;
	    padding-bottom: 40px;
	  }

	  .hero-hud {
	    display: none;
	  }

  h1 {
    font-size: 58px;
  }

	  h2 {
	    font-size: 30px;
	  }

	  .companion-card {
	    grid-template-rows: auto auto;
	  }

	  .companion-avatar {
	    aspect-ratio: 16 / 11;
	  }

	  .companion-card > div:last-child {
	    padding: 18px;
	  }

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

	  .companion-card p:not(.panel-tag) {
	    font-size: 14px;
	  }

	  .language-switcher button {
	    min-width: 38px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .service-mail {
    justify-content: center;
    width: 100%;
  }

  .hero-facts div {
    min-height: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
