/* =========================================
   ACTIVATORS REAL ESTATE
   Daytime Ballpark × Sunny Heritage  (v2 / 2026-05-30)
   ========================================= */
:root {
  /* ── Background system (LIGHT) ── */
  --bg:           #FFFFFF;
  --bg-deep:      #F4F7FB;
  --bg-band:      #E8EEF7;
  --bg-rim:       #D6E0EE;

  /* ── Paper / warm accent (cards) ── */
  --cream:        #F8F0D8;
  --cream-deep:   #E8D9A8;
  --paper:        #FAF3DE;
  --white:        #FFFFFF;

  /* ── Text (dark on light) ── */
  --ink:          #14253C;
  --ink-strong:   #0A1F3A;
  --ink-soft:     rgba(20, 37, 60, 0.78);
  --paper-text:   #14253C;
  --paper-mute:   rgba(20, 37, 60, 0.62);
  --paper-faint:  rgba(20, 37, 60, 0.36);

  /* ── Accents (brighter blue) ── */
  --navy:         #1E5DB8;
  --navy-deep:    #0F3B7C;
  --sky:          #3B82F6;
  --sky-bright:   #60A5FA;
  --sky-pale:     #DBE9FB;
  --sky-soft:     rgba(59, 130, 246, 0.10);
  --sky-glow:     rgba(59, 130, 246, 0.18);
  --red:          #C32834;
  --red-deep:     #8C1620;
  --gold:         #C99B3D;
  --gold-deep:    #9B7A38;
  --gold-soft:    rgba(201, 155, 61, 0.18);

  /* ── Lines / grids (dark on light) ── */
  --grid:         rgba(20, 37, 60, 0.08);
  --grid-strong:  rgba(20, 37, 60, 0.18);
  --grid-gold:    rgba(201, 155, 61, 0.42);

  --shadow-card:  0 1px 3px rgba(15, 30, 60, 0.06), 0 18px 40px -20px rgba(15, 30, 60, 0.18);
  --shadow-hover: 0 2px 6px rgba(15, 30, 60, 0.10), 0 28px 56px -20px rgba(15, 30, 60, 0.22);
  --shadow-plate: 0 36px 72px -28px rgba(15, 30, 60, 0.22), 0 8px 24px -16px rgba(15, 30, 60, 0.12);

  --radius:       4px;
  --radius-lg:    8px;
  --hdr-h:        80px;
  --max-w:        1200px;
  --ease:         0.36s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Type stack ── */
  --font-display: 'Bebas Neue', 'Oswald', 'Noto Sans JP', sans-serif;
  --font-serif:   'Playfair Display', 'Noto Serif JP', serif;
  --font-headline:'Oswald', 'Noto Sans JP', sans-serif;
  --font-en:      'Inter', sans-serif;
  --font-jp:      'Noto Sans JP', 'Inter', sans-serif;
  --font-jp-serif:'Noto Serif JP', 'Playfair Display', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--hdr-h);
  background: var(--bg);
}
body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--paper-text);
  line-height: 1.9;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; transition: color var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }
