﻿:root {
  --lo-ink: #121417;
  --lo-ink-2: #242a31;
  --lo-muted: rgba(17, 19, 18, 0.64);
  --lo-line: rgba(17, 19, 18, 0.14);
  --lo-paper: #fbfaf7;
  --lo-paper-2: #f6f3ed;
  --lo-paper-3: #ece6dc;
  --lo-white: #ffffff;
  --lo-gold: #b78938;
  --lo-gold-dark: #856122;
  --lo-gold-rgb: 183, 137, 56;
  --lo-green: #3a3935;
  --lo-red: #c84a5f;
  --lo-shadow: 0 24px 70px rgba(17, 19, 18, 0.08);
  --lo-radius: 8px;
  --lo-nav-bg: #242321;
  --lo-footer-bg: #141413;
  --lo-on-dark: #f3f2ec;
  --lo-on-dark-muted: rgba(243, 242, 236, 0.84);
  --lo-dark-line: rgba(251, 250, 247, 0.16);
  --lo-button-charcoal: #3a3935;
  --lo-button-charcoal-hover: #2f2e2b;
  --lo-sans: "Shippori Mincho", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", serif;
  --lo-serif: "Shippori Mincho", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", serif;
  --lo-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  --gutter: clamp(20px, 4vw, 64px);
  --max: 1440px;
  --anthropic-black: #141413;
  --paper: var(--lo-paper);
  --paper-2: var(--lo-paper-2);
  --paper-line: var(--lo-line);
  --on-ink: var(--lo-on-dark);
  --on-ink-mute: var(--lo-on-dark-muted);
  --on-ink-faint: rgba(243, 242, 236, 0.72);
  --on-paper: var(--lo-ink);
  --on-paper-mute: var(--lo-muted);
  --on-paper-faint: rgba(17, 19, 18, 0.62);
  --accent: var(--lo-gold);
  --button-charcoal: var(--lo-button-charcoal);
  --button-charcoal-hover: var(--lo-button-charcoal-hover);
  --button-charcoal-line: rgba(251, 250, 247, 0.24);
  --radius-sm: 4px;
  --serif-jp: var(--lo-serif);
  --sans-jp: var(--lo-sans);
  --serif-en: var(--lo-mono);
  --mono: var(--lo-mono);
  --nav-bg: var(--lo-nav-bg);
  --nav-border: var(--lo-dark-line);
  --nav-text: var(--lo-on-dark);
  --nav-muted: var(--lo-on-dark-muted);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lo-ink);
  background: var(--lo-paper);
  font-family: var(--lo-sans);
  line-break: strict;
  word-break: normal;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.lo-container {
  width: calc(100% - 40px);
  max-width: 1160px;
  margin: 0 auto;
  min-width: 0;
}

