:root {
  --bg: #091832;
  --bg-soft: #10284b;
  --panel: rgba(18, 48, 83, 0.62);
  --text: #f6fbff;
  --muted: #b2c7dc;
  --line: rgba(142, 221, 255, 0.25);
  --cyan: #4ff1ff;
  --blue: #629cff;
  --violet: #a98cff;
  --shell: min(1180px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 5%, rgba(63, 166, 255, 0.32), transparent 30%),
    radial-gradient(circle at 12% 46%, rgba(44, 212, 255, 0.13), transparent 28%),
    radial-gradient(circle at 70% 88%, rgba(117, 92, 255, 0.15), transparent 28%),
    linear-gradient(145deg, #08152d 0%, #0d2342 48%, #091832 100%),
    var(--bg);
  font-family: "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-weight: 300;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(103, 210, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 210, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
body::after {
  content: "";
  position: fixed;
  top: -20%;
  left: -20%;
  z-index: -1;
  width: 140%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(79, 241, 255, .55), transparent);
  box-shadow: 0 0 24px rgba(79, 241, 255, .3);
  animation: scan 9s linear infinite;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

#starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: var(--shell);
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  padding: 0 22px;
  border: 1px solid rgba(137, 221, 255, .18);
  border-top: 0;
  background: linear-gradient(180deg, rgba(12, 36, 67, .72), rgba(12, 34, 63, .3));
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { position: relative; width: 34px; height: 34px; }
.brand-orbit {
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(105, 223, 255, 0.45);
  border-radius: 50%;
  transform: rotate(-28deg) scaleY(0.42);
}
.brand-moon {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eafcff 8%, #76d9ff 50%, #5b70e8 100%);
  box-shadow: 0 0 20px rgba(91, 199, 255, 0.65);
}
.brand-name { font-size: 19px; font-weight: 500; letter-spacing: 0.12em; }
.brand-en { margin-left: 2px; color: #91b3ce; font-size: 8px; letter-spacing: 0.18em; line-height: 1.35; width: 50px; }
.nav { display: flex; gap: 44px; color: #c0d2e4; font-size: 13px; }
.nav a { position: relative; transition: color 0.3s; }
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 14px; padding: 10px 14px; border: 1px solid rgba(79, 241, 255, .28); background: rgba(55, 170, 222, .08); font-size: 12px; letter-spacing: 0.12em; }
.header-cta span:last-child { color: var(--cyan); font-size: 16px; }

.hero {
  position: relative;
  min-height: 860px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--shell);
  margin: 0 auto;
  padding-top: 90px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: 5%;
  z-index: -1;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 190, 255, .16), rgba(81, 106, 255, .05) 42%, transparent 68%);
  filter: blur(10px);
}
.hero::before {
  content: "";
  position: absolute;
  top: 108px;
  bottom: 0;
  left: 34%;
  width: 1px;
  background: linear-gradient(transparent, var(--line) 18%, var(--line) 82%, transparent);
  opacity: 0.45;
}
.hero-status, .section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #9fc9e3;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
}
.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: blink 2s infinite;
}
.hero-title { position: relative; z-index: 2; margin: 28px 0 26px; font-size: clamp(52px, 6.5vw, 92px); font-weight: 300; letter-spacing: -0.055em; line-height: 1.15; }
.hero-title span { display: block; }
.gradient-text { color: transparent; background: linear-gradient(100deg, #ffffff 3%, #62f0ff 40%, #80a7ff 72%, #c0a0ff); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 22px rgba(89, 224, 255, .13)); }
.hero-copy { position: relative; z-index: 2; margin: 0; color: #bed1e2; font-size: 16px; line-height: 2; letter-spacing: 0.055em; }
.hero-actions { position: relative; z-index: 2; display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  padding: 17px 20px;
  border: 1px solid rgba(102, 230, 255, 0.56);
  background: linear-gradient(110deg, rgba(61, 202, 255, 0.25), rgba(100, 97, 209, 0.18));
  box-shadow: inset 0 0 22px rgba(72, 207, 255, .06), 0 8px 35px rgba(35, 157, 218, .12);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.primary-button:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 10px 45px rgba(53, 172, 225, 0.14); }
.button-arrow { color: var(--cyan); font-size: 18px; }
.text-link { color: #b4c9db; font-size: 12px; letter-spacing: 0.09em; transition: color 0.3s; }
.text-link span { margin-left: 8px; color: #c1d0df; }
.text-link:hover { color: #fff; }

.hero-visual { position: absolute; top: 16%; right: -6%; width: min(52vw, 680px); aspect-ratio: 1; }
.moon-sphere { position: absolute; top: 24%; left: 25%; width: 49%; aspect-ratio: 1; border-radius: 50%; filter: drop-shadow(0 0 90px rgba(60, 202, 255, 0.5)); animation: float 7s ease-in-out infinite; }
.moon-glow { position: absolute; inset: -32%; border-radius: 50%; background: radial-gradient(circle, rgba(83, 219, 255, 0.32), rgba(87, 113, 255, 0.1) 43%, transparent 70%); }
.moon-surface { position: absolute; inset: 0; overflow: hidden; border: 1px solid rgba(220, 251, 255, .65); border-radius: 50%; background: radial-gradient(circle at 33% 29%, #f4ffff 0%, #a9eaff 20%, #609fe1 48%, #344e96 70%, #16264e 100%); box-shadow: inset -35px -22px 70px rgba(7, 17, 50, 0.68), inset 20px 10px 45px rgba(245, 255, 255, 0.4), 0 0 72px rgba(74, 209, 255, 0.45); }
.moon-surface::before { content: ""; position: absolute; inset: 0; opacity: 0.45; background: radial-gradient(circle at 38% 28%, transparent 0 5%, rgba(32, 55, 93, .45) 6% 9%, transparent 10%), radial-gradient(circle at 68% 44%, transparent 0 7%, rgba(19, 36, 67, .35) 8% 12%, transparent 13%), radial-gradient(circle at 45% 72%, rgba(20, 39, 73, .5) 0 7%, transparent 8%), radial-gradient(circle at 21% 58%, rgba(220, 248, 255, .18) 0 4%, transparent 5%); }
.halo { position: absolute; border: 1px solid rgba(119, 220, 255, 0.28); border-radius: 50%; box-shadow: inset 0 0 35px rgba(91, 196, 255, .04); }
.halo-one { inset: 11%; }
.halo-two { inset: 1%; border-style: dashed; animation: spin 40s linear infinite; }
.orbit { position: absolute; border: 1px solid rgba(111, 227, 255, 0.52); border-radius: 50%; box-shadow: 0 0 18px rgba(79, 241, 255, .08); }
.orbit-one { inset: 14% 3%; transform: rotate(-20deg) scaleY(0.46); }
.orbit-two { inset: 8% 15%; transform: rotate(54deg) scaleY(0.55); }
.orbit span { position: absolute; top: 50%; left: -3px; width: 5px; height: 5px; border-radius: 50%; background: #c3f5ff; box-shadow: 0 0 14px var(--cyan); }
.coordinate { position: absolute; color: rgba(184, 229, 250, 0.68); font-size: 8px; letter-spacing: 0.18em; }
.coordinate-a { top: 24%; right: 4%; }
.coordinate-b { bottom: 22%; left: 5%; transform: rotate(-90deg); }
.scroll-note { position: absolute; bottom: 35px; left: 0; display: flex; align-items: center; gap: 16px; color: #566275; font-size: 8px; letter-spacing: 0.18em; writing-mode: vertical-rl; }
.scroll-note i { width: 1px; height: 54px; background: linear-gradient(var(--cyan), transparent); animation: scrollLine 2.2s ease-in-out infinite; }
.hero-data { position: absolute; right: 0; bottom: 50px; z-index: 3; display: flex; border: 1px solid rgba(126, 222, 255, .23); background: rgba(11, 37, 69, .58); box-shadow: 0 18px 50px rgba(4, 19, 46, .18); backdrop-filter: blur(12px); }
.hero-data div { min-width: 126px; padding: 15px 18px; border-right: 1px solid rgba(126, 222, 255, .16); }
.hero-data div:last-child { border: 0; }
.hero-data span, .hero-data strong { display: block; }
.hero-data span { margin-bottom: 7px; color: #6f99b6; font-size: 7px; letter-spacing: .2em; }
.hero-data strong { color: #d9f7ff; font-size: 9px; font-weight: 500; letter-spacing: .14em; }
.hero-data i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: #62ffca; box-shadow: 0 0 9px #62ffca; }

.section-shell { width: var(--shell); margin: 0 auto; }
.vision { position: relative; padding: 150px 0 140px; border-top: 1px solid var(--line); }
.section-kicker span { color: var(--cyan); }
.vision-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 10%; margin-top: 54px; }
.section-title { margin: 0; font-size: clamp(38px, 4.4vw, 64px); font-weight: 300; letter-spacing: -0.045em; line-height: 1.28; }
.vision-copy { padding: 28px 30px; color: #bdd0e1; border: 1px solid rgba(134, 221, 255, .18); background: linear-gradient(135deg, rgba(29, 72, 115, .42), rgba(17, 46, 83, .3)); box-shadow: inset 0 1px rgba(255,255,255,.04); backdrop-filter: blur(10px); font-size: 15px; line-height: 2; }
.vision-copy p { margin: 0 0 24px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 90px; border: 1px solid var(--line); background: rgba(19, 51, 88, .35); backdrop-filter: blur(10px); }
.metric { display: flex; flex-direction: column; gap: 8px; padding: 30px 34px; border-right: 1px solid var(--line); }
.metric:last-child { border: 0; }
.metric strong { font-size: 27px; font-weight: 300; color: #e8faff; text-shadow: 0 0 18px rgba(79, 241, 255, .2); letter-spacing: -0.02em; }
.metric span { color: #8fb1ca; font-size: 11px; letter-spacing: 0.15em; }

.capabilities { padding: 140px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-top: 52px; }
.section-heading p { width: 320px; margin: 0 0 8px; color: #b3c9dc; font-size: 14px; line-height: 1.9; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: var(--line); border: 1px solid var(--line); }
.capability-card { position: relative; min-height: 455px; padding: 32px; overflow: hidden; background: linear-gradient(150deg, rgba(24, 67, 108, .78), rgba(12, 34, 67, .84)); box-shadow: inset 0 1px rgba(255,255,255,.05); backdrop-filter: blur(14px); transition: background 0.4s, transform 0.4s, box-shadow .4s; }
.capability-card::before { content: ""; position: absolute; top: -100px; left: 10%; width: 80%; height: 200px; border-radius: 50%; background: rgba(55, 208, 255, 0.2); filter: blur(55px); opacity: .45; transition: opacity 0.4s; }
.capability-card::after { content: ""; position: absolute; top: 0; left: 0; width: 42px; height: 1px; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.capability-card:hover { z-index: 2; background: linear-gradient(150deg, rgba(30, 86, 135, .9), rgba(16, 45, 86, .94)); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(3, 24, 57, .3), inset 0 1px rgba(255,255,255,.08); }
.capability-card:hover::before { opacity: 1; }
.card-index { color: #86abc4; font-size: 9px; letter-spacing: 0.2em; }
.card-icon { position: relative; width: 86px; height: 86px; margin: 54px 0 39px; }
.card-icon::before, .card-icon::after, .card-icon span { content: ""; position: absolute; border: 1px solid rgba(108, 220, 255, 0.55); }
.icon-brand::before { inset: 6px; border-radius: 50%; box-shadow: 0 0 24px rgba(91, 194, 255, 0.15); }
.icon-brand::after { inset: 22px; border-radius: 50%; background: radial-gradient(circle, rgba(108, 225, 255, 0.25), transparent 65%); }
.icon-brand span { top: 42px; left: -2px; width: 90px; height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--cyan), transparent); transform: rotate(-28deg); }
.icon-product::before { inset: 8px; transform: rotate(45deg); }
.icon-product::after { inset: 24px; transform: rotate(45deg); background: rgba(103, 128, 255, 0.12); }
.icon-product span { top: 41px; left: 3px; width: 80px; height: 1px; border: 0; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.icon-tech::before { inset: 4px; border-radius: 50%; border-style: dashed; animation: spin 14s linear infinite; }
.icon-tech::after { inset: 20px; border-radius: 50%; }
.icon-tech span { inset: 34px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.capability-card h3 { margin: 0 0 18px; font-size: 23px; font-weight: 400; letter-spacing: 0.03em; }
.capability-card p { min-height: 82px; margin: 0; color: #b0c6d9; font-size: 13px; line-height: 1.85; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.card-tags span { padding: 6px 9px; color: #9dc5dc; border: 1px solid rgba(128, 220, 255, 0.2); background: rgba(73, 170, 218, .06); font-size: 9px; letter-spacing: 0.08em; }

.team { padding: 150px 0 100px; border-top: 1px solid var(--line); }
.team-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10%; margin-top: 54px; }
.team-statement { padding-top: 10px; color: #b9cede; font-size: 15px; line-height: 2; }
.team-statement p { margin: 0 0 22px; }
.team-statement p:first-child { color: #e3f4ff; font-size: 17px; }
.delivery-list { margin-top: 90px; border-top: 1px solid var(--line); }
.delivery-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(210px, .75fr) 1.25fr 170px;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 24px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(25, 66, 105, .28), rgba(16, 43, 78, .14));
  transition: background .35s, padding .35s;
}
.delivery-item::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; background: linear-gradient(90deg, rgba(54, 185, 234, .1), rgba(91, 93, 206, .04), transparent); transition: opacity .35s; }
.delivery-item:hover { padding-right: 26px; padding-left: 26px; }
.delivery-item:hover::before { opacity: 1; }
.delivery-number { color: #79a9c5; font-size: 10px; letter-spacing: .2em; }
.delivery-title { display: flex; align-items: center; gap: 15px; }
.delivery-title h3 { margin: 0; font-size: 21px; font-weight: 400; letter-spacing: .03em; }
.delivery-signal { flex: 0 0 auto; width: 7px; height: 7px; border: 1px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 12px rgba(96, 230, 255, .6); }
.delivery-item:hover .delivery-signal { background: var(--cyan); }
.delivery-item p { margin: 0; color: #aec4d6; font-size: 13px; line-height: 1.8; }
.delivery-code { color: #7fa7c0; font-size: 8px; letter-spacing: .18em; text-align: right; }
.team-process { display: flex; align-items: center; justify-content: space-between; margin-top: 64px; padding: 28px 34px; border: 1px solid var(--line); background: linear-gradient(90deg, rgba(28, 77, 119, .58), rgba(17, 44, 81, .5)); box-shadow: 0 18px 50px rgba(3, 22, 51, .14); backdrop-filter: blur(12px); }
.team-process div { display: flex; align-items: center; gap: 14px; }
.team-process span { color: var(--cyan); font-size: 9px; letter-spacing: .15em; }
.team-process strong { font-size: 12px; font-weight: 400; letter-spacing: .12em; }
.team-process i { width: min(9vw, 115px); height: 1px; background: linear-gradient(90deg, rgba(96, 230, 255, .45), rgba(109, 140, 255, .08)); }

.manifesto { position: relative; padding: 170px 0; text-align: center; }
.manifesto-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(98, 216, 255, 0.25), transparent); }
.manifesto-eyebrow { position: relative; margin: 0 0 38px; color: #83abc4; font-size: 9px; letter-spacing: 0.32em; }
.manifesto blockquote { position: relative; margin: 0; font-size: clamp(25px, 3vw, 43px); font-weight: 300; line-height: 1.65; letter-spacing: -0.025em; }
.manifesto blockquote span { display: block; }
.manifesto blockquote span:last-child { color: #a4bed2; font-size: 0.62em; letter-spacing: 0.015em; }

.contact { padding: 80px 0 130px; }
.contact-panel { position: relative; min-height: 440px; overflow: hidden; border: 1px solid rgba(118, 225, 255, 0.38); background: linear-gradient(115deg, rgba(31, 91, 139, 0.82), rgba(20, 48, 94, 0.9)); box-shadow: 0 28px 90px rgba(3, 25, 61, .28), inset 0 1px rgba(255,255,255,.08); }
.contact-grid { position: absolute; inset: 0; opacity: 0.11; background-image: linear-gradient(rgba(124, 197, 235, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 197, 235, 0.25) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.contact-content { position: relative; z-index: 2; padding: 75px 72px; }
.contact-content h2 { margin: 38px 0 40px; font-size: clamp(36px, 4.6vw, 62px); font-weight: 300; line-height: 1.28; letter-spacing: -0.045em; }
.email-link { display: inline-flex; align-items: center; gap: 25px; padding: 12px 16px; border: 1px solid rgba(125, 232, 255, 0.45); background: rgba(71, 194, 235, .1); color: #e0f8ff; font-size: 14px; letter-spacing: 0.04em; transition: color 0.3s, border-color 0.3s; }
.email-link:hover { color: #fff; border-color: var(--cyan); }
.email-arrow { color: var(--cyan); font-size: 19px; }
.contact-orb { position: absolute; top: 50%; right: 3%; width: 330px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(208, 248, 255, .9), rgba(80, 166, 217, .35) 16%, rgba(75, 84, 178, .22) 45%, rgba(13, 19, 45, .1) 67%); transform: translateY(-50%); box-shadow: 0 0 100px rgba(68, 132, 221, .16); opacity: .66; }
.contact-orb::before, .contact-orb::after { content: ""; position: absolute; border: 1px solid rgba(101, 207, 242, 0.2); border-radius: 50%; }
.contact-orb::before { inset: -35px; }
.contact-orb::after { inset: -75px; border-style: dashed; animation: spin 38s linear infinite; }

.site-footer { display: flex; align-items: center; justify-content: space-between; padding: 32px 0 42px; border-top: 1px solid var(--line); color: #789bb5; font-size: 10px; letter-spacing: 0.08em; }
.footer-brand { color: #c5dbea; font-size: 13px; letter-spacing: 0.16em; }
.footer-brand span { margin-left: 12px; color: #7295ad; font-size: 8px; }
.site-footer a { transition: color 0.3s; }
.site-footer a:hover { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-12px); } }
@keyframes blink { 50% { opacity: 0.35; } }
@keyframes scrollLine { 0%, 100% { opacity: .25; transform: scaleY(.55); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes scan { from { transform: translateY(-10vh); } to { transform: translateY(140vh); } }

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 720px); }
  .site-header { height: 84px; }
  .nav { display: none; }
  .header-cta span:first-child { display: none; }
  .hero { min-height: 760px; padding-top: 60px; }
  .hero::before { display: none; }
  .hero-title { font-size: clamp(43px, 11vw, 70px); }
  .hero-visual { top: 21%; right: -34%; width: 86vw; opacity: .64; }
  .hero-data { right: 0; bottom: 28px; }
  .hero-data div { min-width: 105px; padding: 12px; }
  .vision-grid { grid-template-columns: 1fr; gap: 35px; }
  .section-heading { display: block; }
  .section-heading p { width: auto; margin-top: 30px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 390px; }
  .team-intro { grid-template-columns: 1fr; gap: 35px; }
  .delivery-item { grid-template-columns: 45px minmax(190px, .7fr) 1.3fr; }
  .delivery-code { display: none; }
  .team-process { padding: 26px 20px; }
  .team-process i { width: 5vw; }
  .team-process div { gap: 8px; }
  .contact-orb { right: -160px; opacity: .42; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 32px); }
  .brand-en { display: none; }
  .hero { min-height: 720px; height: 100svh; }
  .hero-title { margin-top: 23px; font-size: 41px; letter-spacing: -0.06em; }
  .hero-copy { font-size: 13px; line-height: 1.9; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 32px; }
  .hero-visual { top: 25%; right: -55%; width: 115vw; }
  .hero-data { display: none; }
  .scroll-note { display: none; }
  .vision, .capabilities, .team { padding: 100px 0; }
  .metric-row { grid-template-columns: 1fr; margin-top: 60px; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .capability-grid { margin-top: 50px; }
  .capability-card { padding: 28px; }
  .delivery-list { margin-top: 60px; }
  .delivery-item { grid-template-columns: 34px 1fr; gap: 10px 12px; padding: 24px 8px; }
  .delivery-item:hover { padding-right: 8px; padding-left: 8px; }
  .delivery-title h3 { font-size: 19px; }
  .delivery-title { gap: 11px; }
  .delivery-item p { grid-column: 2; font-size: 12px; }
  .team-process { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 15px; }
  .team-process i { display: none; }
  .manifesto { padding: 120px 0; }
  .manifesto blockquote span:last-child { margin-top: 12px; font-size: 0.55em; }
  .contact { padding: 40px 0 90px; }
  .contact-panel { min-height: 470px; }
  .contact-content { padding: 55px 28px; }
  .contact-content h2 { font-size: 36px; }
  .email-link { gap: 10px; font-size: 11px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
