:root {
  --bg: #f9fafd;
  --bg-alt: #f3f5fa;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --border: #e3e8ef;
  --text: #0b1020;
  --muted: #5b6478;
  --brand: #00508e;
  --brand-2: #1fb8ff;
  --accent: #8db09e;
  --gold: #eedb15;
  --danger: #ff5876;
  --radius: 14px;
  --maxw: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }


html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 18px rgba(11, 16, 32, .04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 18px;
}
.brand { gap: 16px; }
.brand > img:first-child { height: 56px; width: auto; display: block; }
.brand img.brand-text { height: 30px; width: auto; display: block; }
footer .brand > img:first-child { height: 48px; }
footer .brand img.brand-text { height: 26px; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: #45506b;
}
.nav-links a { color: #45506b; }
.nav-links a:hover { color: var(--brand); }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 6px 24px rgba(31, 184, 255, .25);
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(31, 184, 255, .35); }
.nav-actions .cta {
  background: linear-gradient(135deg, #00508e 0%, #8db09e 55%, #eedb15 100%);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
  box-shadow: 0 6px 22px rgba(141, 176, 158, .28);
}
.nav-actions .cta:hover {
  box-shadow: 0 10px 30px rgba(238, 219, 21, .28);
  color: #ffffff;
}
.cta.ghost {
  background: transparent;
  border: 1px solid var(--border);
  box-shadow: none;
}
.cta.ghost:hover { border-color: var(--brand); color: var(--brand); }

.menu-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 24px; cursor: pointer; }
.cta.ghost { color: var(--text); }
.cta.ghost:hover { color: var(--brand); border-color: var(--brand); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/hero_fuji.png");
  background-size: cover;
  background-position: center;
  background-color: #cbe2ee;
  filter: brightness(1.05) saturate(1.05);
  z-index: -2;
  animation: zoomslow 24s var(--ease) infinite alternate;
}
@media (max-width: 760px) {
  .hero::before {
    background-size: contain;
    background-position: center 18%;
    background-repeat: no-repeat;
    animation: none;
  }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, .2) 55%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, .9) 95%, var(--bg) 100%);
  z-index: -1;
}
@keyframes zoomslow {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero .container { padding-top: 100px; padding-bottom: 60px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0, 80, 142, .08);
  border: 1px solid rgba(0, 80, 142, .25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--brand), var(--brand-2) 60%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted);
  margin: 0 0 34px;
}
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 68px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
  max-width: 860px;
}
.hero-stats .stat strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hero-stats .stat span {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Sections ---------- */
section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.section-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}
.section-head .brand-logo {
  height: 44px;
  width: auto;
  margin: 18px 0 22px;
  display: block;
}
@media (max-width: 700px) {
  .section-head .brand-logo { height: 36px; }
}

/* ---------- Services grid ---------- */
.services { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 1px 3px rgba(11, 16, 32, .04);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(0, 80, 142, .08), transparent 40%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 80, 142, .35);
  box-shadow: 0 20px 50px rgba(11, 16, 32, .12);
}
.card:hover::before { opacity: 1; }
.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 184, 255, .2), rgba(123, 92, 255, .2));
  border: 1px solid rgba(31, 184, 255, .3);
  margin-bottom: 18px;
  font-size: 20px;
}
.card h3 {
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.card .tag {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  display: block;
}
.card p { color: var(--muted); margin: 0 0 16px; font-size: 15px; }
.card ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; }
.card ul li { margin-bottom: 4px; }

.specs {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
  padding: 0;
  border-top: 1px solid var(--border);
}
.specs > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  align-items: baseline;
}
.specs dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
.specs dd {
  color: var(--text);
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: .01em;
}
.specs .price dd {
  color: var(--brand);
  font-weight: 600;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: .02em;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.card-link:hover { color: var(--text); transform: translateX(2px); }

/* ---------- Business section ---------- */
.biz {
  background:
    radial-gradient(1000px 500px at 100% 0%, rgba(50, 230, 176, .08), transparent 60%),
    radial-gradient(1000px 500px at 0% 100%, rgba(31, 184, 255, .08), transparent 60%),
    var(--bg);
}
.biz-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(11, 16, 32, .04);
}
.biz-hero-item { display: flex; flex-direction: column; gap: 8px; }
.biz-hero-item .k {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.biz-hero-item .v { color: var(--muted); font-size: 14px; line-height: 1.55; }

.biz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.biz-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 1px 3px rgba(11, 16, 32, .04);
}
.biz-card:hover { border-color: rgba(0, 80, 142, .35); transform: translateY(-3px); box-shadow: 0 14px 38px rgba(11, 16, 32, .1); }
.biz-card .biz-num {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--brand);
  letter-spacing: .2em;
  margin-bottom: 12px;
}
.biz-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.biz-card p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.7; }

