@charset "UTF-8";

/* =============================================================
   ミコミAD LP  —  Design System
   Concept: Precision targeting. Navy + signal blue, reticle motif.
   ============================================================= */

:root {
  /* ---- Color ---- */
  --ink: #0a1330; /* deepest navy — hero bg / footer */
  --ink-2: #0e1b44; /* raised navy panel */
  --ink-3: #16265c; /* borders / lines on dark */
  --navy: #10265f; /* mid navy text on light accents */
  --signal: #2c6bff; /* primary signal blue */
  --signal-600: #1d53e0; /* pressed */
  --sky: #6fa2ff; /* light blue */
  --reticle: #34e4ce; /* electric mint — targeting signal accent */
  --amber: #ff7a33; /* CTA / conversion accent */
  --amber-600: #f0631a;

  --paper: #f3f6fc; /* page background */
  --paper-2: #e9effa; /* alt band */
  --card: #ffffff;
  --line: #dee6f4; /* hairline on light */
  --line-2: #c9d6ee;

  --text: #0f1b3d; /* body text on light */
  --text-soft: #465170; /* secondary */
  --text-mute: #8390ae; /* tertiary */
  --on-dark: #eaf0ff; /* body on dark */
  --on-dark-soft: #9fb2de;

  /* ---- Type ---- */
  --f-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --f-body: "Noto Sans JP", sans-serif;
  --f-mono: "Space Mono", ui-monospace, monospace;

  /* ---- Metrics ---- */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -24px rgba(16, 38, 95, 0.35);
  --shadow-lg: 0 40px 90px -40px rgba(10, 19, 48, 0.5);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--text);
  background: var(--paper);
  line-height: 1.85;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.01em;
  margin: 0;
}

/* ---- Layout helpers ---- */
.wrap {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
}
.section {
  padding-block: clamp(64px, 9vw, 128px);
  position: relative;
}
.section--tight {
  padding-block: clamp(52px, 7vw, 96px);
}
.band {
  background: var(--paper);
}
.band--alt {
  background: var(--paper-2);
}
.band--ink {
  background: var(--ink);
  color: var(--on-dark);
}

/* ---- Eyebrow / section head ---- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.band--ink .eyebrow {
  color: var(--reticle);
}

.s-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.s-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.015em;
}
.s-head p {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin: 18px 0 0;
}
.band--ink .s-head p {
  color: var(--on-dark-soft);
}
.s-head .accent {
  color: var(--signal);
}
.band--ink .s-head .accent {
  color: var(--reticle);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --_bg: var(--signal);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--_bg);
  color: var(--_fg);
  border: none;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.2s;
  box-shadow: 0 12px 30px -12px rgba(44, 107, 255, 0.55);
  white-space: nowrap;
}
.btn svg {
  width: 1.05em;
  height: 1.05em;
  transition: transform 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 3px solid var(--reticle);
  outline-offset: 3px;
}

.btn--cta {
  --_bg: var(--amber);
  box-shadow: 0 14px 34px -12px rgba(255, 122, 51, 0.6);
}
.btn--cta:hover {
  --_bg: var(--amber-600);
}
.btn--ghost {
  --_bg: transparent;
  --_fg: #fff;
  box-shadow: none;
  border: 1.5px solid var(--line-2);
}
.btn--ghost:hover {
  --_fg: var(--signal);
  border-color: var(--signal);
}
.band--ink .btn--ghost,
.hero .btn--ghost {
  --_fg: #fff;
  border-color: #fff;
}
.band--ink .btn--ghost:hover,
.hero .btn--ghost:hover {
  --_fg: #fff;
  border-color: var(--reticle);
}
.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 19, 48, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
}
/* Full logotype (inline SVG) — navy parts turn white on dark bg, orange kept */
.brand__logo {
  height: 28px;
  width: auto;
  flex: none;
  display: block;
}
.brand__logo .lg-navy {
  fill: #fff;
}
.brand__logo .lg-orange {
  fill: var(--amber);
}
.brand__name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.16rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.brand__tag {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--on-dark-soft);
  text-transform: uppercase;
  margin-top: 1px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--on-dark-soft);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover {
  color: #fff;
}
.header-cta {
  display: inline-flex;
  padding: 10px 30px;
}
.nav-toggle {
  display: none;
}

