/*
 * Training Landing Page — Cinematic Hero · Parallax · Tim Hortons
 * Dark hero with bg image · Kinetic typography · Glassmorphism sections
 */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

/* ===================================
   TOKENS
   =================================== */
:root {
  --lp-white: #ffffff;
  --lp-off: #FAFAF8;
  --lp-cream: #F5F2ED;
  --lp-black: #141414;
  --lp-gray: #5C5C5C;
  --lp-gray-light: #9A9A9A;
  --lp-border: #E2DFD9;
  --lp-border-light: #ECEAE5;
  --lp-beige: #E8DDD0;
  --lp-red: #C8102E;
  --lp-red-hover: #A50D25;
  --lp-red-dark: #8B0A1E;
  --lp-red-soft: rgba(200, 16, 46, 0.08);
  --lp-serif: 'Instrument Serif', Georgia, serif;
  --lp-sans: 'Sofia Pro Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --lp-sans-b: 'Sofia Pro Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --lp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lp-nav: 64px;
}

/* ===================================
   BASE
   =================================== */
.lp {
  background: var(--lp-off);
  color: var(--lp-black);
  font-family: var(--lp-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

body:has(.lp) {
  overflow: visible !important;
  overflow-x: hidden !important;
}

.lp *::selection {
  background: var(--lp-red);
  color: var(--lp-white);
}

/* ===================================
   NAV
   =================================== */
.lp-nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--lp-nav);
  z-index: 100;
  transition: background 0.4s var(--lp-ease), box-shadow 0.4s var(--lp-ease), backdrop-filter 0.4s var(--lp-ease);
}

.lp-nav--solid {
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-white);
}

.lp-nav-logo {
  height: 30px;
  width: auto;
}

.lp-nav-name {
  font-family: var(--lp-sans-b);
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-white);
  letter-spacing: -0.01em;
  opacity: 0.9;
}

/* --- Nav Login Button --- */
.lp-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--lp-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-family: var(--lp-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s var(--lp-ease);
}

.lp-nav-login:hover:not(:disabled) {
  background: var(--lp-red);
  border-color: var(--lp-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4);
}

.lp-nav-login:active:not(:disabled) {
  transform: translateY(0);
}

.lp-nav-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lp-nav-login .lp-g-icon {
  flex-shrink: 0;
}

/* ===================================
   HERO — CINEMATIC FULL VIEWPORT
   =================================== */
.lp-hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image layer */
.lp-hero-bg {
  position: absolute;
  inset: -60px;
  background: url('/hero-bg.jpg') center center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

/* Dark gradient overlay for text legibility */
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(20, 20, 20, 0.75) 0%,
      rgba(20, 20, 20, 0.60) 40%,
      rgba(20, 20, 20, 0.70) 70%,
      rgba(20, 20, 20, 0.90) 100%
    );
}

/* Floating decorative shapes */
.lp-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.lp-hero-shape {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* Red accent line across hero */
.lp-hero-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--lp-red), transparent);
  z-index: 5;
  transform-origin: left center;
}

/* Hero content */
.lp-hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: opacity, transform;
}

/* Pill badge — light style for dark bg */
.lp-hero-pill {
  margin-bottom: 36px;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lp-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-red);
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.6);
  animation: lp-pulse 2.5s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(200, 16, 46, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 24px rgba(200, 16, 46, 0.8); }
}

/* Kinetic headline — white on dark */
.lp-hero-h1 {
  font-family: var(--lp-serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--lp-white);
  margin-bottom: 28px;
  position: relative;
}

.lp-hero-line {
  display: block;
}

.lp-hero-word {
  display: inline-block;
  margin-right: 0.22em;
  will-change: transform, opacity;
}

.lp-hero-word:last-child {
  margin-right: 0;
}

/* Red underline accent under the headline */
.lp-hero-underline {
  display: block;
  width: 120px;
  height: 4px;
  background: var(--lp-red);
  border-radius: 2px;
  margin: 16px auto 0;
  transform-origin: center;
  box-shadow: 0 0 20px rgba(200, 16, 46, 0.4);
}

/* Subtitle — light on dark */
.lp-hero-p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
  text-align: center;
}

/* CTA actions row */
.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Primary CTA — red on dark */
.lp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--lp-red);
  color: var(--lp-white);
  border: none;
  border-radius: 100px;
  font-family: var(--lp-sans-b);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.01em;
  will-change: transform;
  transition: box-shadow 0.3s var(--lp-ease);
}

.lp-hero-cta:hover {
  box-shadow: 0 8px 40px rgba(200, 16, 46, 0.45);
}

.lp-hero-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Secondary CTA — ghost on dark */
.lp-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-family: var(--lp-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--lp-ease);
}