small { font-size: 0.78em; opacity: 0.78; }
strong { font-weight: 700; }
::selection { background: var(--sky); color: var(--white); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.hide-sp { display: inline; }

/* 助詞 — サイズだけ抑え、色は親見出しと揃える */
.pp {
  font-size: 0.78em;
  font-weight: inherit;
  color: inherit;
  margin: 0 0.04em;
}

/* =========================================
   背景 — Daytime sky + pinstripes + grain (light)
   ========================================= */
.bg-pinstripe {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    /* Daytime sky wash from top */
    radial-gradient(ellipse 120% 60% at 50% -10%, var(--sky-glow), transparent 60%),
    /* Subtle warm pool from bottom */
    radial-gradient(ellipse 80% 40% at 50% 110%, rgba(201, 155, 61, 0.05), transparent 60%),
    /* Vertical pinstripes (dark on light) */
    linear-gradient(90deg,
      rgba(20, 37, 60, 0.018) 0px,
      rgba(20, 37, 60, 0.018) 1px,
      transparent 1px,
      transparent 18px);
  opacity: 1;
}
/* Subtle film grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.62 0 0 0 0 0.78 0 0 0 0.45 0'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.04;
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }

/* =========================================
   ヘッダー
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--hdr-h);
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.site-header.scrolled {
  background: var(--navy);
  border-bottom-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 28px -16px rgba(10, 24, 56, 0.45);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 30%, rgba(255, 255, 255, 0.55) 70%, transparent 100%);
  opacity: 0.5;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-emblem {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 14px -6px rgba(15, 30, 60, 0.25);
}
.brand-emblem img { width: 100%; height: 100%; object-fit: contain; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.14em;
  color: var(--white);
}
.brand-sub {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  font-family: var(--font-headline);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
  position: relative;
}
.main-nav > a:hover { color: var(--white); }
.main-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-num {
  font-family: var(--font-display);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}
.nav-cta {
  margin-left: 12px;
  padding: 11px 22px !important;
  background: var(--white);
  color: var(--navy) !important;
  border: 1px solid var(--white);
  border-radius: var(--radius) !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  align-items: center !important;
  gap: 8px !important;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.nav-cta-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}
.nav-cta:hover {
  background: var(--sky-pale);
  color: var(--navy-deep) !important;
  border-color: var(--sky-pale);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px rgba(10, 24, 56, 0.55);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 1001; width: 34px;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.menu-toggle.open span:nth-child(2) { transform: rotate(-45deg) translate(3px, -3px); }
.nav-contact-sp { display: none; }

/* =========================================
   ボタン
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-headline);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all var(--ease);
  text-decoration: none; line-height: 1;
  white-space: nowrap;
  position: relative;
}
.btn-icon { width: 16px; height: 16px; }
.btn-primary {
  background: var(--sky);
  color: var(--white);
  border: 1px solid var(--sky);
  box-shadow: 0 2px 0 var(--navy), 0 12px 28px -14px rgba(30, 93, 184, 0.4);
}
.btn-primary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--navy-deep), 0 18px 36px -14px rgba(30, 93, 184, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--navy);
  letter-spacing: 0.14em;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
/* カード（クリーム面）上ではダークテーマに反転 */
.card .btn-outline,
.agent-cta .btn-outline,
.biz-feature .btn-outline {
  color: var(--navy-deep);
  border-color: rgba(20, 37, 60, 0.45);
}
.card .btn-outline:hover,
.agent-cta .btn-outline:hover,
.biz-feature .btn-outline:hover {
  background: var(--navy-deep);
  color: var(--cream);
  border-color: var(--navy-deep);
}
.btn-block { display: flex; width: 100%; }

/* =========================================
   ヒーロー  —  Editorial cover × Hall-of-fame medallion
   ========================================= */
.hero {
  position: relative;
  padding-top: var(--hdr-h);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: var(--hdr-h); left: 0; right: 0;
  height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--sky-soft), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-canvas {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 64px;
  align-items: stretch;
}

/* ── LEFT: Editorial typography ── */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 80px;
  position: relative;
}

.hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.05s forwards;
}
.kicker-mark {
  width: 9px;
  height: 9px;
  background: var(--sky);
  flex-shrink: 0;
  transform: rotate(45deg);
}
.kicker-line { font-weight: 600; color: var(--ink); letter-spacing: 0.22em; }
.kicker-sep {
  width: 1px;
  height: 14px;
  background: var(--grid-strong);
  flex-shrink: 0;
}
.kicker-locale { font-style: italic; font-weight: 400; color: var(--ink-soft); }

