:root {
  --bg: #07111f;
  --surface: #0b1f33;
  --surface-2: #10283d;
  --border: #244158;
  --border-strong: #355269;
  --text: #f7fafc;
  --muted: #b8c4d1;
  --muted-2: #8494a4;
  --accent: #ffb000;
  --link: #ffd166;
  --link-hover: #fff0bd;
  --accent-ink: #07111f;
  --success: #43c59e;
  --font: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic",
    "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  margin: 0 0 0.5em;
  line-height: 1.35;
  font-weight: 800;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

a {
  color: var(--link);
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:visited {
  color: var(--link);
}

a:hover {
  color: var(--link-hover);
}

a:focus-visible {
  outline: 3px solid rgba(255, 209, 102, 0.55);
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.note {
  color: var(--muted-2);
  font-size: 14px;
}

.br-mobile {
  display: inline;
}

/* Keep a Japanese particle with the company name it modifies. */
.no-break {
  white-space: nowrap;
}

/* header */

.site-header {
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  padding: 18px 20px;
}

.brand {
  font-size: 18px;
  font-weight: 800;
}

.brand-sub {
  color: var(--muted-2);
  font-size: 13px;
}

/* hero */

.hero {
  padding: clamp(48px, 9vw, 96px) 0 clamp(40px, 7vw, 72px);
  background: radial-gradient(circle at 20% 0%, var(--surface) 0%, var(--bg) 60%);
}

.hero-inner {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  letter-spacing: -0.01em;
}

.hero-lead {
  max-width: 56ch;
  font-size: clamp(16px, 2.2vw, 18px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 20px;
}

.hero-proof {
  max-width: 60ch;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.7;
}

.hero-visual svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}

.hero-visual-caption {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  text-align: center;
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 176, 0, 0.5);
  outline-offset: 2px;
}

/* sections */

.section {
  padding: clamp(40px, 7vw, 72px) 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  max-width: 28ch;
}

.two-col {
  display: grid;
  gap: 32px;
}

/* how it works */

.steps {
  display: grid;
  gap: 16px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 24px 20px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 999px;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.steps p {
  margin: 0;
}

/* not this */

.not-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.not-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.not-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 10px;
  height: 10px;
  background: var(--muted-2);
  border-radius: 999px;
}

/* who for */

.who-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.who-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.who-primary {
  background: var(--surface-2);
  border-color: var(--accent);
}

.who-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.who-card p {
  margin: 0;
}

/* pricing model */

.pricing-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0 16px;
}

.pricing-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.pricing-card h3 {
  font-size: 18px;
}

.pricing-card p {
  margin: 0;
}

/* company */

.company-inner {
  display: grid;
  gap: 24px;
}

.company h2 {
  font-size: clamp(22px, 3vw, 28px);
}

.contact-box {
  align-self: start;
  padding: 22px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: 14px;
}

.contact-box h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.contact-box .note {
  margin: 0;
}

/* document pages */

.document-hero {
  padding: clamp(44px, 7vw, 72px) 0 32px;
  background: radial-gradient(circle at 15% 0%, var(--surface) 0%, var(--bg) 64%);
  border-bottom: 1px solid var(--border);
}

.document-hero h1 {
  max-width: 18ch;
  font-size: clamp(30px, 5vw, 46px);
}

.document-lead {
  max-width: 64ch;
  font-size: clamp(16px, 2vw, 18px);
}

.document-meta {
  margin: 20px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}

.document-page {
  padding: clamp(36px, 6vw, 64px) 0;
}

.document-body {
  max-width: 760px;
}

.document-section + .document-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.document-section h2 {
  font-size: clamp(20px, 3vw, 26px);
}

.document-section h3 {
  margin-top: 24px;
  font-size: 17px;
}

.document-section ul,
.document-section ol {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 1.4em;
  color: var(--muted);
}

.site-header a,
.site-footer a {
  color: inherit;
}

.site-header a {
  text-decoration: none;
}

.document-section a {
  color: var(--link);
  font-weight: 700;
}

.document-section a:visited {
  color: var(--link);
}

.support-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.support-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.support-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.support-card p:last-child {
  margin-bottom: 0;
}

.support-action {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding: 28px;
  background: var(--surface-2);
  border: 1px solid var(--accent);
  border-radius: 12px;
}

.support-action > * {
  margin: 0;
}

.support-action h2 {
  font-size: clamp(20px, 3vw, 26px);
}

.support-action .btn {
  justify-self: start;
  margin-top: 8px;
}

.support-action + .document-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* footer */

.site-footer {
  padding: 24px 0 40px;
  color: var(--muted-2);
  font-size: 13px;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
  color: inherit;
}

.site-footer a {
  color: var(--muted);
  text-underline-offset: 0.2em;
}

.site-footer a:visited {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--text);
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-link-button {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--text);
}

.footer-link-button:focus-visible {
  outline: 3px solid rgba(255, 209, 102, 0.55);
  outline-offset: 3px;
}

.analytics-consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 20;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.analytics-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.analytics-consent .btn {
  min-height: 44px;
}

/* layout breakpoints (mobile-first) */

@media (min-width: 720px) {
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .who-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .br-mobile {
    display: block;
  }
}