.lp-hero-cta-secondary:hover {
  color: var(--lp-white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

/* Test access block */
.lp-test-access {
  margin-top: 22px;
  width: min(760px, 100%);
  padding: 16px;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-test-access-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.lp-test-access-title {
  font-family: var(--lp-sans-b);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.94);
}

.lp-test-access-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.lp-test-access-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
}

.lp-test-input {
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  font-size: 14px;
}

.lp-test-input:focus {
  outline: none;
  border-color: rgba(200, 16, 46, 0.75);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.16);
}

.lp-test-submit {
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #c8102e 0%, #a50d25 100%);
  color: #fff;
  font-family: var(--lp-sans-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lp-test-submit:hover:not(:disabled) {
  filter: brightness(1.05);
}

.lp-test-submit:disabled,
.lp-test-input:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.lp-password-access {
  margin-top: 20px;
}

.lp-password-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.lp-password-tabs--three {
  grid-template-columns: repeat(3, 1fr);
}

.lp-password-tab {
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--lp-sans-b);
  font-size: 12px;
  cursor: pointer;
}

.lp-password-tab.active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--lp-black);
}

.lp-password-setup-fields {
  grid-template-columns: 1fr auto;
}

.lp-set-password-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.72), rgba(20, 20, 20, 0.88)),
    url('/hero-bg.jpg') center / cover no-repeat;
}

.lp-set-password-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lp-set-password-card {
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--lp-white);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lp-set-password-logo {
  width: 92px;
  height: auto;
}

.lp-set-password-card h1 {
  margin: 0;
  font-family: var(--lp-sans-b);
  font-size: 28px;
  letter-spacing: 0;
}

.lp-set-password-card p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.74);
}

.lp-set-password-message {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.1);
}

.lp-set-password-message.error {
  background: rgba(200, 16, 46, 0.18);
}

.lp-set-password-message.warning {
  background: rgba(245, 124, 0, 0.18);
}

.lp-set-password-message.success {
  background: rgba(45, 138, 86, 0.18);
}

.lp-set-password-link {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-family: var(--lp-sans-b);
}

.lp-auth-page {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(20, 20, 20, 0.88) 0%, rgba(20, 20, 20, 0.62) 45%, rgba(20, 20, 20, 0.9) 100%),
    url('/hero-bg.jpg') center / cover no-repeat;
}

.lp-nav-brand-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.lp-auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--lp-nav) + 32px) 24px 32px;
}

.lp-auth-card {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  color: var(--lp-white);
  background: rgba(20, 20, 20, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.lp-auth-logo {
  width: 96px;
  height: auto;
}

.lp-auth-kicker {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--lp-sans-b);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-auth-card h1 {
  margin: 0;
  color: var(--lp-white);
  font-family: var(--lp-serif);
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.lp-auth-card p {
  margin: 0 0 8px;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.lp-auth-google {
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #171717;
  font-family: var(--lp-sans-b);
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease);
}

.lp-auth-google:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.lp-auth-google:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.lp-auth-separator {
  position: relative;
  display: grid;
  place-items: center;
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.lp-auth-separator::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.lp-auth-separator span {
  position: relative;
  padding: 0 12px;
  background: rgba(20, 20, 20, 0.88);
}

.lp-auth-password,
.lp-auth-test {
  width: 100%;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.08);
}

.lp-auth-fields {
  grid-template-columns: 1fr;
}

.lp-auth-form-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.lp-auth-test {
  margin-top: 0;
}

/* Scroll indicator chevron */
.lp-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.lp-scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   STATS COUNTERS
   =================================== */
.lp-stats {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  border-bottom: 1px solid var(--lp-border-light);
  background: var(--lp-off);
}

.lp-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lp-stat-number {
  font-family: var(--lp-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--lp-red);
  letter-spacing: -0.02em;
}

.lp-stat-label {
  font-family: var(--lp-sans-b);
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-black);
  margin-top: 4px;
}

.lp-stat-desc {
  font-size: 13px;
  color: var(--lp-gray-light);
}

/* ===================================
   FEATURES STRIP
   =================================== */
.lp-features {
  position: relative;
  z-index: 1;
  padding: 80px 0 96px;
  background: var(--lp-off);
}

.lp-features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.lp-features-head {
  text-align: center;
  margin-bottom: 48px;
}

.lp-features-title {
  font-family: var(--lp-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--lp-black);
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-feat {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--lp-border-light);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.35s var(--lp-ease);
}

.lp-feat:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--lp-border);
}

.lp-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--feat-color, var(--lp-black));
  margin-bottom: 18px;
  transition: background 0.3s var(--lp-ease);
}

.lp-feat:hover .lp-feat-icon {
  background: var(--lp-border-light);
}

.lp-feat-label {
  font-family: var(--lp-sans-b);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--lp-black);
}

.lp-feat-desc {
  font-size: 13px;
  color: var(--lp-gray);
  line-height: 1.55;
  margin-bottom: 14px;
}

.lp-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.lp-feat-tags span {
  padding: 3px 9px;
  background: var(--lp-cream);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  color: var(--lp-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===================================
   FOOTER
   =================================== */
.lp-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--lp-border-light);
  padding: 28px 0;
  background: var(--lp-off);
}

