:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.13);
  --line-hot: rgba(255, 90, 0, 0.55);
  --text: #f7f3ec;
  --muted: rgba(247, 243, 236, 0.66);
  --faint: rgba(247, 243, 236, 0.42);
  --orange: #ff5a00;
  --orange-2: #ff8a00;
  --cyan: #00e5ff;
  --pink: #ff2d8f;
  --green: #b6ff00;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-hot: 0 0 42px rgba(255, 90, 0, 0.28);
  --font: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 74px;
  --control-h: 72px;
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; overflow: hidden; background: var(--bg); color: var(--text); font-family: var(--font); }
body { min-width: 320px; -webkit-font-smoothing: antialiased; text-rendering: geometricPrecision; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img, svg, canvas { max-width: 100%; }
::selection { background: var(--orange); color: #111; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 90, 0, 0.22), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(0, 229, 255, 0.12), transparent 34%),
    radial-gradient(circle at 80% 82%, rgba(255, 45, 143, 0.12), transparent 36%),
    linear-gradient(135deg, #050505 0%, #0d0804 50%, #020202 100%);
}

body.is-eco .webgl-canvas,
body.is-eco .cursor-light,
body.is-eco .grain { display: none !important; }
body.is-eco * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: 0.13;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cursor-light {
  pointer-events: none;
  position: fixed;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  width: 38vw;
  height: 38vw;
  max-width: 520px;
  max-height: 520px;
  transform: translate(-50%, -50%);
  z-index: -2;
  opacity: .55;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.22), transparent 64%);
  filter: blur(22px);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity .45s ease, visibility .45s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__noise {
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, #000 0%, transparent 76%);
}
.preloader__card {
  width: min(520px, calc(100vw - 40px));
  padding: 28px;
  border: 1px solid var(--line-hot);
  border-radius: var(--radius-xl);
  background: rgba(10,10,10,.78);
  box-shadow: var(--shadow-hot);
  position: relative;
  overflow: hidden;
}
.preloader__card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 0, .45), transparent 68%);
}
.preloader__top { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.preloader__top b { color: var(--orange); font-size: 18px; }
.preloader strong { display: block; margin: 40px 0 28px; font-size: clamp(42px, 11vw, 84px); line-height: .82; letter-spacing: -.08em; }
.preloader__bar { height: 8px; border-radius: 99px; overflow: hidden; background: rgba(255,255,255,.1); }
.preloader__bar span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-2), var(--cyan)); }
.preloader p { margin: 14px 0 0; color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(14px, env(safe-area-inset-top)) clamp(16px, 4vw, 42px) 14px;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.04em; }
.brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--orange);
  color: #111;
  box-shadow: var(--shadow-hot);
}
.brand b { font-size: 17px; }
.desktop-nav {
  display: flex;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5,5,5,.58);
  backdrop-filter: blur(18px);
}
.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  transition: .2s ease;
}
.desktop-nav a:hover, .desktop-nav a.is-active { color: #111; background: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.chip-button, .menu-button {
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(5,5,5,.58);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.chip-button { display: inline-flex; align-items: center; gap: 7px; padding: 0 13px; color: var(--muted); }
.menu-button { display: none; width: 42px; }
.chip-button:hover, .menu-button:hover { transform: translateY(-1px); border-color: var(--line-hot); background: rgba(255,90,0,.13); color: var(--text); }

.mobile-menu, .finder { position: fixed; inset: 0; z-index: 80; pointer-events: none; }
.mobile-menu {
  display: none;
  padding: 24px;
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(22px);
  opacity: 0;
  transition: opacity .25s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu button { margin-left: auto; display: block; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.08); }
.mobile-menu a { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: clamp(28px, 11vw, 54px); font-weight: 900; letter-spacing: -.07em; }
.finder { opacity: 0; visibility: hidden; transition: .2s ease; }
.finder.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.finder__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); }
.finder__panel {
  position: relative;
  margin: 92px auto 0;
  width: min(680px, calc(100vw - 28px));
  border: 1px solid var(--line-hot);
  border-radius: 28px;
  background: rgba(12,12,12,.92);
  box-shadow: var(--shadow-hot);
  overflow: hidden;
}
.finder__input { display: flex; align-items: center; gap: 12px; padding: 16px; border-bottom: 1px solid var(--line); }
.finder__input input { flex: 1; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 16px; }
.finder__input button { border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--muted); border-radius: 10px; padding: 7px 10px; }
.finder__results { padding: 10px; max-height: min(460px, 60dvh); overflow: auto; }
.finder-item { width: 100%; display: flex; align-items: center; gap: 12px; padding: 14px; border: 0; border-radius: 18px; background: transparent; color: var(--text); cursor: pointer; text-align: left; }
.finder-item:hover { background: rgba(255,90,0,.13); }
.finder-item i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,90,0,.16); color: var(--orange); }
.finder-item span { display: block; color: var(--faint); font-size: 12px; margin-top: 3px; }