@media (max-width: 900px) {
  .nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: relative;
    transition: 0.25s var(--ease);
  }
  .nav-toggle span::before {
    position: absolute;
    top: -6px;
  }
  .nav-toggle span::after {
    position: absolute;
    top: 6px;
  }
  .nav-open .nav-toggle span {
    background: transparent;
  }
  .nav-open .nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-open .nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .mobile-nav {
    position: fixed;
    inset: 68px 0 0;
    z-index: 55;
    background: var(--ink);
    padding: 32px var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s var(--ease);
  }
  .nav-open .mobile-nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav a {
    color: var(--on-dark);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-3);
  }
  .mobile-nav .btn {
    margin-top: 24px;
    justify-content: center;
  }
}
@media (min-width: 901px) {
  .mobile-nav {
    display: none;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    120% 90% at 78% 12%,
    #12235a 0%,
    #0a1330 46%,
    #08102a 100%
  );
  color: var(--on-dark);
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 162, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 162, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 80% at 70% 30%, #000 30%, transparent 78%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero__ping {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--reticle);
  border: 1px solid rgba(52, 228, 206, 0.32);
  background: rgba(52, 228, 206, 0.07);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero__ping .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--reticle);
  box-shadow: 0 0 0 0 rgba(52, 228, 206, 0.6);
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 228, 206, 0.55);
  }
  70%,
  100% {
    box-shadow: 0 0 0 10px rgba(52, 228, 206, 0);
  }
}