.lp-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-footer-logo {
  width: 36px;
}

.lp-footer-left p {
  font-size: 13px;
  color: var(--lp-gray);
}

.lp-footer-right p {
  font-size: 12px;
  color: var(--lp-gray-light);
}

/* ===================================
   SHARED — SPINNER & GOOGLE ICON
   =================================== */
.lp-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--lp-white);
  border-radius: 50%;
  animation: lp-spin 0.7s linear infinite;
}

.lp-spinner--sm {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--lp-white);
  border-radius: 50%;
  animation: lp-spin 0.7s linear infinite;
}

.lp-spinner--light {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--lp-white);
  border-radius: 50%;
  animation: lp-spin 0.7s linear infinite;
}

@keyframes lp-spin { to { transform: rotate(360deg); } }

.lp-g-icon {
  flex-shrink: 0;
}

/* ===================================
   NOTIFICATION
   =================================== */
.lp-notif {
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--lp-border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  max-width: 400px;
  z-index: 9999;
  animation: lp-notif-in 0.4s var(--lp-ease);
}

.lp-notif--out {
  animation: lp-notif-out 0.3s var(--lp-ease) forwards;
}

@keyframes lp-notif-in {
  from { transform: translateX(400px) scale(0.95); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes lp-notif-out {
  from { transform: translateX(0) scale(1); opacity: 1; }
  to { transform: translateX(400px) scale(0.95); opacity: 0; }
}

.lp-notif-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-notif--error .lp-notif-icon { background: rgba(200, 16, 46, 0.1); color: var(--lp-red); }
.lp-notif--success .lp-notif-icon { background: rgba(45, 138, 86, 0.1); color: #2D8A56; }
.lp-notif--warning .lp-notif-icon { background: rgba(245, 124, 0, 0.1); color: #F57C00; }
.lp-notif--info .lp-notif-icon { background: rgba(25, 118, 210, 0.1); color: #1976D2; }

.lp-notif-body { flex: 1; }

.lp-notif-title {
  font-family: var(--lp-sans-b);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.lp-notif-msg {
  font-size: 13px;
  color: var(--lp-gray);
}

.lp-notif-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--lp-gray-light);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.lp-notif-close:hover { color: var(--lp-black); }

/* ===================================
   ACCESSIBILITY
   =================================== */
.lp *:focus-visible {
  outline: 2px solid var(--lp-red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .lp *, .lp *::before, .lp *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .lp-pill-dot { animation: none !important; }
  .lp-hero-word {
    will-change: auto !important;
  }
  .lp-scroll-indicator { display: none !important; }
  .lp-hero-shape { display: none !important; }
}

/* ===================================
   RESPONSIVE — TABLET
   =================================== */
@media (max-width: 1024px) {
  .lp-hero-content {
    padding: 0 32px;
  }

  .lp-hero-h1 {
    font-size: clamp(38px, 6vw, 60px);
  }

  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* ===================================
   RESPONSIVE — MOBILE
   =================================== */
@media (max-width: 768px) {
  :root { --lp-nav: 56px; }

  .lp-nav-inner {
    padding: 0 20px;
  }

  .lp-nav-login {
    padding: 8px 16px;
    font-size: 12px;
  }

  .lp-hero {
    height: 100svh;
  }

  .lp-hero-bg {
    inset: -20px;
  }

  .lp-hero-content {
    padding: 0 20px;
  }

  .lp-hero-h1 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .lp-hero-p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .lp-hero-cta {
    padding: 14px 28px;
    font-size: 15px;
  }

  .lp-hero-cta-secondary {
    padding: 14px 22px;
    font-size: 14px;
  }

  .lp-test-access {
    padding: 14px;
  }

  .lp-test-access-fields {
    grid-template-columns: 1fr;
  }

  .lp-test-submit {
    width: 100%;
  }

  .lp-password-setup-fields {
    grid-template-columns: 1fr;
  }

  .lp-hero-underline {
    width: 80px;
    height: 3px;
    margin-top: 12px;
  }

  .lp-scroll-indicator { display: none; }

  .lp-hero-shape:nth-child(n+4) { display: none; }

  .lp-stats {
    padding: 56px 0;
  }

  .lp-stats-inner {
    padding: 0 20px;
  }

  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }

  .lp-stat-number {
    font-size: clamp(30px, 7vw, 40px);
  }

  .lp-features {
    padding: 56px 0 72px;
  }

  .lp-features-inner {
    padding: 0 20px;
  }

  .lp-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp-feat {
    padding: 24px 20px;
  }

  .lp-footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 0 20px;
  }

  .lp-footer-left {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===================================
   RESPONSIVE — SMALL
   =================================== */
@media (max-width: 400px) {
  .lp-hero-h1 {
    font-size: 28px;
  }

  .lp-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .lp-hero-cta,
  .lp-hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .lp-hero-cta {
    padding: 14px 24px;
    font-size: 14px;
  }

  .lp-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
  }
}