.deck {
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  position: fixed;
  inset: 0;
}
.deck-plane {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100dvh;
  transform: translate3d(calc(var(--deck-x, 0) * -100vw), calc(var(--deck-y, 0) * -100dvh), 0);
  transition: transform .72s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.slide {
  position: absolute;
  left: calc(var(--x) * 100vw);
  top: calc(var(--y) * 100dvh);
  width: 100vw;
  height: 100dvh;
  padding: calc(var(--header-h) + 18px) clamp(16px, 5vw, 76px) calc(var(--control-h) + 24px);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: clamp(26px, 4vw, 54px);
  pointer-events: none;
}
.slide__inner {
  width: min(1220px, 100%);
  max-height: calc(100dvh - var(--header-h) - var(--control-h) - 52px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,90,0,.5) transparent;
  position: relative;
  z-index: 2;
}
.slide__inner::-webkit-scrollbar { height: 6px; width: 6px; }
.slide__inner::-webkit-scrollbar-thumb { background: rgba(255,90,0,.45); border-radius: 99px; }
.webgl-canvas { position: absolute; inset: 0; z-index: 0; opacity: .7; }

.eyebrow { margin: 0 0 16px; color: var(--orange); font-weight: 900; letter-spacing: .18em; text-transform: uppercase; font-size: 12px; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(58px, 10vw, 138px); line-height: .82; letter-spacing: -.095em; }
h1 span { display: block; }
h2 { margin-bottom: 16px; font-size: clamp(38px, 6.4vw, 84px); line-height: .9; letter-spacing: -.08em; }
h3 { font-size: 24px; letter-spacing: -.045em; }
p { color: var(--muted); line-height: 1.68; word-break: keep-all; }
.lead { max-width: 680px; font-size: clamp(17px, 2vw, 23px); color: rgba(247,243,236,.77); }

.glass-card, .service-card, .project-card, .store-card, .number-card, .timeline-item, .route-card, .product-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    rgba(5,5,5,.46);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 22px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); gap: clamp(20px, 5vw, 80px); align-items: center; }
.hero-copy p:not(.eyebrow) { max-width: 680px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; padding: 0 20px; font-weight: 800; transition: .18s ease; }
.button--primary { background: var(--orange); color: #111; box-shadow: var(--shadow-hot); }
.button--ghost { border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.04); }
.button:hover { transform: translateY(-2px); }
.mission-card { border-radius: var(--radius-xl); padding: 24px; min-height: 430px; align-self: stretch; display: grid; grid-template-rows: auto 1fr auto; }
.mission-card__top { display: flex; justify-content: space-between; color: var(--faint); font-size: 12px; letter-spacing: .16em; }
.mission-card__mark { display: grid; place-items: center; }
.mission-card__mark span { width: 190px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 46px; color: #111; background: radial-gradient(circle at 35% 25%, #ffb000, var(--orange)); font-size: 70px; font-weight: 950; letter-spacing: -.13em; box-shadow: 0 0 70px rgba(255,90,0,.38); }
.mission-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mission-card li { display: flex; justify-content: space-between; gap: 12px; padding: 13px; border: 1px solid var(--line); border-radius: 16px; }
.mission-card small { color: var(--faint); }

.split-layout { display: grid; grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr); align-items: center; gap: clamp(22px, 6vw, 90px); }
.identity-board { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.word-card { min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border-radius: var(--radius-xl); border: 1px solid var(--line); background: rgba(255,255,255,.06); }
.word-card span { font-size: clamp(34px, 6vw, 76px); line-height: .82; font-weight: 950; letter-spacing: -.09em; }
.word-card b { color: var(--muted); font-size: 15px; }
.word-card--hot { background: linear-gradient(135deg, rgba(255,90,0,.88), rgba(255,138,0,.55)); color: #111; box-shadow: var(--shadow-hot); }
.word-card--hot b { color: rgba(0,0,0,.7); }
.bridge-symbol { width: 84px; height: 84px; display: grid; place-items: center; border: 1px solid var(--line-hot); border-radius: 50%; background: rgba(255,90,0,.12); color: var(--orange); }
.bridge-symbol span { display: none; }
.bridge-symbol i { font-size: 34px; }

.section-head { margin-bottom: clamp(22px, 4vw, 42px); }
.section-head--row { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.service-card { min-height: 214px; border-radius: var(--radius-lg); padding: 22px; position: relative; overflow: hidden; }
.service-card::after { content: attr(data-metric); position: absolute; right: 16px; bottom: 12px; color: rgba(255,255,255,.035); font-size: 68px; font-weight: 950; letter-spacing: -.08em; }
.service-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; color: var(--faint); }
.service-card i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,90,0,.14); color: var(--orange); font-size: 22px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin: 0; font-size: 14px; }