.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.85rem);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 .hl {
  position: relative;
  color: var(--reticle);
  white-space: nowrap;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.06em;
  height: 0.16em;
  background: linear-gradient(
    90deg,
    rgba(52, 228, 206, 0),
    rgba(52, 228, 206, 0.5),
    rgba(52, 228, 206, 0)
  );
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--on-dark);
  max-width: 30em;
  margin: 0 0 16px;
}
.hero__note {
  font-size: 0.9rem;
  color: var(--on-dark-soft);
  max-width: 32em;
  margin: 0 0 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
}
.stat {
}
.stat__num {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat__num .u {
  font-size: 0.5em;
  color: var(--reticle);
  margin-left: 2px;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--on-dark-soft);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.stat + .stat {
  padding-left: clamp(20px, 4vw, 40px);
  border-left: 1px solid var(--ink-3);
}

/* --- Hero radar visual --- */
.radar {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
.radar svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.radar__sweep {
  transform-origin: 250px 250px;
  animation: sweep 5s linear infinite;
}
@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}
.node {
  opacity: 0;
  animation: nodeIn 0.5s var(--ease) forwards;
}
.node-lock {
  animation: lockPulse 2.6s var(--ease) infinite;
  transform-origin: center;
}
@keyframes nodeIn {
  to {
    opacity: 1;
  }
}
@keyframes lockPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.radar__chip {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  background: rgba(14, 27, 68, 0.9);
  border: 1px solid var(--ink-3);
  color: var(--on-dark-soft);
  padding: 5px 9px;
  border-radius: 7px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.radar__chip.is-target {
  color: var(--ink);
  background: var(--reticle);
  border-color: var(--reticle);
  font-weight: 700;
  box-shadow: 0 10px 24px -10px rgba(52, 228, 206, 0.7);
}
.radar__chip--a {
  top: 12%;
  left: -4%;
}
.radar__chip--b {
  top: 6%;
  right: 2%;
}
.radar__chip--c {
  bottom: 20%;
  left: -6%;
}
.radar__chip--target {
  top: 44%;
  right: -8%;
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .radar {
    max-width: 380px;
    order: -1;
  }
  .radar__chip {
    font-size: 0.56rem;
  }
  .stat + .stat {
    border-left: none;
    padding-left: 0;
  }
  .hero__stats {
    gap: 28px 32px;
  }
}

/* Marquee logos strip */
.trust {
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  background: rgba(255, 255, 255, 0.02);
}
.trust__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-block: 20px;
  flex-wrap: wrap;
}
.trust__label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--on-dark-soft);
  text-transform: uppercase;
  white-space: nowrap;
}
.trust__items {
  display: flex;
  gap: 10px 12px;
  flex-wrap: wrap;
}
.trust__items span {
  font-size: 0.82rem;
  color: var(--on-dark);
  border: 1px solid var(--ink-3);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ============================================================
   Problem cards
   ============================================================ */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.prob {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
}
.prob:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.prob__no {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--signal);
  letter-spacing: 0.1em;
}
.prob h3 {
  font-size: 1.16rem;
  font-weight: 700;
  margin: 10px 0 12px;
  letter-spacing: 0.01em;
}
.prob p {
  color: var(--text-soft);
  font-size: 0.94rem;
  margin: 0;
}
.prob__mark {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 30px;
  height: 30px;
  opacity: 0.5;
}
@media (max-width: 680px) {
  .prob-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Journey funnel
   ============================================================ */
.journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.journey__copy p {
  color: var(--on-dark-soft);
}
.journey__copy .lead {
  font-size: 1.06rem;
  color: var(--on-dark);
  font-weight: 500;
}
.funnel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stage {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 14px;
  padding: 16px 20px;
  transition: 0.3s var(--ease);
  position: relative;
}
.stage__k {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--on-dark-soft);
}
.stage__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.04rem;
  color: #fff;
}
.stage__meta {
  font-size: 0.78rem;
  color: var(--on-dark-soft);
}
.stage.is-focus {
  background: linear-gradient(
    100deg,
    rgba(52, 228, 206, 0.14),
    rgba(44, 107, 255, 0.1)
  );
  border-color: var(--reticle);
  box-shadow: 0 20px 50px -30px rgba(52, 228, 206, 0.7);
}
.stage.is-focus .stage__k,
.stage.is-focus .stage__meta {
  color: var(--reticle);
}
.stage.is-focus .stage__name {
  color: #fff;
}
.stage__tag {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  background: var(--reticle);
  color: var(--ink);
  padding: 4px 9px;
  border-radius: 6px;
  font-weight: 700;
}
.stage__connector {
  height: 14px;
  width: 2px;
  background: linear-gradient(var(--ink-3), transparent);
  margin-left: 42px;
}
@media (max-width: 760px) {
  .journey {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   What is / definition
   ============================================================ */
.define {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.define__body h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 20px;
}
.define__body p {
  color: var(--text-soft);
}
.define__body .lead {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 500;
}
.define__oneline {
  margin-top: 26px;
  padding: 20px 24px;
  border-left: 3px solid var(--signal);
  background: var(--paper-2);
  border-radius: 0 12px 12px 0;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--f-display);
  font-size: 1.05rem;
}
/* URL → target diagram card */
.flow-card {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 30px 26px;
  color: var(--on-dark);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.flow-card__head {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--reticle);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.url-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
}
.url-row .fav {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--sky);
  flex: none;
}
.url-row .u {
  color: var(--on-dark-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.url-row .pct {
  margin-left: auto;
  color: var(--reticle);
  font-weight: 700;
}
.flow-card__arrow {
  text-align: center;
  color: var(--reticle);
  margin: 14px 0;
}
.flow-card__out {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    100deg,
    rgba(52, 228, 206, 0.16),
    rgba(44, 107, 255, 0.12)
  );
  border: 1px solid var(--reticle);
  border-radius: 12px;
  padding: 16px 18px;
}
.flow-card__out b {
  font-family: var(--f-display);
  color: #fff;
  font-size: 1rem;
}
.flow-card__out span {
  font-size: 0.8rem;
  color: var(--on-dark-soft);
}
@media (max-width: 760px) {
  .define {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Features
   ============================================================ */
.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.feat__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.feat__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feat__no {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-mute);
}
.feat__ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--signal), var(--sky));
  margin: 8px 0 18px;
  box-shadow: 0 12px 26px -12px rgba(44, 107, 255, 0.6);
}
.feat__ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}
.feat__item h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat__lead {
  color: var(--signal);
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0 0 12px;
}
.feat__item p {
  color: var(--text-soft);
  font-size: 0.93rem;
  margin: 0 0 18px;
}
.feat__visual {
  margin-top: auto;
}