.lo-kicker {
  margin: 0 0 12px;
  color: var(--lo-gold-dark);
  font: 700 12px/1.3 var(--lo-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lo-section {
  border-top: 1px solid rgba(17, 19, 18, 0.06);
  padding: 96px 0;
}

.lo-section--paper {
  background: var(--lo-paper);
}

.lo-section-head {
  max-width: 760px;
  margin-bottom: 38px;
  min-width: 0;
}

.lo-section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.lo-section-head h2,
.lo-ai-native h2,
.lo-system h2,
.lo-faq h2,
.lo-contact h2 {
  margin: 0;
  font-family: var(--lo-serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.28;
  font-weight: 600;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

.lo-section-head p,
.lo-ai-native p,
.lo-system p,
.lo-contact p {
  margin: 18px 0 0;
  color: var(--lo-muted);
  font-size: 15px;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.lo-btn {
  display: inline-flex;
  position: relative;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.24s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.lo-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-140%) skewX(-18deg);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.lo-btn:hover {
  transform: translateY(-2px);
}

.lo-btn:hover::after {
  transform: translateX(280%) skewX(-18deg);
}

.lo-btn--primary {
  border-color: var(--lo-button-charcoal);
  background: var(--lo-button-charcoal);
  color: var(--lo-on-dark);
  box-shadow: 0 16px 34px rgba(17, 19, 18, 0.18);
}

.lo-btn--primary:hover {
  border-color: var(--lo-button-charcoal-hover);
  background: var(--lo-button-charcoal-hover);
}

.lo-btn--secondary {
  border-color: var(--lo-line);
  color: var(--lo-ink);
  background: var(--lo-white);
}

.lo-mobile-line {
  display: inline;
}

.lo-nowrap {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.lo-heading-line {
  display: block;
}

/* Motion system: aligned with the main HP reveal rhythm. */
@keyframes loNavEnter {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loHeroEnter {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loHeroLineIn {
  from {
    opacity: 0;
    transform: translateY(105%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loAccentSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes loFloatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes loAiTokenRun {
  0%,
  10% {
    left: 0;
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  72% {
    opacity: 1;
  }
  86%,
  100% {
    left: calc(100% - 28px);
    opacity: 0;
  }
}

@keyframes loAiScan {
  0%,
  12% {
    transform: translateX(-110%);
  }
  46%,
  72%,
  100% {
    transform: translateX(205%);
  }
}

@keyframes loPaperDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 84px 42px, -42px 84px;
  }
}

@keyframes loPanelSweep {
  from {
    opacity: 0;
    transform: translateX(-115%);
  }
  24% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes loGoldColumnFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes loNumberSettle {
  0% {
    transform: translateY(8px) scale(0.94);
    filter: blur(2px);
  }
  68% {
    transform: translateY(-2px) scale(1.025);
    filter: blur(0);
  }
  100% {
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes loIconPop {
  0% {
    transform: scale(0.86) rotate(-5deg);
  }
  70% {
    transform: scale(1.08) rotate(2deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

body.lo-motion-ready [data-lo-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s ease;
  will-change: transform, opacity;
}

body.lo-motion-ready [data-lo-reveal="left"] {
  transform: translateX(46px);
}

body.lo-motion-ready [data-lo-reveal="right"] {
  transform: translateX(-46px);
}

body.lo-motion-ready [data-lo-reveal="scale"] {
  transform: scale(0.96);
}

body.lo-motion-ready [data-lo-reveal="clip"] {
  clip-path: inset(0 100% 0 0);
  transform: none;
}

body.lo-motion-ready [data-lo-reveal].is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  filter: none;
}

body.lo-motion-ready [data-lo-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
  will-change: transform, opacity;
}

body.lo-motion-ready [data-lo-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(2) { transition-delay: 0.13s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(3) { transition-delay: 0.21s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(4) { transition-delay: 0.29s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(5) { transition-delay: 0.37s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(6) { transition-delay: 0.45s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(7) { transition-delay: 0.53s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(8) { transition-delay: 0.61s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(9) { transition-delay: 0.69s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(10) { transition-delay: 0.77s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(11) { transition-delay: 0.85s; }
body.lo-motion-ready [data-lo-stagger].is-visible > *:nth-child(12) { transition-delay: 0.93s; }

.lo-motion-card {
  transition:
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.5s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.lo-spotlight {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.lo-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--lo-mx, 50%) var(--lo-my, 50%),
    rgba(var(--lo-gold-rgb), 0.12),
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.38s ease;
}

.lo-spotlight:hover::before {
  opacity: 1;
}

.lo-spotlight > * {
  position: relative;
  z-index: 1;
}

.lo-motion-card:hover,
body.lo-motion-ready [data-lo-stagger].is-visible > .lo-motion-card:hover,
body.lo-motion-ready [data-lo-reveal].lo-motion-card.is-visible:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--lo-gold-rgb), 0.24);
  box-shadow: 0 24px 60px -28px rgba(17, 19, 18, 0.28);
}

body.lo-motion-ready [data-lo-stagger].is-visible > .lo-motion-card .lo-icon {
  animation: loIconPop 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lo-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(var(--lo-gold-rgb), 0.2);
  border-radius: 8px;
  color: var(--lo-gold-dark);
  background: rgba(var(--lo-gold-rgb), 0.07);
}

.lo-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  position: relative;
  padding: clamp(80px, 10vw, 160px) var(--gutter);
}

.section--ink {
  background: var(--paper-2);
  color: var(--on-paper);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--nav-border);
  background: var(--nav-bg);
  color: var(--nav-text);
  font-size: 13px;
  backdrop-filter: blur(14px);
  animation: loNavEnter 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--nav-text);
  text-decoration: none;
}

.nav__brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav__brand-name {
  font-family: var(--serif-jp);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav__items {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

.nav__item {
  color: var(--nav-muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
}

.lp-nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 18px;
  color: var(--nav-muted);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.lp-nav__lang a {
  color: var(--nav-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lp-nav__lang a:hover,
.lp-nav__lang [aria-current="true"] {
  color: var(--accent);
}

.lp-nav__lang [aria-current="true"] {
  font-weight: 600;
}

.lp-nav__lang-sep {
  opacity: 0.4;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--button-charcoal-line);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  color: var(--on-ink);
  background: var(--button-charcoal);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.4s ease;
}

.nav__cta-btn:hover {
  border-color: rgba(251, 250, 247, 0.32);
  color: var(--on-ink);
  background: var(--button-charcoal-hover);
}

.lo-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  width: 100%;
  min-height: 68px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--lo-dark-line);
  padding: 12px clamp(20px, 4vw, 48px);
  color: var(--lo-on-dark);
  background: var(--lo-nav-bg);
  backdrop-filter: blur(14px);
  animation: loNavEnter 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lo-nav__brand,
.lo-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 700 18px/1 var(--lo-mono);
  text-decoration: none;
}

.lo-nav__brand img,
.lo-footer__brand img {
  width: 30px;
  height: 30px;
}

.lo-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--lo-on-dark-muted);
  font-size: 13px;
  font-weight: 600;
}

.lo-nav__links a {
  color: var(--lo-on-dark-muted);
  text-decoration: none;
}

.lo-nav__cta {
  justify-self: end;
  border: 1px solid rgba(251, 250, 247, 0.24);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--lo-on-dark);
  background: var(--lo-button-charcoal);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.lo-nav__cta:hover {
  background: var(--lo-button-charcoal-hover);
}

.hover-line {
  position: relative;
  text-decoration: none;
}

.hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.hover-line:hover::after {
  transform: scaleX(1);
}

.lo-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--lo-ink);
  background: var(--lo-paper);
}

.lo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 19, 18, 0.022) 1px, transparent 1px);
  background-size: 84px 84px, 42px 42px;
  opacity: 0.52;
  animation: loPaperDrift 24s linear infinite;
  pointer-events: none;
}

.lo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--lo-muted);
  font-size: 12px;
  font-weight: 700;
  animation: loHeroEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.lo-breadcrumb a {
  color: var(--lo-ink-2);
  text-decoration: none;
}

.lo-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 64px;
}

.lo-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--lo-serif);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.16;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

.lo-hero__service {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  border: 1px solid var(--lo-line);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--lo-gold-dark);
  background: rgba(var(--lo-gold-rgb), 0.07);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  animation: loHeroEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.lo-hero-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  animation: loHeroLineIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lo-hero-line:nth-child(1) {
  animation-delay: 0.28s;
}

.lo-hero-line:nth-child(2) {
  animation-delay: 0.42s;
}

.lo-hero-line:nth-child(3) {
  animation-delay: 0.56s;
}

.lo-hero-line--service {
  margin-top: 8px;
  color: var(--lo-gold-dark);
  font-size: 0.72em;
}

.lo-hero__lead {
  width: 100%;
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--lo-muted);
  font-size: 18px;
  line-height: 2;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
  animation: loHeroEnter 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.lo-speed-panel {
  width: 100%;
  max-width: 720px;
  margin-top: 26px;
  border: 1px solid rgba(var(--lo-gold-rgb), 0.24);
  border-radius: var(--lo-radius);
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(var(--lo-gold-rgb), 0.11), rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 48px rgba(18, 20, 23, 0.07);
  position: relative;
  overflow: hidden;
  animation: loHeroEnter 1s cubic-bezier(0.16, 1, 0.3, 1) 0.82s both;
}

.lo-speed-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: translateX(-120%);
  animation: loAccentSweep 3.6s ease-in-out 1.5s infinite;
  pointer-events: none;
}

.lo-speed-panel > span {
  display: block;
  color: var(--lo-gold-dark);
  font: 700 11px/1.2 var(--lo-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lo-speed-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--lo-ink);
  font-family: var(--lo-serif);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.38;
  text-wrap: balance;
}

.lo-speed-panel p {
  margin: 10px 0 0;
  color: var(--lo-muted);
  font-size: 14px;
  line-height: 1.75;
  text-wrap: pretty;
}

.lo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: loHeroEnter 1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
}

.lo-hero__stats {
  display: grid;
  width: 100%;
  max-width: 920px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 64px 0 0;
  border: 1px solid var(--lo-line);
  background: var(--lo-line);
}

.lo-hero__stats div {
  min-height: 108px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  animation: loHeroEnter 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lo-hero__stats div:nth-child(1) {
  animation-delay: 1.06s;
}

.lo-hero__stats div:nth-child(2) {
  animation-delay: 1.14s;
}

.lo-hero__stats div:nth-child(3) {
  animation-delay: 1.22s;
}

.lo-hero__stats div:nth-child(4) {
  animation-delay: 1.3s;
}

.lo-hero__stats dt {
  margin: 0 0 8px;
  color: var(--lo-muted);
  font: 700 11px/1 var(--lo-mono);
  text-transform: uppercase;
}

.lo-hero__stats dd {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.lo-ai-native {
  background: var(--lo-white);
}

.lo-ai-native__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.lo-ai-native__grid > * {
  min-width: 0;
}

.lo-ai-native__grid > div:first-child {
  max-width: 900px;
}

.lo-ai-native__lead {
  color: var(--lo-ink);
  font-size: 18px;
  line-height: 1.95;
}

.lo-ai-native__formula {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  padding: clamp(22px, 3.4vw, 34px);
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 19, 18, 0.026) 1px, transparent 1px),
    var(--lo-white);
  background-size: 44px 44px;
  box-shadow: 0 24px 70px -48px rgba(17, 19, 18, 0.3);
}

.lo-ai-native__formula-rail {
  position: absolute;
  top: 38px;
  right: clamp(24px, 4vw, 48px);
  left: clamp(24px, 4vw, 48px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--lo-gold-rgb), 0.42), transparent);
  pointer-events: none;
}

.lo-ai-native__formula-rail span {
  position: absolute;
  top: -4px;
  left: 0;
  width: 28px;
  height: 8px;
  border: 1px solid rgba(var(--lo-gold-rgb), 0.55);
  border-radius: 2px;
  background: var(--lo-white);
  animation: loAiTokenRun 7.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.lo-ai-native__formula-rail span:nth-child(2) {
  animation-delay: 1.2s;
}

.lo-ai-native__formula-rail span:nth-child(3) {
  animation-delay: 2.4s;
}

.lo-ai-native__formula-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 12px 0 24px;
  border-bottom: 1px solid var(--lo-line);
}

.lo-ai-native__formula-head span {
  color: var(--lo-gold-dark);
  font: 700 11px/1.3 var(--lo-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lo-ai-native__formula-head strong {
  color: var(--lo-ink);
  font-family: var(--lo-serif);
  font-size: clamp(26px, 3.1vw, 38px);
  font-weight: 600;
  line-height: 1.34;
}

.lo-ai-native__formula-head p {
  max-width: 560px;
  margin: 0;
  color: var(--lo-muted);
  font-size: 14px;
  line-height: 1.9;
}

.lo-ai-native__formula-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.lo-ai-native__scan {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.lo-ai-native__scan::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(var(--lo-gold-rgb), 0.16), transparent);
  animation: loAiScan 4.8s ease-in-out infinite;
}

.lo-ai-native__scan span {
  height: 8px;
  border-radius: 2px;
  background: rgba(17, 19, 18, 0.1);
}

.lo-ai-native__scan span:nth-child(1) { width: 86%; }
.lo-ai-native__scan span:nth-child(2) { width: 72%; }
.lo-ai-native__scan span:nth-child(3) { width: 94%; }
.lo-ai-native__scan span:nth-child(4) { width: 58%; }

.lo-ai-native__checks {
  display: grid;
  gap: 9px;
}

.lo-ai-native__checks span {
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  padding: 8px 12px;
  color: var(--lo-muted);
  background: rgba(255, 255, 255, 0.78);
  font: 700 11px/1.3 var(--lo-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lo-ai-native__formula {
  min-height: clamp(260px, 26vw, 360px);
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 64px);
  background-size: 48px 48px;
  box-shadow: 0 24px 70px -50px rgba(17, 19, 18, 0.26);
}

.lo-ai-native__formula::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg, transparent 18%, rgba(var(--lo-gold-rgb), 0.14) 38%, transparent 58%);
  transform: translateX(-115%);
  opacity: 0;
  pointer-events: none;
}

body.lo-motion-ready .lo-ai-native__formula.is-visible::after {
  animation: loPanelSweep 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

body.lo-motion-ready .lo-ai-native__formula[data-lo-reveal] .lo-ai-equation__term,
body.lo-motion-ready .lo-ai-native__formula[data-lo-reveal] .lo-ai-equation__operator {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

body.lo-motion-ready .lo-ai-native__formula.is-visible .lo-ai-equation__term,
body.lo-motion-ready .lo-ai-native__formula.is-visible .lo-ai-equation__operator {
  opacity: 1;
  transform: none;
}

body.lo-motion-ready .lo-ai-native__formula.is-visible .lo-ai-equation > *:nth-child(1) { transition-delay: 0.15s; }
body.lo-motion-ready .lo-ai-native__formula.is-visible .lo-ai-equation > *:nth-child(2) { transition-delay: 0.28s; }
body.lo-motion-ready .lo-ai-native__formula.is-visible .lo-ai-equation > *:nth-child(3) { transition-delay: 0.41s; }
body.lo-motion-ready .lo-ai-native__formula.is-visible .lo-ai-equation > *:nth-child(4) { transition-delay: 0.54s; }
body.lo-motion-ready .lo-ai-native__formula.is-visible .lo-ai-equation > *:nth-child(5) { transition-delay: 0.67s; }

.lo-ai-equation {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
}

.lo-ai-equation__term {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.lo-ai-equation__term strong {
  display: block;
  color: var(--lo-ink);
  font-family: var(--lo-serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  white-space: nowrap;
}

.lo-ai-equation__term span {
  color: rgba(17, 19, 18, 0.54);
  font-family: var(--lo-serif);
  font-size: 12px;
  font-style: italic;
  line-height: 1;
}

.lo-ai-equation__term--result strong {
  color: var(--lo-gold);
  font-size: clamp(30px, 3.7vw, 46px);
}

.lo-ai-equation__operator {
  position: relative;
  display: inline-grid;
  width: clamp(28px, 3vw, 42px);
  flex: 0 0 auto;
  place-items: center;
  color: rgba(17, 19, 18, 0.62);
  font-family: var(--lo-serif);
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 300;
  line-height: 1;
}

.lo-ai-equation__operator--multiply::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--lo-gold-rgb), 0.72);
}

.lo-ai-equation__operator--equal {
  color: var(--lo-gold);
  font-size: clamp(38px, 3.8vw, 52px);
  font-weight: 500;
}

.lo-clients {
  border-top: 1px solid rgba(17, 19, 18, 0.06);
  padding: 78px 0 88px;
  background: var(--lo-paper);
}

.lo-results {
  color: var(--lo-ink);
  background: var(--lo-paper-2);
}

.lo-results .lo-kicker {
  color: var(--lo-gold-dark);
}

.lo-results .lo-section-head {
  max-width: 860px;
}

.lo-results .lo-section-head p {
  color: var(--lo-muted);
}

.lo-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--lo-line);
  background: var(--lo-line);
}

.lo-results-grid article {
  min-width: 0;
  min-height: 250px;
  padding: 28px;
  background: var(--lo-white);
}

.lo-results-grid span {
  display: block;
  color: var(--lo-gold-dark);
  font: 700 12px/1.3 var(--lo-mono);
}

.lo-results-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--lo-ink);
  font-family: var(--lo-serif);
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.lo-results-grid strong.is-counted {
  animation: loNumberSettle 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lo-results-grid h3 {
  margin: 18px 0 0;
  color: var(--lo-ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
  text-wrap: balance;
}

.lo-results-grid p {
  margin: 12px 0 0;
  color: var(--lo-muted);
  font-size: 13px;
  line-height: 1.8;
  text-wrap: pretty;
}

.lo-logo-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--lo-line);
  background: var(--lo-line);
}

.lo-logo-grid div {
  display: grid;
  min-width: 0;
  min-height: 100px;
  place-items: center;
  padding: 18px;
  background: var(--lo-white);
  overflow: hidden;
}

.lo-logo-grid img {
  max-width: min(138px, 84%);
  max-height: 52px;
  object-fit: contain;
  transition: filter 0.32s ease, transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lo-logo-grid div:hover img {
  transform: translateY(-2px) scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.lo-problems {
  background: var(--lo-paper-2);
}

.lo-problem-grid,
.lo-plan-grid,
.lo-reading-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lo-problem-grid article,
.lo-plan-grid article,
.lo-reading-grid a {
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  padding: 24px;
  background: var(--lo-white);
  box-shadow: 0 12px 36px rgba(18, 20, 23, 0.06);
}

.lo-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lo-card-number {
  color: var(--lo-gold-dark);
  font: 700 12px/1 var(--lo-mono);
}

.lo-problem-grid h3,
.lo-plan-grid h3 {
  margin: 16px 0 10px;
  font-size: 19px;
  line-height: 1.5;
  word-break: normal;
  text-wrap: balance;
}

.lo-problem-grid p,
.lo-plan-grid li,
.lo-reading-grid strong {
  color: var(--lo-muted);
  font-size: 14px;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.lo-system {
  color: var(--lo-ink);
  background: var(--lo-white);
}

.lo-comparison {
  background: var(--lo-white);
}

.lo-system .lo-kicker,
.lo-system p {
  color: var(--lo-muted);
}

.lo-system__grid,
.lo-contact__grid,
.lo-faq__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.lo-workflow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--lo-line);
  background: var(--lo-line);
}

.lo-workflow div {
  min-height: 210px;
  padding: 28px;
  background: var(--lo-white);
}

.lo-system .lo-icon {
  border-color: rgba(var(--lo-gold-rgb), 0.2);
  color: var(--lo-gold-dark);
  background: rgba(var(--lo-gold-rgb), 0.07);
}

.lo-workflow strong {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  word-break: normal;
  text-wrap: balance;
}

.lo-workflow p {
  margin: 12px 0 0;
  color: var(--lo-muted);
  font-size: 14px;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.lo-scope-table {
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  overflow: hidden;
  background: var(--lo-line);
}

.lo-scope-table > div {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1.25fr;
  gap: 1px;
  border-bottom: 1px solid var(--lo-line);
}

.lo-scope-table > div:last-child {
  border-bottom: 0;
}

.lo-scope-table > div > strong,
.lo-scope-table > div > span,
.lo-scope-table > div > p {
  margin: 0;
  padding: 20px;
  background: var(--lo-white);
}

.lo-scope-table > div > strong {
  background: var(--lo-paper);
  color: var(--lo-ink);
  font-size: 13px;
}

.lo-scope-table > div > span {
  background: rgba(var(--lo-gold-rgb), 0.08);
  color: var(--lo-green);
  font-weight: 700;
}

.lo-scope-table > div > p {
  color: var(--lo-muted);
  font-size: 14px;
}

.lo-table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  background: var(--lo-white);
  box-shadow: var(--lo-shadow);
}

.lo-compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.lo-compare-table th,
.lo-compare-table td {
  border-bottom: 1px solid var(--lo-line);
  border-left: 1px solid var(--lo-line);
  padding: 18px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.lo-compare-table th:first-child,
.lo-compare-table td:first-child {
  border-left: 0;
}

.lo-compare-table thead th {
  background: var(--lo-paper);
  color: var(--lo-ink);
}

.lo-compare-table thead th:last-child {
  background: rgba(var(--lo-gold-rgb), 0.16);
  border-left: 2px solid rgba(var(--lo-gold-rgb), 0.55);
  color: var(--lo-ink);
}

.lo-compare-table tbody th {
  color: var(--lo-green);
  white-space: nowrap;
}

.lo-compare-table tbody td:last-child {
  border-left: 2px solid rgba(var(--lo-gold-rgb), 0.55);
  background: linear-gradient(90deg, rgba(var(--lo-gold-rgb), 0.17), rgba(var(--lo-gold-rgb), 0.06), rgba(var(--lo-gold-rgb), 0.13));
  background-size: 220% 100%;
  color: var(--lo-ink);
  font-weight: 700;
  animation: loGoldColumnFlow 8s ease-in-out infinite;
}

.lo-compare-table tbody tr {
  transition: background 0.28s ease;
  animation: loHeroEnter 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lo-compare-table tbody tr:nth-child(1) { animation-delay: 0.05s; }
.lo-compare-table tbody tr:nth-child(2) { animation-delay: 0.12s; }
.lo-compare-table tbody tr:nth-child(3) { animation-delay: 0.19s; }
.lo-compare-table tbody tr:nth-child(4) { animation-delay: 0.26s; }
.lo-compare-table tbody tr:nth-child(5) { animation-delay: 0.33s; }
.lo-compare-table tbody tr:nth-child(6) { animation-delay: 0.4s; }

.lo-compare-table tbody tr:hover td,
.lo-compare-table tbody tr:hover th {
  background-color: rgba(var(--lo-gold-rgb), 0.045);
}

.lo-plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lo-plan-grid article {
  min-height: 360px;
}

.lo-plan-grid article > p {
  margin: 0;
  color: var(--lo-gold-dark);
  font: 700 12px/1 var(--lo-mono);
  text-transform: uppercase;
}

.lo-plan-note {
  display: block;
  min-height: 42px;
  color: var(--lo-muted);
  font-size: 13px;
  line-height: 1.6;
}

.lo-plan-grid ul {
  margin: 18px 0 0;
  padding-left: 1.1em;
}

.lo-price-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 28px;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  padding: 28px;
  background: var(--lo-white);
}

.lo-price-block h3 {
  margin: 0;
  font-size: 24px;
}

.lo-price-block p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--lo-muted);
  font-size: 14px;
}

.lo-price-table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  background: var(--lo-white);
  box-shadow: var(--lo-shadow);
  -webkit-overflow-scrolling: touch;
}

.lo-price-table {
  width: 100%;
  min-width: 860px;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  overflow: hidden;
}

.lo-price-table > div {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 0.8fr) minmax(280px, 1.25fr);
  border-bottom: 1px solid var(--lo-line);
  transition: background 0.28s ease;
}

.lo-price-table > div:last-child {
  border-bottom: 0;
}

.lo-price-table > div > strong,
.lo-price-table > div > span,
.lo-price-table > div > p {
  margin: 0;
  padding: 14px 16px;
  font-size: 14px;
}

.lo-price-table > div > strong {
  color: var(--lo-ink);
  background: var(--lo-paper);
}

.lo-price-table > div > span {
  border-left: 1px solid var(--lo-line);
  color: var(--lo-green);
  font-weight: 700;
}

.lo-price-table > div > p {
  border-left: 1px solid var(--lo-line);
  color: var(--lo-muted);
}

.lo-price-table > div > :nth-child(2) {
  border-left: 2px solid rgba(var(--lo-gold-rgb), 0.55);
  background: linear-gradient(90deg, rgba(var(--lo-gold-rgb), 0.16), rgba(var(--lo-gold-rgb), 0.07), rgba(var(--lo-gold-rgb), 0.12));
  background-size: 220% 100%;
  color: var(--lo-ink);
  font-weight: 700;
  animation: loGoldColumnFlow 8s ease-in-out infinite;
}

.lo-price-table > div:hover > * {
  background-color: rgba(var(--lo-gold-rgb), 0.05);
}

.lo-fineprint {
  margin: 16px 0 0;
  color: var(--lo-muted);
  font-size: 12px;
}

.lo-lawyers {
  background: var(--lo-white);
}

.lo-column {
  background: var(--lo-paper);
}

.lo-faq {
  background: var(--lo-white);
}

.lo-lawyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lo-lawyer-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 0.62fr 1fr;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  overflow: hidden;
  color: var(--lo-ink);
  background: var(--lo-white);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(18, 20, 23, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lo-lawyer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lo-shadow);
}

.lo-lawyer-card__photo {
  min-height: 100%;
  background: var(--lo-paper-3);
}

.lo-lawyer-card__photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.lo-lawyer-card__body {
  min-width: 0;
  padding: 24px;
}

.lo-lawyer-card__en {
  display: block;
  color: var(--lo-gold-dark);
  font: 700 12px/1 var(--lo-mono);
  text-transform: uppercase;
}

.lo-lawyer-card h3 {
  margin: 12px 0 4px;
  font-family: var(--lo-serif);
  font-size: 26px;
  line-height: 1.35;
}

.lo-lawyer-card__role {
  margin: 0;
  color: var(--lo-green);
  font-size: 13px;
  font-weight: 700;
}

.lo-lawyer-card__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.lo-lawyer-card__spec span {
  border: 1px solid rgba(var(--lo-gold-rgb), 0.24);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--lo-gold-dark);
  background: rgba(var(--lo-gold-rgb), 0.07);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.lo-lawyer-card ul {
  margin: 18px 0 0;
  padding-left: 1.1em;
}

.lo-lawyer-card li {
  color: var(--lo-muted);
  font-size: 13px;
  line-height: 1.75;
}

.lo-reading-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lo-reading-grid a {
  min-height: 180px;
  color: var(--lo-ink);
  text-decoration: none;
}

.lo-reading-grid span {
  color: var(--lo-gold-dark);
  font: 700 12px/1 var(--lo-mono);
}

.lo-reading-grid strong {
  display: block;
  margin-top: 28px;
  color: var(--lo-ink);
  font-size: 17px;
  line-height: 1.65;
}

.lo-column__head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 32px;
}

.lo-column__head h2 {
  margin: 0;
  font-family: var(--lo-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.25;
}

.lo-column__lede {
  margin: 0;
  color: var(--lo-muted);
  font-size: 15px;
  line-height: 1.9;
  text-wrap: pretty;
}

.lo-column__feature,
.lo-column__card {
  display: block;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  color: var(--lo-ink);
  background: var(--lo-white);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(18, 20, 23, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lo-column__feature:hover,
.lo-column__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lo-shadow);
}

.lo-column__feature {
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.lo-column__feature-meta,
.lo-column__card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--lo-gold-dark);
  font: 700 12px/1.2 var(--lo-mono);
}

.lo-column__cat {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(var(--lo-gold-rgb), 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(var(--lo-gold-rgb), 0.07);
}

.lo-column__date {
  color: var(--lo-muted);
}

.lo-column__feature h3 {
  max-width: 900px;
  margin: 24px 0 0;
  font-family: var(--lo-serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
  font-weight: 600;
  text-wrap: balance;
}

.lo-column__feature p {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--lo-muted);
  font-size: 15px;
  line-height: 1.9;
  text-wrap: pretty;
}

.lo-column__cta {
  display: inline-flex;
  margin-top: 24px;
  color: var(--lo-green);
  font-size: 14px;
  font-weight: 700;
}

.lo-column__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lo-column__card {
  min-width: 0;
  min-height: 270px;
  padding: 24px;
}

.lo-column__card h3 {
  margin: 18px 0 0;
  font-family: var(--lo-serif);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  text-wrap: pretty;
}

.lo-column__card p {
  margin: 14px 0 0;
  color: var(--lo-muted);
  font-size: 13px;
  line-height: 1.8;
  text-wrap: pretty;
}

.lo-faq__items {
  display: grid;
  gap: 12px;
}

.lo-faq details {
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  background: var(--lo-white);
}

.lo-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
}

.lo-faq p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--lo-muted);
  font-size: 14px;
}

