/* Stream Translations LP — relies on tokens from colors_and_type.css */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink-800);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Tweak-driven variables (defaults) */
:root {
  --lp-headline-font: "Noto Sans JP", sans-serif;   /* gothic by default */
  --lp-headline-weight: 700;
  --lp-section-pad: 120px;
  --lp-gap-scale: 1;
}

#root { min-height: 100vh; }

/* utility */
.lp-wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.lp-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stream-600);
  margin: 0 0 22px;
  display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
}
.lp-eyebrow .bar { width: 26px; height: 1px; background: var(--stream-400); flex-shrink: 0; }
.on-dark .lp-eyebrow { color: rgba(255,255,255,0.82); }
.on-dark .lp-eyebrow .bar { background: rgba(255,255,255,0.55); }

.lp-h2 {
  font-family: var(--lp-headline-font);
  font-weight: var(--lp-headline-weight);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.32;
  letter-spacing: 0.01em;
  color: var(--ink-900);
  margin: 0 0 24px;
  max-width: 22ch;
  text-wrap: balance;
}
.on-dark .lp-h2 { color: #fff; }
.lp-lede {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-600);
  margin: 0;
  max-width: 60ch;
}
.on-dark .lp-lede { color: rgba(255,255,255,0.78); }

/* ===== Header ===== */
.lp-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--dur-base) var(--ease-swell), border-color var(--dur-base) var(--ease-swell), backdrop-filter var(--dur-base);
}
.lp-header__inner {
  max-width: 1200px; margin: 0 auto;
  height: 72px; padding: 0 40px;
  display: flex; align-items: center; gap: 28px;
}
.lp-header.scrolled {
  background: rgba(251,251,250,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-hairline);
}
.lp-header.over-hero { background: transparent; border-bottom: 1px solid transparent; }
.lp-brand {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-800);
  background: none; border: 0; padding: 0; cursor: pointer;
  display: flex; align-items: center; gap: 11px;
  transition: color var(--dur-base) var(--ease-swell);
}
.lp-brand .mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--stream-gradient);
  display: grid; place-items: center;
  font-size: 13px; color: #fff; font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(15,44,95,0.25);
}
.lp-header.over-hero .lp-brand { color: #fff; }
.lp-nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.lp-nav__link {
  font-family: var(--font-sans);
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ink-700);
  background: none; border: 0; padding: 6px 0; cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-swell);
}
.lp-nav__link:hover { color: var(--stream-700); }
.lp-header.over-hero .lp-nav__link { color: rgba(255,255,255,0.85); }
.lp-header.over-hero .lp-nav__link:hover { color: #fff; }
.lp-header__actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.lp-nav + .lp-header__actions { margin-left: 8px; }

.lp-lang {
  display: inline-flex; align-items: center;
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  border: 1px solid var(--border-soft); border-radius: var(--radius-pill);
  overflow: hidden;
}
.lp-header.over-hero .lp-lang { border-color: rgba(255,255,255,0.35); }
.lp-lang button {
  background: none; border: 0; cursor: pointer;
  padding: 6px 12px; color: var(--ink-500);
  font: inherit; letter-spacing: 0.04em;
  transition: all var(--dur-fast) var(--ease-swell);
}
.lp-header.over-hero .lp-lang button { color: rgba(255,255,255,0.7); }
.lp-lang button.active { background: var(--stream-700); color: #fff; }
.lp-header.over-hero .lp-lang button.active { background: #fff; color: var(--stream-900); }

/* buttons */
.lp-btn {
  font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.01em;
  border-radius: var(--radius-md); border: 1px solid transparent; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all var(--dur-base) var(--ease-swell);
  font-size: 14px; padding: 11px 22px;
  text-decoration: none;
}
.lp-btn .arrow { transition: transform var(--dur-base) var(--ease-swell); }
.lp-btn:hover .arrow { transform: translateX(4px); }
.lp-btn--primary { background: var(--stream-700); color: #fff; }
.lp-btn--primary:hover { background: var(--stream-800); }
.lp-btn--primary:active { background: var(--stream-900); transform: translateY(1px); }
.lp-btn--lg { font-size: 15px; padding: 15px 30px; border-radius: var(--radius-md); }
.lp-btn--on-dark { background: #fff; color: var(--stream-900); }
.lp-btn--on-dark:hover { background: var(--stream-50); }
.lp-btn--ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.lp-btn--ghost-dark:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.lp-btn--nav { padding: 9px 18px; font-size: 13px; }

/* ===== Hero ===== */
.lp-hero { position: relative; min-height: 100vh; color: #fff; overflow: hidden; display: flex; }
.lp-hero__bg { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.lp-hero__bg img { width: 100%; height: 120%; object-fit: cover; object-position: center 35%; display: block; }
.lp-hero__overlay { position: absolute; inset: 0; z-index: 1; }
.lp-hero__inner { position: relative; z-index: 2; max-width: 1200px; margin: auto auto; width: 100%; padding: 120px 40px 96px; }

/* default: full-bleed */
.lp-hero--full .lp-hero__overlay {
  background: linear-gradient(180deg, rgba(8,26,61,0.50) 0%, rgba(8,26,61,0.18) 32%, rgba(8,26,61,0.82) 100%);
}
/* deep navy variant: heavier flat navy */
.lp-hero--navy .lp-hero__bg img { opacity: 0.35; }
.lp-hero--navy { background: var(--stream-900); }
.lp-hero--navy .lp-hero__overlay { background: linear-gradient(180deg, rgba(8,26,61,0.65) 0%, rgba(8,26,61,0.55) 50%, rgba(8,26,61,0.9) 100%); }
/* split variant */
.lp-hero--split .lp-hero__bg { left: auto; right: 0; width: 42%; }
.lp-hero--split .lp-hero__bg img { height: 120%; }
.lp-hero--split { background: var(--paper); color: var(--ink-900); }
.lp-hero--split .lp-hero__overlay { left: auto; right: 0; width: 42%; background: linear-gradient(90deg, var(--paper) 0%, rgba(251,251,250,0.0) 30%, rgba(8,26,61,0.18) 100%); }
.lp-hero--split .lp-hero__inner { max-width: 1200px; }
.lp-hero--split .lp-hero__content { max-width: 54%; }
.lp-hero--split .lp-hero__title { color: var(--ink-900); }
.lp-hero--split .lp-hero__lede { color: var(--ink-600); }
.lp-hero--split .lp-hero__eyebrow { color: var(--stream-600); }
.lp-hero--split .lp-hero__eyebrow .bar { background: var(--stream-400); }
.lp-hero--split .lp-hero__cta-sub { color: var(--ink-500); }

.lp-hero__content { max-width: 760px; }
.lp-hero__eyebrow {
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  margin: 0 0 28px; display: inline-flex; align-items: center; gap: 14px; white-space: nowrap;
}
.lp-hero__eyebrow .bar { width: 30px; height: 1px; background: rgba(255,255,255,0.6); flex-shrink: 0; }
.lp-hero__title {
  font-family: var(--lp-headline-font);
  font-weight: var(--lp-headline-weight);
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.22;
  letter-spacing: 0.005em;
  color: #fff; margin: 0 0 30px;
  max-width: 18ch;
  text-wrap: balance;
}
.lp-hero__lede {
  font-size: clamp(16px, 1.5vw, 21px); line-height: 1.8;
  color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 0 42px;
}
.lp-hero__actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.lp-hero__cta-sub {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.lp-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.24em;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
}
.lp-hero--split .lp-hero__scroll { color: var(--ink-400); }
.lp-hero__scroll .line { width: 1px; height: 40px; background: linear-gradient(180deg, currentColor, transparent); animation: lp-drift 2.4s var(--ease-swell) infinite; }
@keyframes lp-drift { 0% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: bottom; } }

/* ===== Sections ===== */
.lp-section { padding: var(--lp-section-pad) 0; }
.lp-section--warm { background: var(--paper-warm); }
.lp-section--deep { background: var(--stream-900); color: #fff; }
.lp-section__head { max-width: 720px; margin-bottom: calc(64px * var(--lp-gap-scale)); }
.lp-section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lp-section__head.center .lp-eyebrow { justify-content: center; }
.lp-section__head.center .lp-h2, .lp-section__head.center .lp-lede { margin-left: auto; margin-right: auto; }

/* ===== Problem ===== */
.lp-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lp-problem-card {
  background: var(--paper-elev); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg); padding: 36px 32px 38px; box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur-base) var(--ease-swell), transform var(--dur-base) var(--ease-swell);
}
.lp-problem-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.lp-problem-card .num {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--stream-400); margin-bottom: 20px;
}
.lp-problem-card h3 {
  font-family: var(--lp-headline-font); font-weight: 700;
  font-size: 20px; line-height: 1.45; color: var(--ink-900); margin: 0 0 12px;
}
.lp-problem-card p { font-size: 15px; line-height: 1.8; color: var(--ink-600); margin: 0; }
.lp-problem-card:last-child { background: var(--stream-900); border-color: var(--stream-900); }
.lp-problem-card:last-child .num { color: var(--stream-300); }
.lp-problem-card:last-child h3 { color: #fff; }
.lp-problem-card:last-child p { color: rgba(255,255,255,0.78); }

/* ===== Strengths ===== */
.lp-strengths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border-hairline); }
.lp-strength {
  padding: 48px 36px 52px; border-left: 1px solid var(--border-hairline);
  position: relative; transition: background var(--dur-base) var(--ease-swell);
}
.lp-strength:first-child { border-left: 0; }
.lp-strength:hover { background: var(--stream-50); }
.lp-strength .big {
  font-family: var(--font-display); font-weight: 600;
  font-size: 64px; line-height: 1; letter-spacing: 0.02em;
  background: var(--stream-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 28px; display: block;
}
.lp-strength h3 {
  font-family: var(--lp-headline-font); font-weight: 700; font-size: 22px;
  color: var(--ink-900); margin: 0 0 14px; line-height: 1.4;
}
.lp-strength p { font-size: 15px; line-height: 1.85; color: var(--ink-600); margin: 0; }

/* ===== Scope ===== */
.lp-scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.lp-scope-block { margin-bottom: 40px; }
.lp-scope-block:last-child { margin-bottom: 0; }
.lp-scope-block .label {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--stream-600);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.lp-scope-block .label .bar { width: 22px; height: 1px; background: var(--stream-400); flex-shrink: 0; }
.lp-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-chip {
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--paper-elev); border: 1px solid var(--border-soft); color: var(--ink-700);
}
.lp-chip.primary { background: var(--stream-700); color: #fff; border-color: var(--stream-700); }
.lp-scope-docs { font-size: 16px; line-height: 1.85; color: var(--ink-600); margin: 0 0 18px; }
.lp-scope-aside {
  background: var(--stream-900); border-radius: var(--radius-lg); padding: 48px 44px; color: #fff;
  position: relative; overflow: hidden;
}
.lp-scope-aside .glow { position: absolute; inset: 0; background: var(--stream-gradient); opacity: 0.22; }
.lp-scope-aside__inner { position: relative; z-index: 1; }
.lp-scope-aside h3 {
  font-family: var(--lp-headline-font); font-weight: 700; font-size: 24px; line-height: 1.5;
  color: #fff; margin: 0 0 18px;
}
.lp-scope-aside p { color: rgba(255,255,255,0.8); font-size: 15px; margin: 0; line-height: 1.85; }

/* ===== Work / stats ===== */
.lp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 56px; border-top: 1px solid rgba(255,255,255,0.16); border-bottom: 1px solid rgba(255,255,255,0.16); }
.lp-stat { padding: 44px 32px; border-left: 1px solid rgba(255,255,255,0.16); }
.lp-stat:first-child { border-left: 0; }
.lp-stat .v {
  font-family: var(--font-display); font-weight: 600; font-size: 52px; line-height: 1;
  letter-spacing: 0.01em; color: #fff; margin-bottom: 14px;
}
.lp-stat .l { font-family: var(--font-sans); font-size: 14px; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; }
.lp-work-foot { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; }
.lp-sectors { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-sector {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.04em;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.85);
}
.lp-work-note { font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

/* ===== Process ===== */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.lp-step { padding: 0 28px; position: relative; }
.lp-step:first-child { padding-left: 0; }
.lp-step__line { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.lp-step__dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--stream-500);
  flex-shrink: 0; box-shadow: 0 0 0 5px var(--stream-100);
}
.lp-step__rail { height: 1px; background: var(--border-soft); flex: 1; }
.lp-step:last-child .lp-step__rail { background: transparent; }
.lp-step .k {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--stream-600); margin-bottom: 12px;
}
.lp-step h3 { font-family: var(--lp-headline-font); font-weight: 700; font-size: 20px; color: var(--ink-900); margin: 0 0 10px; }
.lp-step p { font-size: 14.5px; line-height: 1.8; color: var(--ink-600); margin: 0; }
.lp-process-note {
  margin-top: 56px; text-align: center;
  font-family: var(--font-body); font-style: italic; font-size: 18px; color: var(--stream-700);
}

/* ===== FAQ ===== */
.lp-faq { max-width: 820px; margin: 0 auto; }
.lp-faq__item { border-top: 1px solid var(--border-hairline); }
.lp-faq__item:last-child { border-bottom: 1px solid var(--border-hairline); }
.lp-faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 8px; font-family: var(--lp-headline-font); font-weight: 700;
  font-size: 19px; color: var(--ink-900); line-height: 1.5;
}
.lp-faq__icon {
  flex-shrink: 0; width: 28px; height: 28px; position: relative;
  transition: transform var(--dur-base) var(--ease-swell);
}
.lp-faq__icon::before, .lp-faq__icon::after {
  content: ""; position: absolute; background: var(--stream-500); border-radius: 2px;
  top: 50%; left: 50%;
}
.lp-faq__icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.lp-faq__icon::after { width: 2px; height: 16px; transform: translate(-50%, -50%); transition: transform var(--dur-base) var(--ease-swell); }
.lp-faq__item.open .lp-faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.lp-faq__a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-swell); }
.lp-faq__a-inner { padding: 0 8px 28px; font-size: 16px; line-height: 1.85; color: var(--ink-600); max-width: 64ch; }