/* mini visual: url chips */
.mini-urls {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.mini-urls span {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--navy);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 9px;
}
.mini-urls span.hot {
  background: rgba(52, 228, 206, 0.16);
  border-color: var(--reticle);
  color: #0a6b5f;
}

/* mini visual: map circle */
.mini-map {
  position: relative;
  height: 132px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.mini-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
}
.mini-map__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid var(--signal);
  transform: translate(-50%, -50%);
  background: rgba(44, 107, 255, 0.09);
}
.mini-map__ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px dashed var(--signal);
  opacity: 0.6;
}
.mini-map__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  background: var(--amber);
  transform: translate(-50%, -60%) rotate(-45deg);
  box-shadow: 0 4px 10px -2px rgba(255, 122, 51, 0.6);
}
.mini-map__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.55;
}

/* mini visual: video+banner */
.mini-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
}
.mini-media .v {
  background: var(--ink);
  border-radius: 10px;
  display: grid;
  place-items: center;
  aspect-ratio: 16/9;
  position: relative;
}
.mini-media .v::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 13px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.mini-media .b {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 12px;
}
.mini-media .b i {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: var(--line-2);
}
.mini-media .b i:first-child {
  width: 70%;
  background: var(--signal);
}
.mini-media .b i:last-child {
  width: 45%;
}