.biz-dcs {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(11, 16, 32, .04);
}
.biz-dcs > h3 {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 22px;
  font-weight: 600;
}
.biz-dc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.biz-dc-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.biz-dc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 80, 142, .35);
}
.biz-dc-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.biz-dc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.biz-dc-card:hover .biz-dc-photo img { transform: scale(1.04); }
.biz-dc-body { padding: 18px 20px; }
.biz-dc-grid .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(31, 184, 255, .1);
  border: 1px solid rgba(31, 184, 255, .3);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.biz-dc-grid p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.6; }
.biz-dc-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
  background: var(--surface);
}
.biz-dc-table tr + tr th,
.biz-dc-table tr + tr td {
  border-top: 1px solid var(--border);
}
.biz-dc-table th,
.biz-dc-table td {
  padding: 10px 14px;
  vertical-align: top;
  text-align: left;
  line-height: 1.5;
}
.biz-dc-table th {
  width: 110px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.biz-dc-table td {
  color: var(--text);
}

@media (max-width: 960px) {
  .biz-hero { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .biz-dc-grid { grid-template-columns: 1fr; }
}

/* ---------- Company section ---------- */
.co-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.co-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.co-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(11, 16, 32, .04);
}
.co-panel h3 {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 20px;
  font-weight: 600;
}
.co-dl { display: grid; gap: 0; margin: 0; padding: 0; }
.co-dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  align-items: baseline;
}
.co-dl > div:first-child { border-top: 0; padding-top: 0; }
.co-dl dt {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .02em;
  font-weight: 600;
}
.co-dl dd { margin: 0; color: var(--text); }

.co-people {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.co-people li {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.co-people li:nth-child(-n+2) { border-top: 0; padding-top: 0; }
.co-people .role {
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--muted);
  margin-bottom: 2px;
}
.co-people .name { color: var(--text); font-weight: 500; }

.co-offices { display: grid; gap: 20px; }
.co-offices .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(31, 184, 255, .1);
  border: 1px solid rgba(31, 184, 255, .3);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.co-offices p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.55; }

.co-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.co-badges li {
  color: var(--text);
  font-size: 14px;
  padding: 10px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.co-badges li::before {
  content: "✓";
  color: var(--brand);
  margin-right: 10px;
  font-weight: 700;
}

.co-timeline { margin-bottom: 20px; }
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.timeline li:first-child { border-top: 0; padding-top: 0; }
.timeline .year {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--brand);
  font-size: 14px;
  letter-spacing: .06em;
}
.timeline .event { color: var(--text); font-size: 15px; }

.co-partners {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 960px) {
  .co-grid, .co-grid-2 { grid-template-columns: 1fr; }
  .co-people { grid-template-columns: 1fr; }
  .co-people li { border-top: 1px solid var(--border); padding-top: 8px; }
  .co-people li:first-child { border-top: 0; padding-top: 0; }
  .co-dl > div { grid-template-columns: 1fr; gap: 4px; }
  .timeline li { grid-template-columns: 64px 1fr; gap: 14px; }
}

/* ---------- Why ---------- */
.why {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(141, 176, 158, .15), transparent 70%),
    radial-gradient(1200px 500px at -10% 110%, rgba(0, 80, 142, .08), transparent 70%),
    var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(11, 16, 32, .04);
}
.why-item .num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--brand);
  letter-spacing: .2em;
}
.why-illust {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 80, 142, .08), rgba(141, 176, 158, .12));
  border: 1px solid rgba(0, 80, 142, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-illust img {
  height: 44px;
  width: auto;
}
.why-item h3 { font-size: 22px; margin: 8px 0 10px; letter-spacing: -0.01em; }
.why-item p { color: var(--muted); margin: 0; }

/* ---------- Datacenter ---------- */
.dc { background: var(--bg-alt); overflow: hidden; }
.dc-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.dc-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 12px;
}
.dc-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(11, 16, 32, .04);
}
.dc-list .year {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--brand);
  width: 70px;
  flex-shrink: 0;
}
.dc-list .loc { font-weight: 600; }
.dc-list .desc { color: var(--muted); font-size: 14px; }
.dc-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dc-image img { width: 100%; height: 100%; object-fit: cover; }
.dc-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(31, 184, 255, .15) 100%);
}