.lo-contact {
  padding: 104px 0;
  color: var(--lo-ink);
  background: var(--lo-paper-2);
}

.lo-contact .lo-kicker,
.lo-contact p,
.lo-contact li {
  color: var(--lo-muted);
}

.lo-contact ul {
  margin: 28px 0 0;
  padding-left: 1.1em;
}

.lo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--lo-line);
  border-radius: var(--lo-radius);
  padding: 28px;
  background: var(--lo-white);
  box-shadow: var(--lo-shadow);
}

.lo-form label {
  display: grid;
  gap: 8px;
}

.lo-form span {
  color: var(--lo-ink);
  font-size: 13px;
  font-weight: 700;
}

.lo-form em {
  color: var(--lo-red);
  font-style: normal;
}

.lo-form input,
.lo-form select,
.lo-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--lo-line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--lo-ink);
  background: var(--lo-white);
  font: inherit;
}

.lo-form textarea {
  resize: vertical;
}

.lo-form option {
  color: var(--lo-ink);
}

.lo-form__full {
  grid-column: 1 / -1;
}

.lo-form__check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
}

.lo-form__check input {
  width: 18px;
  min-height: 18px;
}

.lo-form__check a {
  color: var(--lo-gold-dark);
}

.lo-form__submit {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.lo-form__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.lo-form__status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: -2px 0 0;
  color: var(--lo-muted);
  font-size: 13px;
  line-height: 1.7;
}

