/* HONU LP — design tokens + styles */

:root {
  --c-ink:        #0A2E4F;       /* Deep ocean blue (text) */
  --c-ink-soft:   #2C4A6E;
  --c-ink-mute:   rgba(10, 46, 79, 0.6);
  --c-ink-faint:  rgba(10, 46, 79, 0.12);
  --c-bg:         #FFFFFF;
  --c-bg-soft:    #F7FAFC;
  --c-bg-tint:    #EEF6FA;
  --c-line:       rgba(10, 46, 79, 0.08);

  /* Brand cyan from logo */
  --c-cyan-50:   #E6F6FC;
  --c-cyan-100:  #C6EAF6;
  --c-cyan-300:  #8FD7EE;
  --c-cyan-500:  #5BC8E8;       /* logo light */
  --c-cyan-600:  #2EB1DE;
  --c-cyan-700:  #1AA3D8;       /* logo deep */
  --c-cyan-800:  #1487B8;

  --c-accent:    var(--c-cyan-700);
  --c-accent-soft: var(--c-cyan-500);

  --grad-brand: linear-gradient(135deg, #5BC8E8 0%, #1AA3D8 100%);
  --grad-deep:  linear-gradient(135deg, #0A2E4F 0%, #1AA3D8 60%, #5BC8E8 100%);

  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;
  --font-display: 'Inter', 'Noto Sans JP', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1240px;
  --pad-x: 32px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-1: 0 1px 2px rgba(10,46,79,0.04), 0 4px 12px rgba(10,46,79,0.04);
  --shadow-2: 0 4px 14px rgba(10,46,79,0.08), 0 16px 40px rgba(10,46,79,0.08);
  --shadow-cyan: 0 12px 40px rgba(26, 163, 216, 0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-jp);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  text-wrap: pretty;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--c-cyan-500); color: #fff; }

/* ─── Nav ──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background .3s, box-shadow .3s, padding .3s, backdrop-filter .3s;
}
.nav-scrolled {
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--c-line);
  padding: 12px var(--pad-x);
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.04em; font-size: 18px; }
.nav-brand img { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--c-ink-soft);
  position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--c-accent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-links a:hover { color: var(--c-ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; background: var(--c-bg-tint); border-radius: 999px; padding: 3px; gap: 0; }
.lang-switch button {
  appearance: none; border: 0; background: transparent;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--c-ink-mute); padding: 4px 10px; border-radius: 999px;
  cursor: pointer; transition: all .2s;
}
.lang-switch button.on { background: #fff; color: var(--c-ink); box-shadow: 0 1px 2px rgba(10,46,79,0.08); }
.nav-cta {
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 999px;
  background: var(--c-ink); color: #fff;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--c-cyan-700); transform: translateY(-1px); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  background: var(--grad-brand);
  color: #fff;
  padding: 14px 26px; border-radius: 999px;
  box-shadow: var(--shadow-cyan);
  transition: transform .2s, box-shadow .2s, filter .2s;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(26,163,216,0.35); filter: brightness(1.05); }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-primary.big { font-size: 16px; padding: 18px 36px; }
.btn-primary.light { background: #fff; color: var(--c-ink); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  background: transparent; color: var(--c-ink);
  padding: 13px 26px; border-radius: 999px;
  border: 1px solid var(--c-ink-faint);
  transition: all .2s;
}
.btn-secondary:hover { border-color: var(--c-ink); }
.btn-secondary.full { width: 100%; }

/* ─── Section base ─────────────────────────────────────────────────────── */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px var(--pad-x) 0;
}
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--c-cyan-700);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-label::before, .section-label::after {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: linear-gradient(to right, transparent, var(--c-cyan-700));
}
.section-label::after { background: linear-gradient(to left, transparent, var(--c-cyan-700)); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.section-lead { color: var(--c-ink-mute); font-size: 16px; margin: 0; }

[data-r] { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }
.feat-card[data-r], .price-card[data-r], .specs-table tr { opacity: 0; transform: translateY(24px); }
.feat-card[data-r].in, .price-card[data-r].in, .specs-table tr.in { opacity: 1; transform: none; }

.eyebrow {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em;
  color: var(--c-cyan-700);
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--c-cyan-300);
  border-radius: 999px;
  background: var(--c-cyan-50);
  margin-bottom: 28px;
}
.eyebrow.light { color: #5BC8E8; background: rgba(91,200,232,0.1); border-color: rgba(91,200,232,0.4); }

/* ─── Hero — common ────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.circuit-bg {
  position: absolute; inset: -10% -5% -10% -5%;
  width: 110%; height: 120%;
  pointer-events: none;
  opacity: 0.85;
  will-change: transform;
}

/* Variant 1: Split */
.hero-split { padding: 140px var(--pad-x) 120px; }
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
  position: relative;
}
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }
.hero-text { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.hero-title .line { display: block; }
.hero-title .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title.fb .accent { background: linear-gradient(135deg, #5BC8E8, #C6EAF6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead {
  font-size: 17px; color: var(--c-ink-soft);
  max-width: 540px; margin: 0 0 36px;
}
.hero-lead.light { color: rgba(255,255,255,0.78); }
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-cta-row.center { justify-content: center; }
.cta-sub { font-size: 13px; color: var(--c-ink-mute); }
.cta-sub.light { color: rgba(255,255,255,0.6); }
.hero-stats {
  margin-top: 60px;
  display: flex; gap: 48px;
}
.hero-stats.center { justify-content: center; align-items: center; }
.stat-divider { width: 1px; height: 36px; background: var(--c-ink-faint); }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-lbl { font-size: 12px; color: var(--c-ink-mute); margin-top: 2px; letter-spacing: 0.04em; }

/* Hero visual: 3D logo card */
.hero-visual { position: relative; z-index: 1; min-height: 480px; }
.logo-card {
  position: relative;
  background: linear-gradient(160deg, #FFFFFF 0%, #F0F9FD 100%);
  border: 1px solid var(--c-cyan-100);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow:
    0 1px 0 #fff inset,
    0 30px 80px rgba(26, 163, 216, 0.18),
    0 12px 40px rgba(10, 46, 79, 0.1);
  transition: transform .3s cubic-bezier(.22,.6,.36,1);
  transform-style: preserve-3d;
  overflow: hidden;
  aspect-ratio: 4 / 4.2;
  display: flex; flex-direction: column;
}
.logo-card-glow {
  position: absolute; inset: -50% -30% 30% -30%;
  background: radial-gradient(ellipse at 50% 30%, rgba(91,200,232,0.4), transparent 60%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: .8; } 50% { opacity: 1; transform: scale(1.05);} }
.logo-card-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(26,163,216,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26,163,216,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.logo-card-img {
  position: relative; z-index: 1;
  width: 65%; max-width: 320px; margin: auto;
  filter: drop-shadow(0 8px 24px rgba(26, 163, 216, 0.3));
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }
.logo-card-meta {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--c-ink-mute);
  padding: 14px 0 0; border-top: 1px dashed var(--c-cyan-100);
  margin-top: auto;
}
.logo-card-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d058;
  box-shadow: 0 0 0 4px rgba(52,208,88,0.15);
  animation: ledBlink 1.4s ease-in-out infinite;
}
@keyframes ledBlink { 0%,100%{opacity:1} 50%{opacity:.45} }

.float-chip {
  position: absolute;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  background: #fff; color: var(--c-cyan-700);
  border: 1px solid var(--c-cyan-100);
  padding: 8px 14px; border-radius: 999px;
  box-shadow: var(--shadow-2);
  animation: chipFloat 6s ease-in-out infinite;
}
.chip1 { top: 8%; right: -5%; animation-delay: 0s; }
.chip2 { top: 50%; left: -8%; animation-delay: 1s; }
.chip3 { bottom: 8%; right: 5%; animation-delay: 2s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

/* Variant 2: Centered */
.hero-centered { padding: 160px var(--pad-x) 140px; text-align: center; }
.hero-center-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.center-mark {
  width: 96px; margin: 0 auto 24px;
  filter: drop-shadow(0 12px 36px rgba(26,163,216,0.35));
  animation: floatY 5s ease-in-out infinite;
}
.hero-title-center {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.hero-title-center .line { display: block; }
.hero-title-center .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead-center {
  font-size: 18px; color: var(--c-ink-soft);
  max-width: 640px; margin: 0 auto 36px;
}

/* Variant 3: Fullbleed */
.hero-fullbleed {
  background: var(--grad-deep);
  color: #fff;
  padding: 140px var(--pad-x) 120px;
  position: relative;
}
.hero-fullbleed .circuit-bg { opacity: 0.4; }
.fb-backdrop { position: absolute; inset: 0; pointer-events: none; }
.fb-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 960px) { .fb-inner { grid-template-columns: 1fr; gap: 40px; } }
.fb-text { color: #fff; }
.fb-text .hero-title { color: #fff; }
.fb-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 460px; }
.fb-logo {
  width: 70%; max-width: 380px;
  filter: brightness(2.4) drop-shadow(0 0 60px rgba(91,200,232,0.7));
  position: relative; z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}
.fb-ring {
  position: absolute;
  width: 70%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(91,200,232,0.3);
  animation: spin 60s linear infinite;
}
.fb-ring::before {
  content: ""; position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%; background: #5BC8E8;
  box-shadow: 0 0 20px #5BC8E8;
}
.fb-ring.outer { width: 95%; border-color: rgba(91,200,232,0.15); animation-duration: 90s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.fb-stats {
  max-width: var(--container); margin: 80px auto 0;
  display: flex; justify-content: center; gap: 80px;
  position: relative; z-index: 2;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-fullbleed .stat-num { background: linear-gradient(135deg, #5BC8E8, #C6EAF6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-fullbleed .stat-lbl { color: rgba(255,255,255,0.6); }

/* ─── Features ─────────────────────────────────────────────────────────── */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 960px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  position: relative;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--c-cyan-300);
}
.feat-num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--c-cyan-700);
  margin-bottom: 22px;
}
.feat-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.feat-body { color: var(--c-ink-mute); font-size: 14px; margin: 0; line-height: 1.65; }
.feat-corner {
  position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(91,200,232,0.12), transparent 70%);
  pointer-events: none;
  opacity: 0; transition: opacity .35s;
}
.feat-card:hover .feat-corner { opacity: 1; }

/* ─── Specs ────────────────────────────────────────────────────────────── */
.specs-wrap {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center;
}
@media (max-width: 880px) { .specs-wrap { grid-template-columns: 1fr; gap: 40px; } }

.specs-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  perspective: 1400px;
}
.server-render {
  position: relative;
  width: 80%; aspect-ratio: 1;
  transform: rotateY(-14deg) rotateX(8deg);
  transform-style: preserve-3d;
}
.server-shell {
  position: relative; width: 100%; height: 100%;
  background: linear-gradient(180deg, #102C4A 0%, #0A1F36 100%);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 80px rgba(10, 46, 79, 0.35),
    0 0 0 1px rgba(26,163,216,0.2) inset;
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px; justify-content: center;
  overflow: hidden;
}
.server-shell::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to bottom, rgba(91,200,232,0.04) 1px, transparent 2px);
  background-size: 100% 4px;
  pointer-events: none;
}
.server-rack-line {
  display: flex; align-items: center; gap: 12px;
  animation: rackPulse 3s ease-in-out infinite;
}
@keyframes rackPulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.rack-led {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d058; box-shadow: 0 0 12px #34d058;
}
.rack-bar { flex: 1; height: 6px; background: linear-gradient(to right, #1AA3D8, transparent 80%); border-radius: 999px; }
.rack-bar.small { flex: 0.4; }
.server-badge {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.3em;
  color: rgba(91,200,232,0.55);
}
.server-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(26,163,216,0.3), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr {
  border-bottom: 1px solid var(--c-line);
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
}
.specs-table tr.in { opacity: 1; transform: none; }
.specs-table th, .specs-table td {
  text-align: left;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 500;
  vertical-align: top;
}
.specs-table th { color: var(--c-ink-mute); width: 40%; }
.specs-table td { color: var(--c-ink); font-family: var(--font-mono); font-size: 13px; }

/* ─── Pricing ──────────────────────────────────────────────────────────── */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: stretch;
}
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.price-card {
  position: relative;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.price-card.featured {
  background: linear-gradient(180deg, #0A2E4F 0%, #102C4A 100%);
  color: #fff;
  border-color: var(--c-cyan-700);
  box-shadow: 0 30px 80px rgba(10,46,79,0.25);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-tag {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  color: var(--c-cyan-700);
  margin-bottom: 10px;
}
.price-card.featured .price-tag {
  display: inline-block; align-self: flex-start;
  color: #0A2E4F; background: var(--grad-brand);
  padding: 4px 12px; border-radius: 999px;
}
.price-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.price-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800; letter-spacing: -0.02em;
  white-space: nowrap;
}
.price-usd {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--c-ink-mute);
  margin-top: 2px; margin-bottom: 4px;
}
.price-card.featured .price-usd { color: rgba(255,255,255,0.6); }
.price-card.featured .price-num {
  background: linear-gradient(135deg, #5BC8E8, #fff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-per { font-size: 14px; color: var(--c-ink-mute); }
.price-card.featured .price-per { color: rgba(255,255,255,0.6); }
.price-desc {
  font-size: 13px;
  color: var(--c-ink-mute);
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.price-card.featured .price-desc { color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.1); }
.price-feat {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.price-feat li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
}
.price-feat svg { flex-shrink: 0; margin-top: 4px; color: var(--c-cyan-700); }
.price-card.featured .price-feat svg { color: var(--c-cyan-500); }
.price-card .btn-secondary { margin-top: auto; }
.price-card.featured .btn-primary { margin-top: auto; }

/* ─── CTA Section ─────────────────────────────────────────────────────── */
.cta-section { padding-top: 140px; padding-bottom: 0; }
.cta-card {
  position: relative;
  background: var(--grad-deep);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(10,46,79,0.3);
}
.cta-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(91,200,232,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(91,200,232,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask: radial-gradient(ellipse at center, black 20%, transparent 80%);
  pointer-events: none;
}
.cta-card::before {
  content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,200,232,0.3), transparent 60%);
  pointer-events: none;
}
.cta-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 18px;
}
.cta-lead {
  position: relative;
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 600px; margin: 0 auto 40px;
}
.cta-actions {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.cta-tel {
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
}

/* ─── Footer ───────────────────────────────────────────────────────────── */
.footer {
  margin-top: 120px;
  padding: 80px var(--pad-x) 24px;
  border-top: 1px solid var(--c-line);
  background: var(--c-bg-soft);
}
.foot-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 60px;
}
@media (max-width: 760px) { .foot-inner { grid-template-columns: 1fr; gap: 40px; } }
.foot-brand-row { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: 0.04em; margin-bottom: 16px; }
.foot-brand-row img { width: 32px; height: 32px; }
.foot-brand p { font-size: 14px; color: var(--c-ink-mute); margin: 0 0 8px; max-width: 320px; }
.foot-addr { font-size: 12px !important; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 600px) { .foot-cols { grid-template-columns: repeat(2, 1fr); } }
.foot-col-t {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--c-cyan-700);
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 13px; color: var(--c-ink-soft); transition: color .2s; }
.foot-col a:hover { color: var(--c-cyan-700); }
.foot-bottom {
  max-width: var(--container); margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--c-ink-mute);
  flex-wrap: wrap; gap: 12px;
}
.foot-legal { display: flex; gap: 12px; align-items: center; }
.foot-legal a:hover { color: var(--c-cyan-700); }
.dot-sep { color: var(--c-ink-faint); }

/* ─── Legal pages (tokushoho / privacy) ──────────────────────────────── */
.legal-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 140px var(--pad-x) 80px;
}
.legal-shell .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--c-cyan-700);
  margin-bottom: 24px;
}
.legal-shell .back-link:hover { text-decoration: underline; }
.legal-shell h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.legal-shell .legal-sub {
  color: var(--c-ink-mute); font-size: 14px; margin: 0 0 40px;
  padding-bottom: 24px; border-bottom: 1px solid var(--c-line);
}
.legal-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 18px 16px;
  border-bottom: 1px solid var(--c-line);
}
.legal-table th {
  width: 32%;
  font-weight: 600;
  color: var(--c-ink);
  background: var(--c-bg-soft);
}
.legal-table td { color: var(--c-ink-soft); line-height: 1.7; }

.legal-prose section { margin-bottom: 36px; }
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  margin: 0 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--c-cyan-700);
}
.legal-prose p, .legal-prose li {
  font-size: 14px; color: var(--c-ink-soft); line-height: 1.8;
}
.legal-prose ol, .legal-prose ul {
  padding-left: 24px;
  margin: 8px 0;
}
.legal-prose ol li, .legal-prose ul li { margin-bottom: 4px; }

@media (max-width: 600px) {
  .legal-table th, .legal-table td { display: block; width: 100%; padding: 12px 14px; }
  .legal-table th { background: var(--c-bg-soft); border-bottom: none; }
  .legal-table td { padding-top: 6px; padding-bottom: 18px; }
}