/* mini visual: report bars */
.mini-report {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 92px;
  padding: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.mini-report i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--signal);
  opacity: 0.85;
}
.mini-report i:nth-child(2) {
  background: var(--sky);
}
.mini-report i:nth-child(3) {
  background: var(--reticle);
}
.mini-report i:nth-child(4) {
  background: var(--sky);
}
.mini-report i:nth-child(5) {
  background: var(--signal);
}
@media (max-width: 720px) {
  .feat {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Comparison table
   ============================================================ */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
table.compare th,
table.compare td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
table.compare thead th {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--paper-2);
  letter-spacing: 0.02em;
}
table.compare tbody th {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  white-space: nowrap;
}
table.compare td {
  color: var(--text-soft);
  font-size: 0.9rem;
}
table.compare tr.is-us th,
table.compare tr.is-us td {
  background: linear-gradient(
    100deg,
    rgba(44, 107, 255, 0.08),
    rgba(52, 228, 206, 0.06)
  );
}
table.compare tr.is-us th {
  color: var(--signal);
}
.pill {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--reticle);
  color: var(--ink);
  font-weight: 700;
  margin-left: 8px;
}
.compare-note {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.compare-note b {
  color: var(--signal);
}

/* ============================================================
   Use cases (tabs)
   ============================================================ */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.tab {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line-2);
  background: var(--card);
  color: var(--text-soft);
  transition: 0.25s var(--ease);
}
.tab .k {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--text-mute);
  margin-right: 8px;
}
.tab[aria-selected="true"] {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.tab[aria-selected="true"] .k {
  color: var(--reticle);
}
.tab:focus-visible {
  outline: 3px solid var(--reticle);
  outline-offset: 2px;
}

.panel {
  display: none;
}
.panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  animation: fade 0.4s var(--ease);
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.panel__copy h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.panel__copy .catch {
  color: var(--signal);
  font-weight: 700;
  font-size: 1.06rem;
  font-family: var(--f-display);
  margin: 0 0 12px;
}
.panel__copy p {
  color: var(--text-soft);
  margin: 0 0 20px;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-list span {
  font-size: 0.84rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  color: var(--navy);
}
.panel__art {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
@media (max-width: 760px) {
  .panel.is-active {
    grid-template-columns: 1fr;
  }
  .panel__art {
    order: -1;
  }
}

/* ============================================================
   Reasons
   ============================================================ */
.reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.reason__no {
  font-family: var(--f-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--reticle);
  line-height: 1;
}
.reason h3 {
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 10px;
}
.reason p {
  color: var(--on-dark-soft);
  font-size: 0.92rem;
  margin: 0;
}
@media (max-width: 680px) {
  .reasons {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Case studies
   ============================================================ */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
}
/* .case::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(var(--signal), var(--reticle));
} */
.case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.case__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.case__cat {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
}
.case__num {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--signal);
  letter-spacing: -0.02em;
}
.case__num .u {
  font-size: 0.42em;
  color: var(--reticle);
  margin-left: 2px;
}
.case__metric {
  font-size: 0.76rem;
  color: var(--text-mute);
  text-align: right;
  margin: 6px 0 18px;
}
.case h3 {
  font-size: 1.14rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.case__issue,
.case__do {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0 0 12px;
}
.case__do {
  margin-bottom: 0;
}
.case__issue b {
  display: inline-block;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  color: var(--amber);
  border: 1px solid var(--amber);
  border-radius: 5px;
  padding: 1px 7px;
  margin-right: 8px;
}
@media (max-width: 900px) {
  .cases {
    grid-template-columns: 1fr;
  }
  .case__metric {
    margin-bottom: 14px;
  }
}

/* ============================================================
   Plans
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  transition: 0.3s var(--ease);
  position: relative;
}
.plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--signal);
}
.plan__cat {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 8px;
}
.plan__name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.08rem;
  color: var(--navy);
}
.plan__name em {
  font-style: normal;
  color: var(--signal);
}
.plan__for {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  margin: 6px 0 14px;
  min-height: 2.4em;
}
.plan__price {
  margin-bottom: 16px;
}
.plan__price-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.plan__price-unit {
  font-size: 0.58em;
  font-weight: 700;
  color: var(--text-mute);
  margin-left: 2px;
}
.plan__price-init {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  color: var(--text-mute);
  margin-top: 4px;
}
.plan__hr {
  height: 1px;
  background: var(--line);
  margin-bottom: 16px;
}
.plan__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.plan__specs li {
  position: relative;
  padding-left: 22px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
}
.plan__specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--reticle);
  border-bottom: 2px solid var(--reticle);
  transform: rotate(-45deg);
}
.plan p {
  font-size: 0.84rem;
  color: var(--text-soft);
  margin: auto 0 0;
  padding-top: 4px;
}
.plan.is-feature {
  border-color: var(--signal);
  box-shadow: 0 24px 50px -30px rgba(44, 107, 255, 0.5);
}
.plan__badge {
  position: absolute;
  top: -11px;
  left: 20px;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  background: var(--amber);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
}
.plans-note {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 0.92rem;
}
@media (max-width: 1000px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .plans {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Steps
   ============================================================ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line-2) 0 8px,
    transparent 8px 16px
  );
}
.step {
  position: relative;
}
.step__dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--signal);
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-weight: 700;
  color: var(--signal);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.step:last-child .step__dot {
  border-color: var(--reticle);
  color: #0a6b5f;
  background: rgba(52, 228, 206, 0.12);
}
.step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin: 0;
}
.steps-note {
  margin-top: 26px;
  color: var(--text-soft);
  font-size: 0.92rem;
}
@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps::before {
    top: 0;
    bottom: 0;
    left: 26px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(
      var(--line-2) 0 8px,
      transparent 8px 16px
    );
  }
  .step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding-bottom: 28px;
    align-items: start;
  }
  .step__dot {
    margin-bottom: 0;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 840px;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 4px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--text);
}
.faq__q .k {
  font-family: var(--f-mono);
  font-weight: 700;
  color: var(--signal);
  font-size: 0.9rem;
  flex: none;
}
.faq__q .plus {
  margin-left: auto;
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq__q .plus::before,
.faq__q .plus::after {
  content: "";
  position: absolute;
  background: var(--signal);
  border-radius: 2px;
}
.faq__q .plus::before {
  top: 10px;
  left: 0;
  width: 22px;
  height: 2px;
}
.faq__q .plus::after {
  top: 0;
  left: 10px;
  width: 2px;
  height: 22px;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] .plus::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__a {
  padding: 0 4px 26px 44px;
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0;
}
details.faq__item summary {
  list-style: none;
  cursor: pointer;
}
details.faq__item summary::-webkit-details-marker {
  display: none;
}

/* ============================================================
   Closing CTA
   ============================================================ */
.closing {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 20% 0%, #12235a, #0a1330 60%);
  color: var(--on-dark);
  text-align: center;
}
.closing__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 162, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 162, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent 75%);
}
.closing__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}
.closing h2 {
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}
.closing p {
  color: var(--on-dark-soft);
  margin: 0 auto 34px;
  max-width: 34em;
}
.closing__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Contact form
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
}
.contact__intro h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.contact__intro p {
  color: var(--text-soft);
}
.contact__points {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--text);
}
.contact__points svg {
  width: 22px;
  height: 22px;
  flex: none;
  stroke: var(--reticle);
  margin-top: 2px;
}
.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  font-family: var(--f-display);
}
.field label .req {
  color: var(--amber);
  font-size: 0.72rem;
  margin-left: 6px;
  font-family: var(--f-mono);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  padding: 13px 15px;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  background: var(--paper);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(44, 107, 255, 0.16);
  background: #fff;
}
.form__note {
  font-size: 0.82rem;
  color: var(--text-mute);
  margin: 4px 0 20px;
  padding: 12px 14px;
  background: var(--paper-2);
  border-radius: 10px;
}
.form__turnstile {
  margin: 0 0 14px;
  min-height: 65px;
}
.form__error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 122, 51, 0.1);
  border: 1px solid var(--amber);
  color: var(--amber-600);
  font-size: 0.86rem;
  font-weight: 700;
}
.form .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 760px) {
  .contact {
    grid-template-columns: 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #070c20;
  color: var(--on-dark-soft);
  padding-block: 56px 40px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--ink-3);
}
.footer__brand {
  max-width: 320px;
}
.footer__brand .brand__name {
  font-size: 1.3rem;
}
.footer__brand .brand__logo {
  height: 38px;
}
.footer__brand p {
  font-size: 0.86rem;
  margin: 16px 0 0;
  line-height: 1.9;
}
.footer__cols {
  display: flex;
  gap: clamp(32px, 6vw, 72px);
  flex-wrap: wrap;
}
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: var(--on-dark);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer__col a:hover {
  color: var(--reticle);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 0.8rem;
}
.footer__bottom .legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Back-to-top / floating CTA on mobile */
.float-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: none;
}
.float-cta .btn {
  width: 100%;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) {
  .float-cta {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
}

/* ============================================================
   Legal / sub pages (privacy, tokushoho)
   ============================================================ */
.page-hero {
  background: radial-gradient(120% 120% at 80% 0%, #12235a, #0a1330 60%);
  color: var(--on-dark);
  padding-block: clamp(56px, 8vw, 96px) clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--ink-3);
}
.page-hero .eyebrow {
  color: var(--reticle);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.breadcrumb {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--on-dark-soft);
  margin-bottom: 18px;
}
.breadcrumb a {
  color: var(--sky);
}
.breadcrumb a:hover {
  color: #fff;
}
.legal-doc {
  max-width: 840px;
}
.legal-doc .lead {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
  margin: 0 0 8px;
}
.legal-doc h2 {
  font-size: 1.14rem;
  color: var(--navy);
  margin: 40px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--signal);
  line-height: 1.5;
}
.legal-doc h2:first-of-type {
  margin-top: 12px;
}
.legal-doc p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0 0 12px;
}
.legal-doc a {
  color: var(--signal);
  text-decoration: underline;
}
.legal-doc ul.dash {
  margin: 4px 0 14px;
}
.legal-doc ul.dash li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.legal-doc ul.dash li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--reticle);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.legal-table th {
  width: 32%;
  color: var(--navy);
  font-family: var(--f-display);
  font-weight: 700;
  background: var(--paper-2);
}
.legal-table td {
  color: var(--text-soft);
}
.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: none;
}
.legal-updated {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-mute);
}
@media (max-width: 640px) {
  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }
  .legal-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
  .legal-table td {
    padding-top: 4px;
  }
}

/* ---- Thanks page ---- */
.thanks-hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
}
.thanks-check {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--reticle);
  box-shadow: 0 16px 40px -14px rgba(52, 228, 206, 0.7);
}
.thanks-check svg {
  width: 36px;
  height: 36px;
}