/* ---------- Japan map visualization ---------- */
.japan-map {
  position: relative;
  margin: 0 auto;
}
.japan-map-stage {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 1080 / 720;
}
.japan-map-bg,
.japan-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.japan-map-bg {
  object-fit: contain;
  opacity: .85;
}
.japan-map-overlay { pointer-events: none; }
.dc-marker-dot {
  fill: var(--brand);
}
.dc-marker-halo {
  fill: rgba(0, 80, 142, .18);
  animation: dc-pulse 2.4s var(--ease) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes dc-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-card {
  position: absolute;
  width: 220px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px 14px;
  box-shadow: 0 18px 36px rgba(11, 16, 32, .12), 0 1px 2px rgba(11, 16, 32, .04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.map-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(11, 16, 32, .16);
}
.map-card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--text);
  margin: 2px 4px 8px;
}
.map-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Card placement around the map (percent of stage 1080x720) */
.map-card--genkai     { top: 30%; left:  4%; }
.map-card--takamatsu  { top:  3%; left: 36%; }
.map-card--shika      { top: 10%; right: 4%; }
.map-card--ayagawa    { top: 78%; left: 36%; }
.dc-connectors line {
  stroke: #2a7fb8;
  stroke-width: 1.2;
  stroke-dasharray: 3 3;
  stroke-linecap: round;
  opacity: .85;
}

@media (max-width: 1100px) {
  .map-card { width: 200px; }
  .map-card img { height: 96px; }
}
@media (max-width: 900px) {
  .japan-map-stage { aspect-ratio: 720 / 920; max-width: 540px; }
  .map-card { position: relative; width: 100%; left: auto !important; right: auto !important; top: auto !important; }
  .japan-map-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    aspect-ratio: auto;
    padding-top: 360px; /* leave space for map at top */
  }
  .japan-map-bg, .japan-map-overlay {
    inset: 0 0 auto 0;
    height: 340px;
  }
  .map-card img { height: 110px; }
  .dc-connectors { display: none; }
}
@media (max-width: 540px) {
  .japan-map-stage { grid-template-columns: 1fr; }
}

/* ---------- Awards strip ---------- */
.awards {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.awards-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.awards-label {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.awards-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.awards-items span {
  color: var(--text);
  font-weight: 600;
  letter-spacing: .02em;
  opacity: .85;
}
.awards-items span::before {
  content: "●";
  color: var(--brand);
  margin-right: 10px;
  font-size: 10px;
  vertical-align: middle;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 90px 0;
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(0, 80, 142, .07), transparent 70%),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.cta-band p { color: var(--muted); margin: 0 0 28px; }
.cta-band .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.contact-form {
  max-width: 1040px;
  margin: 32px auto 0;
  text-align: left;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: 0 18px 50px rgba(11, 16, 32, .08);
}
.contact-form .formrun-embed {
  color: var(--text);
  min-height: 820px;
  display: block;
  width: 100%;
}
.contact-form .formrun-embed iframe {
  min-height: 820px;
  width: 100% !important;
  display: block;
}
.cta-secondary {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}
.cta-secondary a {
  color: var(--brand);
  font-weight: 600;
}
.cta-secondary a:hover { color: var(--text); }
@media (max-width: 700px) {
  .contact-form { padding: 22px; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-alt);
  padding: 64px 0 32px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.foot-grid h4 {
  color: var(--text);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-grid a:hover { color: var(--brand); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: .08em;
  flex-wrap: wrap;
  gap: 10px;
}
footer .brand img { height: 22px; }
footer p.desc { margin: 14px 0 0; max-width: 340px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .dc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links,
  .nav .cta.ghost,
  .nav-actions > .cta:not(.menu-toggle) { display: none; }
  .menu-toggle { display: inline-flex; }
  .cards { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

.nav.open .nav-links {
  display: flex;
  position: absolute;
  top: 96px; left: 0; right: 0;
  background: rgba(255,255,255,.98);
  flex-direction: column;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  gap: 18px;
}