/* ===== Contact ===== */
.lp-contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.lp-contact-intro .lp-h2 { color: #fff; }
.lp-contact-card {
  background: var(--paper-elev); border-radius: var(--radius-lg); padding: 44px;
  box-shadow: var(--shadow-3); border: 1px solid var(--border-hairline);
}
.lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.lp-field { display: flex; flex-direction: column; }
.lp-field--full { grid-column: 1 / -1; }
.lp-field label {
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; color: var(--ink-700);
  margin-bottom: 7px; letter-spacing: 0.02em; display: flex; gap: 8px; align-items: center;
}
.lp-field label .req {
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--stream-600); background: var(--stream-50); padding: 2px 7px; border-radius: var(--radius-pill);
}
.lp-input, .lp-select, .lp-textarea {
  width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--ink-900);
  background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast) var(--ease-swell), box-shadow var(--dur-fast);
}
.lp-input, .lp-select { height: 46px; padding: 0 14px; }
.lp-textarea { padding: 13px 14px; min-height: 130px; resize: vertical; font-family: var(--font-body); line-height: 1.7; }
.lp-input:focus, .lp-select:focus, .lp-textarea:focus { outline: none; border-color: var(--stream-500); box-shadow: 0 0 0 3px rgba(63,148,204,0.18); background: #fff; }
.lp-input.error, .lp-textarea.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(176,70,60,0.14); }
.lp-input::placeholder, .lp-textarea::placeholder { color: var(--ink-400); }
.lp-err { font-family: var(--font-sans); font-size: 12px; color: var(--danger); margin-top: 6px; }
.lp-form-foot { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.lp-form-foot .hint { font-family: var(--font-sans); font-size: 13px; color: var(--ink-500); }
.lp-btn:disabled { opacity: 0.7; cursor: progress; }
.lp-send-err {
  margin: 16px 0 0; font-family: var(--font-sans); font-size: 13px; color: var(--danger);
  background: rgba(176,70,60,0.07); border: 1px solid rgba(176,70,60,0.2);
  border-radius: var(--radius-sm); padding: 11px 14px;
}
.lp-thanks { text-align: center; padding: 40px 16px; }
.lp-thanks .ic {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--stream-gradient); display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(15,44,95,0.25); animation: lp-pop var(--dur-slow) var(--ease-swell);
}
@keyframes lp-pop { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lp-thanks h3 { font-family: var(--lp-headline-font); font-weight: 700; font-size: 24px; color: var(--ink-900); margin: 0 0 12px; }
.lp-thanks p { font-size: 15px; color: var(--ink-600); margin: 0 0 28px; max-width: 40ch; margin-inline: auto; }

/* ===== Footer ===== */
.lp-footer { background: var(--stream-900); color: #fff; padding: 88px 0 36px; }
.lp-footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.lp-footer__links { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.lp-footer__brand .name {
  font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 11px;
}
.lp-footer__brand .name .mark { width: 26px; height: 26px; border-radius: 50%; background: var(--stream-gradient); display: grid; place-items: center; font-size: 13px; color: #fff; }
.lp-footer__brand p { font-style: italic; color: rgba(255,255,255,0.72); font-size: 15px; max-width: 300px; margin: 0; line-height: 1.65; }
.lp-footer h6 {
  font-family: var(--font-display); font-weight: 500; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff; margin: 0 0 18px;
}
.lp-footer ul { list-style: none; padding: 0; margin: 0; }
.lp-footer li { margin-bottom: 11px; }
.lp-footer__link { font-family: var(--font-sans); font-size: 13.5px; color: rgba(255,255,255,0.7); background: none; border: 0; padding: 0; cursor: pointer; transition: color var(--dur-fast); }
.lp-footer__link:hover { color: #fff; }
.lp-footer__bottom {
  margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
}
.lp-footer__bottom .legal { font-family: var(--font-sans); font-size: 12px; color: rgba(255,255,255,0.5); }
.lp-footer__bottom .note { font-family: var(--font-sans); font-size: 11.5px; color: rgba(255,255,255,0.4); max-width: 420px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-swell), transform 0.7s var(--ease-swell); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .lp-scope-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .lp-footer__top { gap: 40px; }
}
@media (max-width: 760px) {
  .lp-wrap { padding: 0 22px; }
  :root { --lp-section-pad: 80px; }
  .lp-header__inner { padding: 0 22px; gap: 14px; }
  .lp-nav { display: none; }
  .lp-hero__inner { padding: 110px 22px 90px; }
  .lp-hero--split .lp-hero__bg, .lp-hero--split .lp-hero__overlay { display: none; }
  .lp-hero--split .lp-hero__content { max-width: 100%; }
  .lp-problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-strengths { grid-template-columns: 1fr; }
  .lp-strength { border-left: 0; border-top: 1px solid var(--border-hairline); padding: 36px 0; }
  .lp-strength:first-child { border-top: 0; }
  .lp-stats { grid-template-columns: 1fr; }
  .lp-stat { border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); padding: 32px 0; }
  .lp-stat:first-child { border-top: 0; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-step { padding: 0; }
  .lp-step__rail { display: none; }
  .lp-form-grid { grid-template-columns: 1fr; }
  .lp-footer__top { flex-direction: column; gap: 32px; }
  .lp-footer__links { align-items: flex-start; }
  .lp-contact-card { padding: 28px; }
  .lp-scope-aside { padding: 36px 28px; }
}