.hero-headline {
  font-family: var(--font-jp-serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  line-height: 1.22;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0 0 24px;
}
.hl-line {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  animation: heroLineUp 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hl-line:nth-of-type(1) { animation-delay: 0.18s; }
.hl-line:nth-of-type(2) { animation-delay: 0.34s; }
.hl-line:nth-of-type(3) { animation-delay: 0.5s; }
.hl-accent { color: var(--navy); position: relative; }

/* Editorial double rule */
.hero-rule {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--sky);
  margin: 6px 0 28px;
  position: relative;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.66s forwards;
}
.hero-rule::after {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 36px;
  height: 1px;
  background: var(--ink-soft);
  opacity: 0.4;
}

.hero-sub {
  font-size: 0.98rem;
  line-height: 2.1;
  color: var(--ink-soft);
  margin: 0 0 40px;
  max-width: 520px;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.78s forwards;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.9s forwards;
}

/* ── RIGHT: Daytime skyline plate with medallion ── */
.hero-plate {
  position: relative;
  background: url("../images/skyline.svg") no-repeat bottom center / cover,
    linear-gradient(180deg, #EAF2FC 0%, #F4F8FD 60%, #FFFFFF 100%);
  color: var(--ink);
  padding: 56px 36px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateX(28px);
  animation: heroPlateIn 0.95s cubic-bezier(0.16, 0.84, 0.18, 1) 0.15s forwards;
  border-radius: 2px;
  box-shadow: var(--shadow-plate);
  border: 1px solid var(--grid);
}
/* Top edge sky tint */
.hero-plate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(59, 130, 246, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Sky-blue top piping line */
.hero-plate::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--sky) 20%, var(--sky) 80%, transparent 100%);
  z-index: 2;
}

.plate-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0;
  z-index: 2;
}
.plate-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

.plate-medallion {
  position: relative;
  z-index: 2;
  width: clamp(180px, 20vw, 230px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 3px var(--white),
    0 0 0 5px var(--sky),
    0 0 0 7px var(--white),
    0 0 40px -4px rgba(59, 130, 246, 0.35),
    0 24px 48px -16px rgba(15, 30, 60, 0.35);
}
.plate-medallion img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plate-footer {
  text-align: center;
  z-index: 2;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 22px;
  border-radius: 2px;
  border: 1px solid var(--grid);
}
.plate-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin: 0 0 12px;
}
.plate-license {
  font-family: var(--font-jp);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--grid);
  display: inline-block;
}
.plate-license .num {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
}

@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes heroLineUp { to { opacity: 1; transform: translateY(0); } }
@keyframes heroPlateIn { to { opacity: 1; transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero-kicker, .hl-line, .hero-rule, .hero-sub, .hero-cta, .hero-plate {
    animation: none; opacity: 1; transform: none;
  }
}

/* =========================================
   スコアボード — Daytime panel (light)
   ========================================= */
.scoreboard {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 50%, rgba(59, 130, 246, 0.06), transparent 70%),
    var(--bg-deep);
  color: var(--ink);
  border-top: 1px solid var(--grid-strong);
  border-bottom: 1px solid var(--grid);
}
.scoreboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--sky) 30%, var(--sky) 70%, transparent 100%);
  opacity: 0.5;
}
.scoreboard-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.score-cell {
  padding: 32px 28px;
  border-right: 1px dashed var(--grid-strong);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.score-cell:last-child { border-right: none; }
.score-label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sky);
}
.score-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.score-unit {
  font-family: var(--font-jp);
  font-size: 0.46em;
  font-weight: 700;
  margin-left: 4px;
  letter-spacing: 0;
  color: var(--ink-soft);
}
.score-meta {
  font-family: var(--font-jp);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-soft);
}

/* =========================================
   セクション共通
   ========================================= */