.lo-form__status:empty {
  display: none;
}

.lo-form__status--success {
  color: #24663f;
}

.lo-form__status--error {
  color: var(--lo-red);
}

.lo-footer {
  padding: 34px 0 28px;
  border-top: 1px solid var(--lo-dark-line);
  background: var(--lo-footer-bg);
  color: var(--lo-on-dark-muted);
}

.lo-footer__brand {
  color: var(--lo-on-dark);
}

.lo-footer a {
  color: inherit;
  text-decoration: none;
}

.lo-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1.6fr);
  align-items: center;
  gap: 34px;
}

.lo-footer__brand-wrap {
  display: grid;
  gap: 8px;
}

.lo-footer__copy-en {
  margin: 0;
  color: var(--lo-on-dark);
  font-size: 12px;
  font-family: var(--lo-mono);
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.lo-footer__brand-addr {
  margin: 4px 0 0;
  color: var(--lo-on-dark-muted);
  font-size: 12px;
  line-height: 1.7;
}

.lo-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lo-footer__label {
  display: block;
  margin-bottom: 12px;
  color: var(--lo-on-dark);
  font: 700 12px/1.4 var(--lo-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lo-footer__cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.lo-footer__cols a {
  font-size: 13px;
  line-height: 1.75;
}

.lo-footer__copy {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(251, 250, 247, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(243, 242, 236, 0.72);
  font-size: 12px;
}

.lo-footer__copy .lo-footer__copy-en {
  text-transform: uppercase;
  color: rgba(243, 242, 236, 0.74);
}

.footer {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: 40px;
  background: rgba(236, 237, 232, 0.96);
  color: var(--on-paper);
}

.footer--site {
  padding-top: 0;
  background: var(--anthropic-black);
  color: var(--on-ink);
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid rgba(251, 250, 247, 0.14);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer__brand-name {
  margin-top: 8px;
  font-family: var(--serif-jp);
  font-size: 24px;
  font-weight: 600;
}

.footer__brand-en {
  color: var(--on-ink-mute);
  font-family: var(--serif-en);
  font-size: 14px;
}

.footer__brand-addr {
  display: block;
  max-width: 280px;
  margin-top: 6px;
  color: var(--on-ink-mute);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__cols .label {
  display: block;
  margin-bottom: 16px;
  color: var(--on-ink-faint);
}

.footer__cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__cols li {
  font-family: var(--sans-jp);
  font-size: 13px;
  line-height: 2;
}

.footer__cols a {
  color: var(--on-ink);
  text-decoration: none;
}

.footer__copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 250, 247, 0.14);
  color: var(--on-ink-mute);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__copy-en {
  color: var(--on-ink-mute);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body.lo-motion-ready [data-lo-reveal],
  body.lo-motion-ready [data-lo-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .lo-motion-card:hover,
  body.lo-motion-ready [data-lo-stagger].is-visible > .lo-motion-card:hover,
  body.lo-motion-ready [data-lo-reveal].lo-motion-card.is-visible:hover {
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .nav__items {
    display: none;
  }
}

@media (max-width: 980px) {
  .lo-nav {
    grid-template-columns: 1fr auto;
  }

  .lo-nav__links {
    display: none;
  }

  .lo-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__copy {
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
  }

  .lo-hero,
  .lo-hero__inner {
    min-height: 720px;
  }

  .lo-hero__stats,
  .lo-logo-grid,
  .lo-results-grid,
  .lo-problem-grid,
  .lo-plan-grid,
  .lo-lawyer-grid,
  .lo-reading-grid,
  .lo-column__grid,
  .lo-ai-native__grid,
  .lo-system__grid,
  .lo-contact__grid,
  .lo-faq__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lo-ai-native__grid,
  .lo-column__head,
  .lo-system__grid,
  .lo-contact__grid,
  .lo-faq__grid {
    gap: 36px;
  }

  .lo-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lo-ai-native__formula-body {
    grid-template-columns: 1fr;
  }

  .lo-scope-table > div {
    grid-template-columns: 1fr;
  }

  .lo-scope-table > div > strong,
  .lo-scope-table > div > span,
  .lo-scope-table > div > p {
    border-right: 0;
  }

  .lo-scope-table > div > span,
  .lo-scope-table > div > p {
    border-top: 1px solid var(--lo-line);
  }
}

@media (max-width: 680px) {
  .lo-container {
    width: calc(100vw - 28px);
    max-width: 1160px;
  }

  .lo-nav {
    min-height: 62px;
    padding: 10px 14px;
  }

  .lo-nav__brand span {
    font-size: 16px;
  }

  .lo-nav__cta {
    padding: 8px 12px;
  }

  .lo-hero,
  .lo-hero__inner {
    min-height: 760px;
  }

  .lo-hero__inner {
    padding-top: 96px;
  }

  .lo-hero h1 {
    font-size: clamp(21px, 6.2vw, 25px);
    line-height: 1.28;
  }

  .lo-section-head h2,
  .lo-ai-native h2,
  .lo-system h2,
  .lo-faq h2,
  .lo-contact h2 {
    font-size: clamp(25px, 7.4vw, 34px);
    line-height: 1.35;
  }

  .lo-speed-panel {
    padding: 18px 16px;
  }

  .lo-speed-panel strong {
    font-size: clamp(23px, 6.7vw, 32px);
  }

  .lo-hero__lead {
    font-size: 15px;
    line-height: 1.9;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .lo-speed-panel p {
    overflow-wrap: anywhere;
  }

  .lo-mobile-wrap {
    white-space: normal;
  }

  body.lo-motion-ready [data-lo-reveal="left"],
  body.lo-motion-ready [data-lo-reveal="right"] {
    transform: translateY(34px);
  }

  .lo-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lo-btn {
    width: 100%;
  }

  .lo-mobile-line {
    display: block;
  }

  .lo-hero__stats,
  .lo-logo-grid,
  .lo-results-grid,
  .lo-problem-grid,
  .lo-plan-grid,
  .lo-lawyer-grid,
  .lo-reading-grid,
  .lo-column__grid,
  .lo-column__head,
  .lo-price-block,
  .lo-ai-native__grid,
  .lo-system__grid,
  .lo-contact__grid,
  .lo-faq__grid,
  .lo-workflow,
  .lo-form {
    grid-template-columns: 1fr;
  }

  .lo-ai-native__formula {
    padding: 20px;
  }

  .lo-ai-equation {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    gap: 14px;
  }

  .lo-ai-equation__term {
    max-width: 100%;
  }

  .lo-ai-equation__term strong {
    font-size: clamp(27px, 8.6vw, 38px);
  }

  .lo-ai-equation__term--result strong {
    font-size: clamp(30px, 9vw, 42px);
  }

  .lo-ai-equation__operator {
    width: auto;
    font-size: 34px;
  }

  .lo-ai-native__formula-rail {
    display: none;
  }

  .lo-ai-native__formula-body {
    grid-template-columns: 1fr;
  }

  .lo-column__feature,
  .lo-column__card {
    padding: 20px;
  }

  .lo-column__feature h3 {
    font-size: 25px;
  }

  .lo-hero__stats div {
    min-height: auto;
  }

  .lo-results-grid article {
    min-height: auto;
    padding: 22px;
  }

  .lo-logo-grid {
    grid-template-columns: 1fr;
  }

  .lo-lawyer-card {
    grid-template-columns: 1fr;
  }

  .lo-lawyer-card__photo img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .lo-lawyer-card__body {
    padding: 20px;
  }

  .lo-section,
  .lo-contact {
    padding: 72px 0;
  }

  .lo-clients {
    padding: 62px 0 70px;
  }

  .lo-clients .lo-section-head h2 {
    font-size: 30px;
  }

  .lo-clients .lo-section-head p {
    font-size: 13px;
    word-break: keep-all;
  }

  .lo-price-block {
    padding: 20px;
  }

  .lo-price-table-wrap {
    margin: 0 -6px;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lo-price-table {
    width: 100%;
    min-width: 860px;
  }

  .lo-form {
    padding: 18px;
  }

  .lo-form__submit {
    justify-self: stretch;
  }

  .lo-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .lo-footer__cols {
    grid-template-columns: 1fr;
  }

  .lo-footer__copy {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 14px var(--gutter);
  }

  .nav__brand-name {
    font-size: 15px;
  }

  .nav__cta {
    gap: 12px;
  }

  .lp-nav__lang {
    margin-right: 12px;
    gap: 4px;
    font-size: 13px;
  }

  .nav__cta-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .lp-nav__lang {
    display: none;
  }
}

@media (max-width: 380px) {
  .nav__brand-name {
    font-size: 14px;
  }

  .nav__cta-btn {
    gap: 6px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .lo-hero h1 {
    font-size: 20px;
  }
}