.route-track { display: grid; grid-template-columns: repeat(4, minmax(230px, 1fr)); gap: 14px; align-items: stretch; }
.route-card { border-radius: var(--radius-xl); padding: 22px; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.route-card::before { content: attr(data-step); position: absolute; right: 18px; top: 12px; font-size: 80px; font-weight: 950; letter-spacing: -.11em; color: rgba(255,255,255,.04); }
.route-card:nth-child(2), .route-card:nth-child(4) { transform: translateY(38px); }
.route-card small { color: var(--orange); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.route-card h3 { margin-bottom: 12px; }
.tag-line { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-line span, .brand-tags span, .project-tags span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; background: rgba(255,255,255,.04); }

.arevo-layout { display: grid; grid-template-columns: minmax(290px, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(24px, 6vw, 90px); }
.arevo-visual { min-height: 500px; position: relative; display: grid; place-items: center; }
.arevo-emblem { width: min(440px, 72vw); aspect-ratio: 1; display: grid; place-items: center; border-radius: 42% 58% 54% 46%; background: radial-gradient(circle at 30% 20%, #ffb000, var(--orange) 46%, #211107 100%); color: #111; box-shadow: 0 0 120px rgba(255,90,0,.36); position: relative; z-index: 2; }
.arevo-emblem span { font-size: clamp(120px, 25vw, 260px); font-weight: 950; line-height: .8; letter-spacing: -.18em; transform: translateX(-.04em); }
.arevo-emblem b { position: absolute; bottom: 42px; letter-spacing: .5em; font-size: 12px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit--one { width: 82%; height: 42%; transform: rotate(-18deg); }
.orbit--two { width: 62%; height: 92%; transform: rotate(24deg); border-color: rgba(255,90,0,.34); }
.brand-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 22px; }
.product-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-card { border-radius: var(--radius-md); padding: 16px; min-height: 134px; }
.product-card small { color: var(--orange); font-weight: 900; }
.product-card b { display: block; margin: 12px 0 8px; font-size: 18px; }
.product-card p { margin: 0; font-size: 13px; }

.ops-board { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 18px; }
.ops-flow { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.ops-node { min-height: 170px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); cursor: pointer; text-align: left; transition: .18s ease; }
.ops-node:hover, .ops-node.is-active { border-color: var(--line-hot); background: rgba(255,90,0,.12); transform: translateY(-2px); }
.ops-node small { color: var(--orange); font-weight: 900; }
.ops-node b { display: block; margin-top: 14px; font-size: 28px; letter-spacing: -.06em; }
.ops-panel { border-radius: var(--radius-xl); padding: 24px; }
.ops-panel small { color: var(--orange); font-weight: 900; letter-spacing: .18em; }
.ops-panel ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.ops-panel li { padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.06); color: var(--muted); }

.filter { display: flex; gap: 8px; flex-wrap: wrap; }
.filter button { border: 1px solid var(--line); background: rgba(255,255,255,.055); color: var(--muted); border-radius: 999px; padding: 9px 13px; cursor: pointer; }
.filter button.is-active { background: var(--orange); color: #111; border-color: var(--orange); }
.project-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 360px); gap: 14px; overflow-x: auto; overflow-y: hidden; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.project-card { border-radius: var(--radius-xl); padding: 22px; min-height: 360px; scroll-snap-align: start; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; transition: .2s ease; }
.project-card.is-hidden { display: none; }
.project-card:hover { transform: translateY(-4px); border-color: var(--line-hot); }
.project-card::after { content: attr(data-code); position: absolute; right: 14px; top: 10px; color: rgba(255,255,255,.05); font-size: 58px; font-weight: 950; letter-spacing: -.09em; }
.project-card__visual { height: 128px; border-radius: 22px; display: grid; place-items: center; margin-bottom: 20px; background: linear-gradient(135deg, rgba(255,90,0,.82), rgba(0,229,255,.16)); color: #111; }
.project-card__visual b { font-size: 42px; letter-spacing: -.12em; }
.project-card h3 { margin-bottom: 12px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.timeline { display: grid; grid-template-columns: repeat(4, minmax(220px, 1fr)); gap: 14px; align-items: start; }
.timeline-item { border-radius: var(--radius-xl); padding: 22px; min-height: 300px; position: relative; }
.timeline-item:nth-child(even) { margin-top: 54px; }
.timeline-item time { color: var(--orange); font-weight: 950; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.timeline-item h3 { margin: 36px 0 12px; }

.store-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.store-card { border-radius: var(--radius-xl); padding: 22px; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; transition: .2s ease; }
.store-card:hover { transform: translateY(-4px); border-color: var(--line-hot); }
.store-card__status { width: fit-content; padding: 8px 11px; border-radius: 999px; background: rgba(255,90,0,.14); color: var(--orange); font-size: 12px; font-weight: 900; }
.store-card h3 { font-size: 30px; }
.store-card em { color: var(--muted); font-style: normal; }

.number-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.number-card { border-radius: var(--radius-xl); padding: 24px; min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; }
.number-card strong { color: var(--orange); font-size: clamp(62px, 9vw, 112px); line-height: .82; letter-spacing: -.1em; }
.number-card b { font-size: 24px; letter-spacing: -.05em; }

.contact-layout { display: grid; place-items: center; }
.contact-card { width: min(900px, 100%); border-radius: var(--radius-xl); padding: clamp(24px, 6vw, 70px); text-align: center; }
.contact-card p:not(.eyebrow) { max-width: 620px; margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; text-align: left; }
.contact-grid a, .contact-grid button { border: 1px solid var(--line); background: rgba(255,255,255,.055); border-radius: 20px; padding: 18px; color: var(--text); cursor: pointer; }
.contact-grid small { color: var(--orange); font-weight: 900; letter-spacing: .16em; }
.contact-grid b { display: block; margin-top: 9px; word-break: break-all; }

.deck-map { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 45; display: grid; gap: 8px; }
.deck-dot { width: 10px; height: 10px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.13); cursor: pointer; transition: .18s ease; }
.deck-dot.is-active { height: 32px; border-radius: 99px; background: var(--orange); border-color: var(--orange); box-shadow: var(--shadow-hot); }
.deck-control { position: fixed; left: 50%; bottom: max(16px, env(safe-area-inset-bottom)); transform: translateX(-50%); z-index: 50; display: flex; align-items: center; gap: 10px; padding: 8px; border: 1px solid var(--line); border-radius: 999px; background: rgba(5,5,5,.66); backdrop-filter: blur(18px); }
.deck-control button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.06); cursor: pointer; }
.deck-control__meta { min-width: 148px; text-align: center; }
.deck-control__meta b { display: block; font-size: 13px; }
.deck-control__meta span { color: var(--faint); font-size: 11px; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-button, .mobile-menu { display: block; }
  .hero-grid, .split-layout, .arevo-layout, .ops-board { grid-template-columns: 1fr; }
  .mission-card { min-height: 330px; }
  .mission-card__mark span { width: 150px; font-size: 56px; }
  .service-grid, .store-grid, .number-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-card:nth-child(2), .route-card:nth-child(4), .timeline-item:nth-child(even) { transform: none; margin-top: 0; }
  .section-head--row { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; --control-h: 68px; }
  .site-header { padding-left: 14px; padding-right: 14px; }
  .brand b { display: none; }
  .chip-button span { display: none; }
  .slide { padding-left: 14px; padding-right: 14px; }
  .slide::before { inset: 8px; border-radius: 28px; }
  .slide__inner { max-height: calc(100dvh - var(--header-h) - var(--control-h) - 38px); }
  h1 { font-size: clamp(50px, 18vw, 82px); }
  h2 { font-size: clamp(34px, 13vw, 58px); }
  .hero-grid { gap: 22px; }
  .hero-actions { gap: 8px; }
  .button { width: 100%; }
  .identity-board { grid-template-columns: 1fr; }
  .bridge-symbol { width: 100%; height: 54px; border-radius: 18px; }
  .bridge-symbol span { display: inline; margin-left: 8px; }
  .service-grid, .ops-flow, .store-grid, .number-grid, .timeline, .route-track, .product-row, .contact-grid { grid-template-columns: 1fr; }
  .route-track, .timeline, .store-grid, .number-grid, .product-row { display: grid; }
  .arevo-visual { min-height: 320px; }
  .arevo-emblem { width: min(300px, 80vw); }
  .arevo-emblem b { bottom: 26px; }
  .project-rail { grid-auto-columns: minmax(260px, 82vw); }
  .deck-map { display: none; }
  .deck-control { width: calc(100vw - 24px); justify-content: space-between; }
  .deck-control__meta { min-width: 0; flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .deck-plane { transition: none !important; }
}