.section {
  padding: 130px 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--grid); }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  margin-bottom: 72px;
  align-items: end;
  position: relative;
}
.section-head::after {
  content: '';
  position: absolute;
  bottom: -24px; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--sky) 220px, var(--grid) 220px, var(--grid) 100%);
  opacity: 0.5;
}
.section-head::before {
  content: '';
  position: absolute;
  bottom: -24px; left: 0;
  width: 180px;
  height: 3px;
  background: var(--sky);
  z-index: 1;
}
.section-num {
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 9.2vw, 7.8rem);
  line-height: 0.82;
  color: transparent;
  -webkit-text-stroke: 2.8px var(--navy);
  text-stroke: 2.8px var(--navy);
  letter-spacing: 0em;
  flex-shrink: 0;
}
.section-titles { display: flex; flex-direction: column; gap: 8px; }
.section-eyebrow {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--sky);
}
.section-title {
  font-family: var(--font-jp-serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* =========================================
   カード共通 — Parchment exhibit plaque
   ========================================= */
.card {
  position: relative;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 40px 30px;
  border: 1px solid var(--grid);
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-stitch {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 56%, var(--sky) 56%, var(--sky) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-grid { display: grid; gap: 28px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--sky);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  position: relative;
}
.card-num::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sky);
  margin-top: 14px;
  opacity: 0.5;
}
.card-title {
  font-family: var(--font-jp-serif);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.card-text {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* =========================================
   想い  —  Origin statement
   ========================================= */

.origin-statement {
  max-width: 760px;
  margin: 40px auto 80px;
  padding: 0;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
}
.origin-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.origin-line {
  margin: 0;
  font-family: var(--font-jp-serif);
  font-size: 1.06rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: var(--paper-text);
}
.origin-pivot {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin: 10px 0;
  font-family: var(--font-jp-serif);
}
.word-mark {
  font-family: var(--font-display);
  font-size: 1.1em;
  letter-spacing: 0.16em;
  color: var(--navy);
  padding: 0 0.06em;
}
.origin-emp {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  white-space: nowrap;
  padding: 0 0.04em;
}
.origin-emp::after {
  content: '';
  position: absolute;
  left: -0.02em; right: -0.02em;
  bottom: -3px;
  height: 6px;
  background: var(--sky-pale);
  opacity: 0.9;
  z-index: -1;
  border-radius: 1px;
}
.origin-pivot .origin-emp::after {
  height: 8px;
  bottom: -4px;
  opacity: 0.85;
}
.origin-sign {
  margin: 36px 0 0;
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-style: italic;
}

/* =========================================
   事業 — Main feature plaque + sub roster
   ========================================= */
.business { background: var(--bg-band); position: relative; }
.business::before, .business::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--grid-gold) 50%, transparent 100%);
}
.business::before { top: 0; }
.business::after { bottom: 0; }

.biz-feature {
  position: relative;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 60px 52px;
  margin-bottom: 36px;
  border: 1px solid var(--grid);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.biz-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 60%, var(--sky) 60%, var(--sky) 100%);
}
.biz-feature-body {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: end;
}
.biz-feature-eyebrow {
  font-family: var(--font-en);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--sky);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.biz-feature-title {
  font-family: var(--font-jp-serif);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.biz-feature-lead {
  font-size: 0.98rem;
  line-height: 2.05;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
/* Lineup-card style: numbered roster with subtle dividers */
.biz-feature-list {
  counter-reset: bfl;
  display: flex;
  flex-direction: column;
}
.biz-feature-list li {
  counter-increment: bfl;
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  row-gap: 4px;
  padding: 20px 4px;
  background: none;
  border: none;
  border-top: 1px dashed rgba(20, 37, 60, 0.22);
}
.biz-feature-list li:last-child {
  border-bottom: 1px dashed rgba(20, 37, 60, 0.22);
}
.biz-feature-list li::before {
  content: counter(bfl, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--sky);
  letter-spacing: 0.02em;
  line-height: 1;
}
.biz-feature-list li span {
  grid-column: 2;
  grid-row: 1;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-jp-serif);
  letter-spacing: 0.04em;
}
.biz-feature-list li small {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: 1;
  line-height: 1.75;
}
.biz-feature-side { display: flex; flex-direction: column; gap: 22px; }

.badge-license {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  position: relative;
  border: 1px solid var(--sky);
  box-shadow:
    inset 0 0 0 4px var(--sky-pale),
    0 12px 28px -16px rgba(15, 30, 60, 0.18);
}
.badge-license::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
  opacity: 0.5;
}
.badge-eyebrow {
  font-family: var(--font-en);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--sky);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.badge-main {
  font-family: var(--font-jp-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.badge-num {
  font-family: var(--font-en);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--grid-strong);
}
.badge-quals { display: flex; flex-direction: column; gap: 6px; }
.badge-quals li {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.badge-quals li::before {
  content: '◆';
  color: var(--sky);
  margin-right: 8px;
  font-size: 0.7em;
}

/* Sub roster — ACTS / hatten */
.biz-subs { margin-top: 28px; }
.biz-sub { padding: 44px 32px; display: flex; flex-direction: column; }
.biz-sub-eyebrow {
  font-family: var(--font-en);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--sky);
  margin-bottom: 12px;
  margin-top: 6px;
  text-transform: uppercase;
}
.biz-sub-title {
  font-family: var(--font-jp-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.brand-pill {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  border-radius: 2px;
  background: var(--sky);
  color: var(--white);
  font-style: normal;
}
.brand-pill--main { background: var(--navy); color: var(--white); position: relative; top: 2px; }
.brand-pill--acts { background: var(--white); color: var(--navy); border: 1px solid var(--navy); }
.brand-pill--hatten { background: #2A5644; color: var(--white); }
.biz-sub-lead {
  font-size: 0.94rem;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.biz-sub-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px dashed rgba(20, 37, 60, 0.18);
  flex-grow: 1;
}
.biz-sub-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem;
  color: var(--ink);
  font-family: var(--font-jp);
}
.biz-sub-list .lucide {
  width: 16px; height: 16px;
  color: var(--sky); flex-shrink: 0;
}
.biz-sub-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-headline);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--sky);
}
.biz-sub-link:hover { color: var(--sky); }
.biz-sub-link small {
  font-family: var(--font-jp);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-left: 4px;
  border-bottom: none;
}

/* =========================================
   エージェント  —  Roster section
   ========================================= */
.agent {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--sky-soft), transparent 65%),
    var(--bg-deep);
  position: relative;
}
.agent .section-num { -webkit-text-stroke-color: var(--navy); color: transparent; }

.agent-pitch { margin-bottom: 56px; max-width: 820px; }
.agent-lead {
  font-size: 1.06rem;
  line-height: 2.15;
  color: var(--ink-soft);
  font-family: var(--font-jp-serif);
}

.agent-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 56px;
  position: relative;
  border: 1px solid var(--grid);
  box-shadow: var(--shadow-card);
}
.agent-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
}
.agent-stats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grid);
}
.stat-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid var(--grid);
  color: var(--ink);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.stat-num small {
  font-family: var(--font-en);
  font-size: 0.4em;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.7;
  margin-left: 6px;
  letter-spacing: 0;
}
.stat-label {
  font-family: var(--font-jp);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

.agent-points { margin-bottom: 56px; }
.agent-card { padding: 40px 30px; text-align: center; }
.agent-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--sky-pale);
  color: var(--navy);
  margin-bottom: 22px;
  box-shadow:
    0 0 0 1px var(--sky),
    0 0 0 4px rgba(59, 130, 246, 0.10);
}
.agent-card-icon .lucide { width: 24px; height: 24px; }
.agent-cta {
  position: relative;
  text-align: center;
  padding: 72px 36px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.10), transparent 65%),
    var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--sky);
  box-shadow:
    inset 0 0 60px -30px rgba(59, 130, 246, 0.10),
    var(--shadow-plate);
  overflow: hidden;
  isolation: isolate;
}
.agent-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg,
    rgba(20, 37, 60, 0.02) 0px,
    rgba(20, 37, 60, 0.02) 1px,
    transparent 1px,
    transparent 16px);
  pointer-events: none;
  z-index: 0;
}
/* 4 sky corner brackets via masked border */
.agent-cta::before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 2px solid var(--sky);
  pointer-events: none;
  z-index: 1;
  -webkit-mask:
    linear-gradient(#000 0 0) top left / 38px 38px no-repeat,
    linear-gradient(#000 0 0) top right / 38px 38px no-repeat,
    linear-gradient(#000 0 0) bottom left / 38px 38px no-repeat,
    linear-gradient(#000 0 0) bottom right / 38px 38px no-repeat;
  mask:
    linear-gradient(#000 0 0) top left / 38px 38px no-repeat,
    linear-gradient(#000 0 0) top right / 38px 38px no-repeat,
    linear-gradient(#000 0 0) bottom left / 38px 38px no-repeat,
    linear-gradient(#000 0 0) bottom right / 38px 38px no-repeat;
}
.agent-cta > * { position: relative; z-index: 2; }

.agent-cta-eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.34em;
  color: var(--sky);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.agent-cta-title {
  font-family: var(--font-jp-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink);
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  line-height: 1.45;
}
.agent-cta-note {
  font-size: 0.96rem;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 560px;
  font-family: var(--font-jp-serif);
}

/* =========================================
   会社概要  —  Lineup card
   ========================================= */
.company { background: var(--bg-band); }
.company-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px;
  align-items: start;
}
.company-table-wrap { padding: 0; overflow: hidden; }
.company-table th, .company-table td {
  padding: 20px 28px;
  font-size: 0.94rem;
  text-align: left;
  border-bottom: 1px dashed rgba(20, 37, 60, 0.18);
  vertical-align: top;
  line-height: 1.75;
}
.company-table th {
  font-family: var(--font-headline);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  width: 160px;
  white-space: nowrap;
  background: var(--sky-pale);
}
.company-table td { color: var(--ink); font-weight: 400; font-family: var(--font-jp); }
.company-table td a { color: var(--navy); border-bottom: 1px dotted var(--sky); }
.company-table td a:hover { color: var(--red); border-bottom-color: var(--red); }
.company-table td small {
  display: block;
  font-family: var(--font-en);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--sky);
  margin-top: 4px;
  opacity: 1;
}
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-map {
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 10px;
  text-align: center;
}
.map-eyebrow {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--sky);
  text-transform: uppercase;
  margin-top: 10px;
}
.map-eyebrow--alt {
  padding-top: 18px;
  margin-top: 10px;
  border-top: 1px dashed rgba(20, 37, 60, 0.18);
}
.map-address {
  font-size: 0.94rem;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: var(--font-jp);
}

/* =========================================
   お問い合わせ
   ========================================= */
.contact-lead {
  max-width: 720px; margin: 0 auto 56px;
  text-align: center;
  font-size: 1rem;
  line-height: 2.05;
  color: var(--ink-soft);
  font-family: var(--font-jp-serif);
}
a.contact-card { display: flex; flex-direction: column; text-decoration: none; }
.contact-card {
  padding: 44px 26px;
  text-align: center;
  align-items: center;
}
.contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--sky-pale);
  color: var(--navy);
  margin-bottom: 20px;
  transition: transform var(--ease), background var(--ease), color var(--ease);
  box-shadow:
    0 0 0 1px var(--sky),
    0 0 0 4px rgba(59, 130, 246, 0.08);
}
.contact-card:hover .contact-icon {
  background: var(--sky);
  color: var(--white);
  transform: scale(1.06);
}
.contact-icon .lucide { width: 22px; height: 22px; }
.contact-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--sky);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.contact-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* =========================================
   フッター
   ========================================= */
.site-footer {
  background: var(--sky);
  color: var(--white);
  padding: 88px 0 0;
  margin-top: 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 18%, rgba(255, 255, 255, 0.55) 82%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}
.footer-emblem {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 20px -8px rgba(15, 30, 60, 0.22);
  margin-bottom: 22px;
}
.footer-emblem img { width: 100%; height: 100%; object-fit: contain; }
.footer-name {
  font-family: var(--font-jp-serif);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.footer-en {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}
.footer-address {
  font-size: 0.84rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
}
.footer-address a { color: rgba(255, 255, 255, 0.88); }
.footer-address a:hover { color: var(--white); }
.footer-license {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-license .lucide { width: 16px; height: 16px; color: var(--white); }
.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.06em;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav .nav-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.9;
}
.footer-ext { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-en);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.12em;
}
.footer-motto {
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.28em;
  color: var(--white);
}

/* =========================================
   フェードイン
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.card-grid--3 .fade-in:nth-child(2) { transition-delay: 0.1s; }
.card-grid--3 .fade-in:nth-child(3) { transition-delay: 0.2s; }
.card-grid--2 .fade-in:nth-child(2) { transition-delay: 0.1s; }

/* =========================================
   レスポンシブ
   ========================================= */
@media (max-width: 1024px) {
  .hero-canvas { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px 0; }
  .hero-plate { order: -1; min-height: auto; padding: 56px 28px 64px; }
  .plate-medallion { width: min(230px, 60vw); }
  .hero-text { padding: 16px 0 64px; justify-content: flex-start; }
  .hero-headline { font-size: clamp(2.4rem, 7vw, 3.6rem); }
  .biz-feature-body { grid-template-columns: 1fr; gap: 40px; }
  .biz-feature { padding: 44px 32px; }
  .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .scoreboard-inner { grid-template-columns: repeat(2, 1fr); }
  .score-cell:nth-child(2) { border-right: none; }
  .score-cell:nth-child(1), .score-cell:nth-child(2) {
    border-bottom: 1px dashed var(--grid);
  }
  .agent-stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(202, 168, 98, 0.18); }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --hdr-h: 64px; }
  .container { padding: 0 22px; }
  .hide-sp { display: none; }
  .header-inner { padding: 0 22px; }
  .brand-name { font-size: 1.25rem; }
  .brand-sub { font-size: 0.56rem; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: var(--navy);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 0;
    transition: right var(--ease);
    padding: 80px 24px 24px;
  }
  .main-nav.open { right: 0; }
  .main-nav > a {
    width: 100%; max-width: 320px;
    padding: 18px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    justify-content: center;
  }
  .main-nav .nav-cta {
    margin-top: 24px;
    border: 1px solid var(--white);
    padding: 14px 32px !important;
  }
  .nav-contact-sp {
    display: flex; flex-direction: column; gap: 14px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.32);
    width: 100%; max-width: 320px;
    align-items: center;
  }
  .nav-contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.94rem;
    color: var(--white);
  }
  .nav-contact-item .lucide { width: 18px; height: 18px; color: var(--white); }

  .hero { padding-top: calc(var(--hdr-h) + 24px); }
  .hero-canvas { gap: 28px; padding: 28px 22px 0; }
  .hero-text { padding: 12px 0 48px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 22px; }
  .hero-kicker { font-size: 0.64rem; gap: 10px; margin-bottom: 26px; letter-spacing: 0.22em; }
  .kicker-sep { display: none; }
  .hero-rule { width: 56px; margin: 4px 0 22px; }
  .hero-rule::after { width: 24px; }
  .hero-sub { font-size: 0.92rem; line-height: 2.0; margin-bottom: 32px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .hero-plate { padding: 44px 24px 52px; gap: 24px; }
  .plate-tag { font-size: 0.82rem; letter-spacing: 0.24em; gap: 9px; }
  .plate-medallion { width: min(200px, 55vw); }
  .plate-name { font-size: 1.32rem; letter-spacing: 0.18em; }
  .plate-license { font-size: 0.7rem; }

  .scoreboard-inner { grid-template-columns: 1fr; }
  .score-cell { border-right: none; border-bottom: 1px dashed var(--grid); padding: 22px; }
  .score-cell:last-child { border-bottom: none; }
  .score-value { font-size: 2.2rem; }

  .section { padding: 92px 0; }
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 56px; }
  .section-head::after, .section-head::before { bottom: -16px; }
  .section-num { font-size: 4.6rem; }
  .section-title { font-size: 1.7rem; }

  .origin-statement { margin-bottom: 56px; }
  .origin-line { font-size: 0.96rem; line-height: 2.05; }
  .origin-pivot { font-size: 1.2rem; }

  .biz-feature { padding: 38px 24px; }
  .biz-feature-title { font-size: 1.42rem; }

  .agent-cta { padding: 30px 22px; }

  .company-table th, .company-table td { padding: 16px 18px; font-size: 0.88rem; }
  .company-table th { width: 112px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .biz-sub-title { font-size: 1.18rem; }
}
