/* ============================================================
   Loadwyre — lwy.css
   Freight load-matching automation platform
   Brand: White + Deep Navy #1A2B5F + Teal #00B4A6
   Typography: DM Sans (display+body) + IBM Plex Mono (API/sparse)
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---- Custom Properties ---- */
:root {
  --lwy-white: #FFFFFF;
  --lwy-bg: #FFFFFF;
  --lwy-bg2: #F4F6FA;
  --lwy-surface: #EEF1F8;
  --lwy-border: #D1D9E6;
  --lwy-teal: #00B4A6;
  --lwy-teal-hover: #009E92;
  --lwy-navy: #1A2B5F;
  --lwy-navy-light: #263D7A;
  --lwy-text: #0F1B38;
  --lwy-text-secondary: #4A5568;
  --lwy-text-muted: #8899AA;
  --lwy-success: #16A34A;
  --lwy-danger: #DC2626;
  --lwy-mono: 'IBM Plex Mono', monospace;
  --lwy-sans: 'DM Sans', sans-serif;
  --lwy-radius: 8px;
  --lwy-radius-lg: 12px;
  --lwy-shadow-sm: 0 1px 3px rgba(26,43,95,0.08), 0 1px 2px rgba(26,43,95,0.06);
  --lwy-shadow: 0 4px 12px rgba(26,43,95,0.10), 0 2px 4px rgba(26,43,95,0.06);
  --lwy-shadow-lg: 0 12px 32px rgba(26,43,95,0.14), 0 4px 8px rgba(26,43,95,0.08);
  --lwy-max-width: 1200px;
  --lwy-section-pad: clamp(64px, 8vw, 100px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--lwy-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--lwy-text);
  background: var(--lwy-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--lwy-teal); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { list-style: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.lwy-container {
  max-width: var(--lwy-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.lwy-section {
  padding: var(--lwy-section-pad) 0;
}

.lwy-section--bg2 {
  background: var(--lwy-bg2);
}

.lwy-section--surface {
  background: var(--lwy-surface);
}

.lwy-section--navy {
  background: var(--lwy-navy);
  color: var(--lwy-white);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--lwy-sans);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lwy-text);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

.lwy-display-xl { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.1; }
.lwy-display-lg { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; }

.lwy-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--lwy-text-secondary);
}

.lwy-mono {
  font-family: var(--lwy-mono);
  font-size: 0.875rem;
}

.lwy-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lwy-teal);
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.lwy-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lwy-white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: 68px;
  display: flex;
  align-items: center;
}

.lwy-nav.scrolled {
  border-bottom-color: var(--lwy-border);
  box-shadow: 0 2px 8px rgba(26,43,95,0.06);
}

.lwy-nav__inner {
  max-width: var(--lwy-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.lwy-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lwy-nav__logo svg { height: 32px; width: auto; }

.lwy-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.lwy-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lwy-text);
  padding: 8px 12px;
  border-radius: var(--lwy-radius);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.lwy-nav__link:hover {
  color: var(--lwy-navy);
  background: var(--lwy-bg2);
  text-decoration: none;
}

/* Dropdown */
.lwy-nav__dropdown {
  position: relative;
}

.lwy-nav__dropdown-btn {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lwy-text);
  padding: 8px 12px;
  border-radius: var(--lwy-radius);
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lwy-sans);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.lwy-nav__dropdown-btn:hover {
  color: var(--lwy-navy);
  background: var(--lwy-bg2);
}

.lwy-nav__dropdown-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.lwy-nav__dropdown:hover .lwy-nav__dropdown-btn svg,
.lwy-nav__dropdown.open .lwy-nav__dropdown-btn svg {
  transform: rotate(180deg);
}

.lwy-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--lwy-shadow-lg);
  display: none;
  z-index: 200;
}

.lwy-nav__dropdown:hover .lwy-nav__dropdown-menu,
.lwy-nav__dropdown.open .lwy-nav__dropdown-menu {
  display: block;
}

.lwy-nav__dropdown-item {
  display: block;
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lwy-text);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.lwy-nav__dropdown-item:hover {
  background: var(--lwy-bg2);
  color: var(--lwy-navy);
  text-decoration: none;
}

body.light-top .lwy-nav__dropdown-menu {
  background: var(--lwy-white);
  border-color: var(--lwy-border);
}
body.light-top .lwy-nav__dropdown-item {
  color: var(--lwy-text);
}
body.light-top .lwy-nav__dropdown-item:hover {
  background: var(--lwy-bg2);
  color: var(--lwy-navy);
}

.lwy-nav__cta {
  margin-left: auto;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.lwy-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.lwy-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lwy-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.lwy-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lwy-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.lwy-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lwy-nav__mobile {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--lwy-white);
  border-bottom: 1px solid var(--lwy-border);
  padding: 16px clamp(20px, 5vw, 48px);
  z-index: 99;
  box-shadow: 0 8px 24px rgba(26,43,95,0.10);
}

.lwy-nav__mobile.open { display: block; }

.lwy-nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lwy-nav__mobile-link {
  display: block;
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--lwy-text);
  border-radius: var(--lwy-radius);
  text-decoration: none;
  transition: background 0.15s;
}

.lwy-nav__mobile-link:hover {
  background: var(--lwy-bg2);
  text-decoration: none;
}

.lwy-nav__mobile-sub {
  padding-left: 24px;
  border-left: 2px solid var(--lwy-border);
  margin: 4px 0 4px 12px;
}

.lwy-nav__mobile-cta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--lwy-border);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lwy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-family: var(--lwy-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--lwy-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.lwy-btn:hover { text-decoration: none; transform: translateY(-1px); }
.lwy-btn:active { transform: translateY(0); }

.lwy-btn--primary {
  background: var(--lwy-teal);
  color: var(--lwy-white);
  border-color: var(--lwy-teal);
  box-shadow: 0 2px 8px rgba(0,180,166,0.25);
}

.lwy-btn--primary:hover {
  background: var(--lwy-teal-hover);
  border-color: var(--lwy-teal-hover);
  box-shadow: 0 4px 16px rgba(0,180,166,0.35);
  color: var(--lwy-white);
}

.lwy-btn--outline {
  background: transparent;
  color: var(--lwy-teal);
  border-color: var(--lwy-teal);
}

.lwy-btn--outline:hover {
  background: var(--lwy-teal);
  color: var(--lwy-white);
}

.lwy-btn--navy {
  background: var(--lwy-navy);
  color: var(--lwy-white);
  border-color: var(--lwy-navy);
}

.lwy-btn--navy:hover {
  background: var(--lwy-navy-light);
  border-color: var(--lwy-navy-light);
  color: var(--lwy-white);
}

.lwy-btn--ghost-light {
  background: rgba(255,255,255,0.12);
  color: var(--lwy-white);
  border-color: rgba(255,255,255,0.3);
}

.lwy-btn--ghost-light:hover {
  background: rgba(255,255,255,0.2);
  color: var(--lwy-white);
}

.lwy-btn--sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.lwy-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ============================================================
   HERO — CENTERED LIGHT (index)
   ============================================================ */
.lwy-hero {
  padding: clamp(64px, 10vw, 112px) 0 0;
  background: var(--lwy-white);
  text-align: center;
  overflow: hidden;
}

.lwy-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,166,0.08);
  border: 1px solid rgba(0,180,166,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lwy-teal);
  margin-bottom: 24px;
}

.lwy-hero__headline {
  max-width: 780px;
  margin: 0 auto 24px;
  color: var(--lwy-text);
}

.lwy-hero__headline span.lwy-hero__accent {
  color: var(--lwy-teal);
}

.lwy-hero__subhead {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 1.5vw, 1.175rem);
  color: var(--lwy-text-secondary);
  line-height: 1.75;
}

.lwy-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.lwy-hero__screenshot {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 0px);
  position: relative;
}

.lwy-hero__screenshot::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,180,166,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lwy-hero__screenshot img {
  border-radius: var(--lwy-radius-lg);
  box-shadow: 0 24px 80px rgba(26,43,95,0.16), 0 8px 24px rgba(26,43,95,0.08);
  border: 1px solid var(--lwy-border);
  width: 100%;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.lwy-trust-strip {
  padding: 40px 0;
  background: var(--lwy-bg2);
  border-top: 1px solid var(--lwy-border);
  border-bottom: 1px solid var(--lwy-border);
}

.lwy-trust-strip__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lwy-text-muted);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.lwy-trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.lwy-integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lwy-text-secondary);
  box-shadow: var(--lwy-shadow-sm);
}

.lwy-integration-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lwy-teal);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM FRAME (two-column)
   ============================================================ */
.lwy-problem {
  background: var(--lwy-navy);
  color: var(--lwy-white);
  padding: var(--lwy-section-pad) 0;
}

.lwy-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lwy-problem__headline {
  color: var(--lwy-white);
  margin-bottom: 20px;
}

.lwy-problem__body {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}

.lwy-problem__body + .lwy-problem__body {
  margin-top: -8px;
}

/* ============================================================
   HOW BRIEF — NUMBERED STEPS
   ============================================================ */
.lwy-steps {
  background: var(--lwy-white);
}

.lwy-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.lwy-step {
  position: relative;
}

.lwy-step__number {
  font-family: var(--lwy-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--lwy-teal);
  line-height: 1;
  margin-bottom: 16px;
}

.lwy-step__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.lwy-step__body {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   METRICS BAND
   ============================================================ */
.lwy-metrics {
  background: var(--lwy-navy);
  padding: clamp(48px, 7vw, 80px) 0;
}

.lwy-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.lwy-metric {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.lwy-metric:last-child { border-right: none; }

.lwy-metric__value {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--lwy-white);
  line-height: 1;
  margin-bottom: 8px;
}

.lwy-metric__value span.lwy-metric__teal {
  color: var(--lwy-teal);
}

.lwy-metric__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ============================================================
   FEATURE TRIO — THREE COLUMN CARDS
   ============================================================ */
.lwy-feature-trio {
  background: var(--lwy-white);
}

.lwy-feature-trio__section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.lwy-feature-trio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lwy-feature-card {
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
  background: var(--lwy-white);
}

.lwy-feature-card:hover {
  box-shadow: var(--lwy-shadow);
  border-color: rgba(0,180,166,0.3);
}

.lwy-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0,180,166,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lwy-teal);
}

.lwy-feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.lwy-feature-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 10px;
}

.lwy-feature-card__body {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.lwy-testimonial {
  background: var(--lwy-bg2);
  padding: var(--lwy-section-pad) 0;
}

.lwy-testimonial__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.lwy-testimonial__quote-mark {
  color: var(--lwy-teal);
  margin-bottom: 28px;
}

.lwy-testimonial__text {
  font-size: clamp(1.15rem, 2vw, 1.375rem);
  font-weight: 400;
  color: var(--lwy-text);
  line-height: 1.75;
  margin-bottom: 32px;
  font-style: italic;
}

.lwy-testimonial__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.lwy-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lwy-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lwy-white);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.lwy-testimonial__name {
  font-weight: 600;
  color: var(--lwy-text);
  font-size: 0.9375rem;
}

.lwy-testimonial__role {
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
}

/* ============================================================
   INTEGRATION GRID (2x2)
   ============================================================ */
.lwy-integrations-preview {
  background: var(--lwy-white);
}

.lwy-integrations-preview__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.lwy-int-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.lwy-int-card {
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px;
  background: var(--lwy-bg2);
}

.lwy-int-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lwy-text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lwy-int-card__category::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lwy-teal);
}

.lwy-int-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lwy-chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lwy-text-secondary);
}

.lwy-integrations-preview__cta {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
}

.lwy-integrations-preview__cta a {
  color: var(--lwy-teal);
  font-weight: 600;
}

/* ============================================================
   CTA FINAL BLOCK (navy)
   ============================================================ */
.lwy-cta-navy {
  background: var(--lwy-navy);
  padding: clamp(64px, 8vw, 96px) 0;
  text-align: center;
}

.lwy-cta-navy__headline {
  color: var(--lwy-white);
  max-width: 720px;
  margin: 0 auto 16px;
}

.lwy-cta-navy__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PAGE HERO (sub-pages) — narrow light
   ============================================================ */
.lwy-page-hero {
  background: var(--lwy-bg2);
  padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--lwy-border);
}

.lwy-page-hero--centered {
  text-align: center;
}

.lwy-page-hero__kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lwy-teal);
  margin-bottom: 12px;
  display: block;
}

.lwy-page-hero__headline {
  color: var(--lwy-text);
  margin-bottom: 18px;
  max-width: 760px;
}

.lwy-page-hero--centered .lwy-page-hero__headline {
  margin-left: auto;
  margin-right: auto;
}

.lwy-page-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--lwy-text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

.lwy-page-hero--centered .lwy-page-hero__sub {
  margin-left: auto;
  margin-right: auto;
}

/* Split hero (for-brokers) */
.lwy-page-hero--split {
  padding: 0;
}

.lwy-page-hero__split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  align-items: stretch;
}

.lwy-page-hero__split-text {
  padding: clamp(48px, 7vw, 80px) clamp(24px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lwy-bg2);
  border-right: 1px solid var(--lwy-border);
}

.lwy-page-hero__split-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.lwy-page-hero__split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   TWO COLUMN FEATURE
   ============================================================ */
.lwy-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lwy-two-col--reverse { direction: rtl; }
.lwy-two-col--reverse > * { direction: ltr; }

.lwy-two-col__heading {
  margin-bottom: 16px;
  color: var(--lwy-text);
}

.lwy-two-col__body {
  color: var(--lwy-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.lwy-two-col__feature-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lwy-two-col__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
}

.lwy-two-col__feature-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lwy-teal);
  flex-shrink: 0;
  margin-top: 8px;
}

.lwy-two-col__visual {
  border-radius: var(--lwy-radius-lg);
  overflow: hidden;
  box-shadow: var(--lwy-shadow-lg);
  border: 1px solid var(--lwy-border);
}

.lwy-two-col__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   PROBLEM 3-COLUMN
   ============================================================ */
.lwy-problem-cards {
  background: var(--lwy-bg2);
}

.lwy-problem-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.lwy-problem-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px 24px;
}

.lwy-problem-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(220,38,38,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--lwy-danger);
}

.lwy-problem-card__icon svg { width: 20px; height: 20px; }

.lwy-problem-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 10px;
}

.lwy-problem-card__body {
  font-size: 0.9rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   PROBLEM-SOLUTION PAIRS
   ============================================================ */
.lwy-pairs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.lwy-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 24px 28px;
}

.lwy-pair__problem {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
}

.lwy-pair__problem strong {
  display: block;
  color: var(--lwy-text);
  margin-bottom: 4px;
}

.lwy-pair__arrow {
  color: var(--lwy-teal);
  font-size: 1.25rem;
}

.lwy-pair__solution {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
}

.lwy-pair__solution strong {
  display: block;
  color: var(--lwy-teal);
  margin-bottom: 4px;
}

/* ============================================================
   ROI METRICS (broker/carrier specific)
   ============================================================ */
.lwy-roi-metrics {
  background: var(--lwy-surface);
  border-radius: var(--lwy-radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.lwy-roi-metric__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lwy-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.lwy-roi-metric__label {
  font-size: 0.875rem;
  color: var(--lwy-text-secondary);
  line-height: 1.5;
}

/* ============================================================
   CASE STUDY CARD
   ============================================================ */
.lwy-case-study {
  background: var(--lwy-bg2);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 40px;
  margin-top: 48px;
}

.lwy-case-study__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lwy-teal);
  margin-bottom: 12px;
  display: block;
}

.lwy-case-study__company {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 6px;
}

.lwy-case-study__meta {
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
  margin-bottom: 24px;
}

.lwy-case-study__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--lwy-border);
}

.lwy-case-study__metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lwy-teal);
  line-height: 1;
  margin-bottom: 6px;
}

.lwy-case-study__metric-label {
  font-size: 0.875rem;
  color: var(--lwy-text-secondary);
}

/* ============================================================
   CTA STRIP (light, within pages)
   ============================================================ */
.lwy-cta-strip {
  background: var(--lwy-bg2);
  border-top: 1px solid var(--lwy-border);
  padding: clamp(48px, 6vw, 72px) 0;
  text-align: center;
}

.lwy-cta-strip__headline {
  margin-bottom: 12px;
  color: var(--lwy-text);
}

.lwy-cta-strip__sub {
  color: var(--lwy-text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PIPELINE DIAGRAM (how-it-works)
   ============================================================ */
.lwy-pipeline {
  background: var(--lwy-bg2);
  padding: var(--lwy-section-pad) 0;
}

.lwy-pipeline__svg-wrap {
  overflow-x: auto;
  padding: 16px 0;
}

/* ============================================================
   CODE PREVIEW
   ============================================================ */
.lwy-code-preview {
  background: var(--lwy-bg2);
  padding: var(--lwy-section-pad) 0;
}

.lwy-code-block {
  background: var(--lwy-text);
  border-radius: var(--lwy-radius-lg);
  overflow: hidden;
  box-shadow: var(--lwy-shadow-lg);
}

.lwy-code-block__header {
  background: rgba(255,255,255,0.05);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lwy-code-block__dots {
  display: flex;
  gap: 6px;
}

.lwy-code-block__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.lwy-code-block__dot--red { background: #FF5F57; }
.lwy-code-block__dot--yellow { background: #FEBC2E; }
.lwy-code-block__dot--green { background: #28C840; }

.lwy-code-block__label {
  font-family: var(--lwy-mono);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
}

.lwy-code-block__body {
  padding: 24px;
  overflow-x: auto;
}

.lwy-code-block pre {
  margin: 0;
  font-family: var(--lwy-mono);
  font-size: 0.875rem;
  line-height: 1.8;
  color: #E5E9F0;
  white-space: pre;
}

.lwy-code--teal { color: #00B4A6; }
.lwy-code--muted { color: rgba(229,233,240,0.5); }
.lwy-code--string { color: #A3BE8C; }
.lwy-code--key { color: #88C0D0; }
.lwy-code--num { color: #B48EAD; }

/* ============================================================
   INTEGRATIONS WALL
   ============================================================ */
.lwy-int-wall__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.lwy-int-wall__card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px;
}

.lwy-int-wall__cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lwy-border);
}

.lwy-int-wall__cat-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,180,166,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lwy-teal);
  flex-shrink: 0;
}

.lwy-int-wall__cat-icon svg { width: 18px; height: 18px; }

.lwy-int-wall__cat-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--lwy-text);
}

.lwy-int-wall__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lwy-int-wall__chip {
  padding: 6px 12px;
  background: var(--lwy-bg2);
  border: 1px solid var(--lwy-border);
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lwy-text-secondary);
}

.lwy-int-wall__chip--partner {
  background: rgba(0,180,166,0.08);
  border-color: rgba(0,180,166,0.25);
  color: var(--lwy-teal);
  font-weight: 600;
}

.lwy-int-partner-note {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
  margin-top: 24px;
  padding: 12px 16px;
  background: var(--lwy-bg2);
  border-radius: 6px;
  border-left: 3px solid var(--lwy-teal);
}

/* ============================================================
   PRICING
   ============================================================ */
.lwy-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.lwy-pricing-card {
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 32px 28px;
  background: var(--lwy-white);
  position: relative;
}

.lwy-pricing-card--featured {
  border-color: var(--lwy-teal);
  box-shadow: 0 0 0 3px rgba(0,180,166,0.12);
}

.lwy-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lwy-teal);
  color: var(--lwy-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.lwy-pricing-card__tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lwy-teal);
  margin-bottom: 8px;
  display: block;
}

.lwy-pricing-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 4px;
}

.lwy-pricing-card__volume {
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lwy-border);
}

.lwy-pricing-card__price {
  margin-bottom: 28px;
}

.lwy-pricing-card__amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lwy-text);
  line-height: 1;
}

.lwy-pricing-card__period {
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
}

.lwy-pricing-card__custom {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lwy-navy);
}

.lwy-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.lwy-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--lwy-text-secondary);
}

.lwy-pricing-feature__check {
  color: var(--lwy-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.lwy-pricing-feature__check svg { width: 16px; height: 16px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.lwy-faq {
  background: var(--lwy-bg2);
}

.lwy-faq__list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lwy-faq__item {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius);
  overflow: hidden;
}

.lwy-faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--lwy-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lwy-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
}

.lwy-faq__question:hover { color: var(--lwy-navy); }

.lwy-faq__chevron {
  width: 20px;
  height: 20px;
  color: var(--lwy-text-muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.lwy-faq__item.open .lwy-faq__chevron { transform: rotate(180deg); }

.lwy-faq__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  line-height: 1.8;
}

.lwy-faq__item.open .lwy-faq__answer { display: block; }

/* ============================================================
   SECURITY PILLARS
   ============================================================ */
.lwy-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.lwy-security-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px 24px;
}

.lwy-security-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,166,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--lwy-teal);
}

.lwy-security-card__icon svg { width: 22px; height: 22px; }

.lwy-security-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--lwy-text);
}

.lwy-security-card__body {
  font-size: 0.9rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   TEAM GRID
   ============================================================ */
.lwy-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.lwy-team-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.lwy-team-card:hover { box-shadow: var(--lwy-shadow); }

.lwy-team-card__portrait {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.lwy-team-card__body {
  padding: 20px 20px 24px;
}

.lwy-team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 4px;
}

.lwy-team-card__title {
  font-size: 0.875rem;
  color: var(--lwy-teal);
  font-weight: 500;
  margin-bottom: 10px;
}

.lwy-team-card__bio {
  font-size: 0.875rem;
  color: var(--lwy-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   ABOUT — MISSION, VALUES, LOCATION
   ============================================================ */
.lwy-mission-hero {
  background: var(--lwy-navy);
  padding: clamp(64px, 10vw, 112px) 0;
  text-align: center;
}

.lwy-mission-hero__headline {
  color: var(--lwy-white);
  max-width: 760px;
  margin: 0 auto 24px;
}

.lwy-mission-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 560px;
  margin: 0 auto;
}

.lwy-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.lwy-value-card {
  background: var(--lwy-bg2);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px;
}

.lwy-value-card__number {
  font-family: var(--lwy-mono);
  font-size: 0.75rem;
  color: var(--lwy-teal);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.lwy-value-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 8px;
}

.lwy-value-card__body {
  font-size: 0.9rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
}

.lwy-location-callout {
  background: var(--lwy-navy);
  border-radius: var(--lwy-radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
  margin-top: 0;
}

.lwy-location-callout__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lwy-teal);
  margin-bottom: 12px;
  display: block;
}

.lwy-location-callout__headline {
  color: var(--lwy-white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.lwy-location-callout__body {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.lwy-location-callout__img {
  border-radius: var(--lwy-radius);
  overflow: hidden;
}

.lwy-location-callout__img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   CUSTOMERS / TESTIMONIAL GRID
   ============================================================ */
.lwy-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.lwy-quote-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px;
}

.lwy-quote-card__text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--lwy-text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.lwy-quote-card__attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lwy-quote-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lwy-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--lwy-navy);
  flex-shrink: 0;
}

.lwy-quote-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--lwy-text);
}

.lwy-quote-card__role {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.lwy-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
  padding: var(--lwy-section-pad) 0;
}

.lwy-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lwy-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lwy-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lwy-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lwy-text);
}

.lwy-form__input,
.lwy-form__select,
.lwy-form__textarea {
  font-family: var(--lwy-sans);
  font-size: 0.9375rem;
  color: var(--lwy-text);
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius);
  padding: 10px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}

.lwy-form__input:focus,
.lwy-form__select:focus,
.lwy-form__textarea:focus {
  border-color: var(--lwy-teal);
  box-shadow: 0 0 0 3px rgba(0,180,166,0.12);
}

.lwy-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.lwy-contact-info {
  padding-top: 12px;
}

.lwy-contact-info__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 24px;
}

.lwy-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.lwy-contact-detail__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,180,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lwy-teal);
  flex-shrink: 0;
}

.lwy-contact-detail__icon svg { width: 16px; height: 16px; }

.lwy-contact-detail__label {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
  margin-bottom: 2px;
}

.lwy-contact-detail__value {
  font-size: 0.9375rem;
  color: var(--lwy-text);
  font-weight: 500;
}

/* ============================================================
   BLOG INDEX
   ============================================================ */
.lwy-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.lwy-blog-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.lwy-blog-card:hover {
  box-shadow: var(--lwy-shadow);
  border-color: rgba(0,180,166,0.3);
  text-decoration: none;
}

.lwy-blog-card__cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.lwy-blog-card__body {
  padding: 22px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lwy-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.lwy-blog-card__cat {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0,180,166,0.08);
  border: 1px solid rgba(0,180,166,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lwy-teal);
  white-space: nowrap;
}

.lwy-blog-card__date {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
}

.lwy-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lwy-text);
  line-height: 1.4;
  margin-bottom: 10px;
}

.lwy-blog-card:hover .lwy-blog-card__title { color: var(--lwy-navy); }

.lwy-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--lwy-text-secondary);
  line-height: 1.65;
  flex: 1;
}

.lwy-blog-card__read-time {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--lwy-border);
}

/* ============================================================
   BLOG ARTICLE
   ============================================================ */
.lwy-article-hero {
  background: var(--lwy-bg2);
  padding: clamp(48px, 7vw, 80px) 0 0;
  border-bottom: 1px solid var(--lwy-border);
}

.lwy-article-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.lwy-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lwy-article-hero__cat {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0,180,166,0.08);
  border: 1px solid rgba(0,180,166,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lwy-teal);
}

.lwy-article-hero__date {
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
}

.lwy-article-hero__read-time {
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
}

.lwy-article-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--lwy-text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.lwy-article-hero__excerpt {
  font-size: 1.05rem;
  color: var(--lwy-text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.lwy-article-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0 28px;
  border-top: 1px solid var(--lwy-border);
}

.lwy-article-hero__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lwy-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lwy-white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.lwy-article-hero__author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lwy-text);
}

.lwy-article-hero__author-title {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
}

.lwy-article-hero__cover {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.lwy-article-hero__cover img {
  width: 100%;
  display: block;
  border-radius: var(--lwy-radius-lg) var(--lwy-radius-lg) 0 0;
}

.lwy-article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 48px) 80px;
}

.lwy-article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin: 40px 0 16px;
}

.lwy-article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin: 32px 0 12px;
}

.lwy-article-body p {
  color: var(--lwy-text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
}

.lwy-article-body ul, .lwy-article-body ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.lwy-article-body ol { list-style: decimal; }

.lwy-article-body li {
  margin-bottom: 8px;
  color: var(--lwy-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.lwy-article-body blockquote {
  border-left: 3px solid var(--lwy-teal);
  padding: 12px 0 12px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--lwy-text);
  font-size: 1.0625rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lwy-footer {
  background: var(--lwy-text);
  color: rgba(255,255,255,0.75);
  padding: clamp(56px, 7vw, 80px) 0 0;
}

.lwy-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lwy-footer__brand {}

.lwy-footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 260px;
}

.lwy-footer__address {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 12px;
}

.lwy-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.lwy-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.lwy-footer__social-link:hover {
  background: rgba(0,180,166,0.2);
  color: var(--lwy-teal);
  text-decoration: none;
}

.lwy-footer__social-link svg { width: 18px; height: 18px; }

.lwy-footer__col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lwy-white);
  margin-bottom: 16px;
}

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

.lwy-footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.5;
}

.lwy-footer__link:hover {
  color: var(--lwy-teal);
  text-decoration: none;
}

.lwy-footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lwy-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.lwy-footer__legal-links {
  display: flex;
  gap: 20px;
}

.lwy-footer__legal-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.lwy-footer__legal-link:hover {
  color: var(--lwy-teal);
  text-decoration: none;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.lwy-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--lwy-text);
  color: var(--lwy-white);
  border-radius: var(--lwy-radius-lg);
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.1);
}

.lwy-cookie-banner.hidden { display: none; }

.lwy-cookie-banner__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.lwy-cookie-banner__text a {
  color: var(--lwy-teal);
}

.lwy-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lwy-cookie-banner__actions .lwy-btn {
  flex: 1;
  justify-content: center;
  min-width: 100px;
}

/* ============================================================
   404
   ============================================================ */
.lwy-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.lwy-404__code {
  font-family: var(--lwy-mono);
  font-size: 6rem;
  font-weight: 500;
  color: var(--lwy-surface);
  line-height: 1;
  margin-bottom: 16px;
}

.lwy-404__headline {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 14px;
}

.lwy-404__body {
  color: var(--lwy-text-secondary);
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.lwy-legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) clamp(20px, 5vw, 48px) 80px;
}

.lwy-legal-body h1 { margin-bottom: 8px; }
.lwy-legal-body .lwy-legal-meta {
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lwy-border);
}

.lwy-legal-body h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--lwy-teal);
}

.lwy-legal-body h3 {
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.lwy-legal-body p { margin-bottom: 14px; color: var(--lwy-text-secondary); }
.lwy-legal-body ul, .lwy-legal-body ol { padding-left: 24px; margin-bottom: 14px; list-style: disc; }
.lwy-legal-body ol { list-style: decimal; }
.lwy-legal-body li { margin-bottom: 6px; color: var(--lwy-text-secondary); }
.lwy-legal-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.lwy-legal-body th { background: var(--lwy-bg2); text-align: left; padding: 10px 14px; font-weight: 600; border: 1px solid var(--lwy-border); }
.lwy-legal-body td { padding: 9px 14px; border: 1px solid var(--lwy-border); vertical-align: top; color: var(--lwy-text-secondary); }
.lwy-legal-body tr:nth-child(even) td { background: var(--lwy-bg2); }

.lwy-highlight-box {
  background: rgba(0,180,166,0.06);
  border: 1px solid rgba(0,180,166,0.2);
  border-radius: var(--lwy-radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9375rem;
}

.lwy-dns-banner {
  background: var(--lwy-navy);
  color: var(--lwy-white);
  border-radius: var(--lwy-radius);
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lwy-dns-banner__text { flex: 1; min-width: 200px; }
.lwy-dns-banner__text strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.lwy-dns-banner__text p { margin: 0; font-size: 0.875rem; opacity: 0.8; }

.lwy-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.lwy-right-card {
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius);
  padding: 16px 18px;
}

.lwy-right-card h4 { margin: 0 0 8px; font-size: 0.9375rem; color: var(--lwy-navy); }
.lwy-right-card p { margin: 0; font-size: 0.875rem; color: var(--lwy-text-secondary); }

.lwy-legal-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(0,180,166,0.12);
  color: var(--lwy-teal);
  margin-left: 6px;
  vertical-align: middle;
}

/* ============================================================
   CAPACITY NETWORK SCORING GRID
   ============================================================ */
.lwy-score-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.lwy-score-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 24px 20px;
  text-align: center;
}

.lwy-score-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0,180,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--lwy-teal);
}

.lwy-score-card__icon svg { width: 24px; height: 24px; }

.lwy-score-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 6px;
}

.lwy-score-card__body {
  font-size: 0.8125rem;
  color: var(--lwy-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   DEVELOPER CALLOUT
   ============================================================ */
.lwy-dev-callout {
  background: var(--lwy-navy);
  border-radius: var(--lwy-radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.lwy-dev-callout__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lwy-teal);
  margin-bottom: 12px;
  display: block;
}

.lwy-dev-callout__headline {
  color: var(--lwy-white);
  margin-bottom: 14px;
}

.lwy-dev-callout__body {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.lwy-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lwy-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .lwy-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .lwy-metric { border-right: none; }
  .lwy-metric:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .lwy-problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .lwy-steps__grid { grid-template-columns: 1fr; gap: 32px; }

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

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

@media (max-width: 768px) {
  .lwy-nav__links,
  .lwy-nav__cta {
    display: none;
  }

  .lwy-nav__hamburger { display: flex; }

  .lwy-feature-trio__grid {
    grid-template-columns: 1fr;
  }

  .lwy-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lwy-two-col--reverse { direction: ltr; }

  .lwy-problem-cards__grid {
    grid-template-columns: 1fr;
  }

  .lwy-pairs .lwy-pair {
    grid-template-columns: 1fr;
  }

  .lwy-pair__arrow { display: none; }

  .lwy-roi-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lwy-int-grid,
  .lwy-int-wall__grid {
    grid-template-columns: 1fr;
  }

  .lwy-pricing__grid {
    grid-template-columns: 1fr;
  }

  .lwy-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lwy-form__row {
    grid-template-columns: 1fr;
  }

  .lwy-blog-grid {
    grid-template-columns: 1fr;
  }

  .lwy-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .lwy-values-grid {
    grid-template-columns: 1fr;
  }

  .lwy-case-study__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lwy-location-callout {
    grid-template-columns: 1fr;
  }

  .lwy-dev-callout {
    grid-template-columns: 1fr;
  }

  .lwy-page-hero__split-grid {
    grid-template-columns: 1fr;
  }

  .lwy-page-hero__split-image { min-height: 280px; }

  .lwy-security-grid {
    grid-template-columns: 1fr;
  }

  .lwy-score-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lwy-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lwy-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .lwy-footer__legal-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .lwy-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .lwy-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .lwy-score-grid {
    grid-template-columns: 1fr;
  }

  .lwy-team-grid {
    grid-template-columns: 1fr;
  }

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

  .lwy-hero__actions .lwy-btn {
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   ABOUT PAGE — MISSION HERO (navy background)
   ============================================================ */
.lwy-mission-hero {
  background: var(--lwy-navy);
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
}

.lwy-mission-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.lwy-mission-hero__kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lwy-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lwy-mission-hero__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--lwy-white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.lwy-mission-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT — DATA ROW + FOUNDER CARD + FUNDING NOTE
   ============================================================ */
.lwy-about-data-row {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--lwy-border);
  flex-wrap: wrap;
}

.lwy-about-data-item__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lwy-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.lwy-about-data-item__label {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
}

.lwy-about-founder-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lwy-about-founder-card {
  background: var(--lwy-bg2);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px;
}

.lwy-about-founder-card__quote {
  font-size: 1rem;
  color: var(--lwy-text-secondary);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--lwy-teal);
}

.lwy-about-founder-card__attr {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 2px;
}

.lwy-about-founder-card__attr strong {
  font-size: 0.9375rem;
  color: var(--lwy-text);
}

.lwy-about-founder-card__attr span {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
}

.lwy-about-funding-note {
  background: var(--lwy-navy);
  border-radius: var(--lwy-radius-lg);
  padding: 24px 28px;
}

.lwy-about-funding-note__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lwy-about-funding-note__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lwy-teal);
  margin-bottom: 8px;
  line-height: 1;
}

.lwy-about-funding-note__detail {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================================================
   ABOUT — VALUES GRID
   ============================================================ */
.lwy-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lwy-values-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px 24px;
}

.lwy-values-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(0,180,166,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lwy-teal);
  margin-bottom: 16px;
}

.lwy-values-card__icon svg {
  width: 20px;
  height: 20px;
}

.lwy-values-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 10px;
}

.lwy-values-card__body {
  font-size: 0.9rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   ABOUT — TWO COL IMG LEFT
   ============================================================ */
.lwy-two-col--img-left {
  align-items: center;
}

.lwy-two-col__img-wrap {
  border-radius: var(--lwy-radius-lg);
  overflow: hidden;
}

/* ============================================================
   CTA STRIP — dual actions
   ============================================================ */
.lwy-cta-strip__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.lwy-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.lwy-team-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.lwy-team-card:hover {
  box-shadow: var(--lwy-shadow);
  border-color: rgba(0,180,166,0.25);
}

.lwy-team-card__portrait {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--lwy-surface);
  max-height: 320px;
}

.lwy-team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lwy-team-card__info {
  padding: 24px;
}

.lwy-team-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 4px;
}

.lwy-team-card__title {
  font-size: 0.875rem;
  color: var(--lwy-teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.lwy-team-card__bio {
  font-size: 0.9rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
  margin: 0 0 16px;
}

.lwy-team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lwy-navy);
  text-decoration: none;
  transition: color 0.2s;
}

.lwy-team-card__linkedin:hover {
  color: var(--lwy-teal);
}

.lwy-team-card__linkedin svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   HIRING CALLOUT
   ============================================================ */
.lwy-hiring-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 36px 40px;
}

.lwy-hiring-callout__content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--lwy-text);
}

.lwy-hiring-callout__content p {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.lwy-hiring-callout__content p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CUSTOMERS PAGE — CASE STUDIES
   ============================================================ */
.lwy-case-study {
  max-width: 100%;
}

.lwy-case-study__company-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lwy-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(0,180,166,0.08);
  border-radius: 4px;
}

.lwy-case-study__headline {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 32px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.lwy-case-study__body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.lwy-case-study__section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lwy-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lwy-case-study__narrative p {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.lwy-case-study__metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lwy-case-study__metric {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius);
  padding: 20px;
  text-align: center;
}

.lwy-case-study__metric-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--lwy-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.lwy-case-study__metric-label {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
  line-height: 1.4;
}

.lwy-case-study__quote {
  background: rgba(0,180,166,0.05);
  border: 1px solid rgba(0,180,166,0.15);
  border-radius: var(--lwy-radius);
  padding: 20px;
  margin: 0;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--lwy-text-secondary);
  line-height: 1.6;
}

.lwy-case-study__quote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--lwy-text-muted);
  font-size: 0.8125rem;
  margin-top: 10px;
}

/* ============================================================
   TESTIMONIALS GRID
   ============================================================ */
.lwy-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lwy-testimonial-card {
  background: var(--lwy-bg2);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px;
  margin: 0;
}

.lwy-testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.lwy-testimonial-card__attr {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lwy-testimonial-card__attr strong {
  font-size: 0.9rem;
  color: var(--lwy-text);
}

.lwy-testimonial-card__attr span {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
}

/* ============================================================
   SECURITY — SECURITY GRID
   ============================================================ */
.lwy-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lwy-security-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}

.lwy-security-card:hover {
  box-shadow: var(--lwy-shadow-sm);
}

.lwy-security-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,166,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lwy-teal);
  margin-bottom: 16px;
}

.lwy-security-card__icon svg {
  width: 22px;
  height: 22px;
}

.lwy-security-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 10px;
}

.lwy-security-card__body {
  font-size: 0.875rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.lwy-contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.lwy-contact-form__row {
  margin-bottom: 0;
}

.lwy-contact-form__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lwy-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lwy-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lwy-form-field__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lwy-text);
}

.lwy-form-field__input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-family: var(--lwy-sans);
  border: 1.5px solid var(--lwy-border);
  border-radius: var(--lwy-radius);
  background: var(--lwy-white);
  color: var(--lwy-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.lwy-form-field__input:focus {
  border-color: var(--lwy-teal);
  box-shadow: 0 0 0 3px rgba(0,180,166,0.12);
}

.lwy-form-field__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%238899AA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.lwy-form-field__textarea {
  resize: vertical;
  min-height: 120px;
}

.lwy-form-field__privacy-note {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
  line-height: 1.5;
  margin: 0;
}

.lwy-form-field__privacy-note a {
  color: var(--lwy-teal);
}

.lwy-contact-info {
  position: sticky;
  top: 100px;
}

.lwy-contact-info__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 24px;
}

.lwy-contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.lwy-contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lwy-contact-info__icon {
  width: 36px;
  height: 36px;
  background: rgba(0,180,166,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lwy-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.lwy-contact-info__icon svg {
  width: 18px;
  height: 18px;
}

.lwy-contact-info__detail {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  line-height: 1.6;
}

.lwy-contact-info__detail--link {
  color: var(--lwy-navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.lwy-contact-info__detail--link:hover {
  color: var(--lwy-teal);
}

.lwy-contact-info__note {
  background: var(--lwy-bg2);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius);
  padding: 16px 18px;
}

.lwy-contact-info__note-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 6px;
}

.lwy-contact-info__note-body {
  font-size: 0.8125rem;
  color: var(--lwy-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   BLOG GRID (on blog/index.html)
   ============================================================ */
.lwy-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lwy-blog-card {
  background: var(--lwy-white);
  border: 1px solid var(--lwy-border);
  border-radius: var(--lwy-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.lwy-blog-card:hover {
  box-shadow: var(--lwy-shadow);
  border-color: rgba(0,180,166,0.25);
}

.lwy-blog-card__img-link {
  display: block;
  overflow: hidden;
}

.lwy-blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.lwy-blog-card:hover .lwy-blog-card__img {
  transform: scale(1.03);
}

.lwy-blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lwy-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.lwy-blog-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lwy-teal);
  background: rgba(0,180,166,0.08);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.lwy-blog-card__date {
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
}

.lwy-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.lwy-blog-card__title a {
  color: var(--lwy-text);
  text-decoration: none;
  transition: color 0.2s;
}

.lwy-blog-card__title a:hover {
  color: var(--lwy-teal);
}

.lwy-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.lwy-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--lwy-surface);
}

.lwy-blog-card__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lwy-text);
}

.lwy-blog-card__read-time {
  font-size: 0.75rem;
  color: var(--lwy-text-muted);
}

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */
.lwy-container--narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.lwy-article {
  padding-bottom: clamp(64px, 8vw, 96px);
}

.lwy-article__header {
  padding: clamp(48px, 6vw, 72px) 0 0;
}

.lwy-article__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--lwy-text-muted);
  margin-bottom: 20px;
}

.lwy-article__breadcrumb a {
  color: var(--lwy-teal);
  text-decoration: none;
}

.lwy-article__breadcrumb a:hover {
  text-decoration: underline;
}

.lwy-article__headline {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--lwy-text);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.lwy-article__byline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
  padding-bottom: 28px;
}

.lwy-article__author {
  font-weight: 700;
  color: var(--lwy-text);
}

.lwy-article__author-title {
  color: var(--lwy-text-muted);
}

.lwy-article__date {
  color: var(--lwy-text-muted);
}

.lwy-article__read-time {
  color: var(--lwy-text-muted);
}

.lwy-article__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--lwy-radius-lg);
  display: block;
  margin-bottom: 48px;
}

.lwy-article__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--lwy-text-secondary);
  margin-bottom: 48px;
  min-height: 80px;
}

.lwy-article__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin: 40px 0 16px;
}

.lwy-article__body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin: 32px 0 12px;
}

.lwy-article__body p {
  margin-bottom: 20px;
}

.lwy-article__body ul,
.lwy-article__body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.lwy-article__body li {
  margin-bottom: 8px;
}

.lwy-article__body blockquote {
  border-left: 3px solid var(--lwy-teal);
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--lwy-text-secondary);
}

.lwy-article__cta-aside {
  margin-bottom: 40px;
}

.lwy-article__cta-box {
  background: rgba(0,180,166,0.05);
  border: 1px solid rgba(0,180,166,0.2);
  border-radius: var(--lwy-radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.lwy-article__cta-box-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lwy-text);
}

.lwy-article__cta-box p {
  font-size: 0.9rem;
  color: var(--lwy-text-secondary);
  margin: 0;
}

.lwy-article__back {
  padding-top: 24px;
  border-top: 1px solid var(--lwy-surface);
}

.lwy-article__back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lwy-navy);
  text-decoration: none;
  transition: color 0.2s;
}

.lwy-article__back-link:hover {
  color: var(--lwy-teal);
}

.lwy-article__back-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.lwy-legal-page {
  padding: clamp(48px, 6vw, 72px) 0 clamp(64px, 8vw, 96px);
}

.lwy-legal-page h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 12px;
}

.lwy-legal-page__meta {
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lwy-border);
  line-height: 1.6;
}

.lwy-legal-page__meta a {
  color: var(--lwy-teal);
}

.lwy-legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-top: 44px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--lwy-teal);
}

.lwy-legal-page h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin-top: 24px;
  margin-bottom: 10px;
}

.lwy-legal-page p {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.lwy-legal-page ul,
.lwy-legal-page ol {
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  line-height: 1.75;
  padding-left: 24px;
  margin-bottom: 16px;
}

.lwy-legal-page li {
  margin-bottom: 6px;
}

.lwy-legal-page a {
  color: var(--lwy-teal);
  text-decoration: none;
}

.lwy-legal-page a:hover {
  text-decoration: underline;
}

.lwy-legal-page__highlight {
  background: rgba(0,180,166,0.06);
  border: 1px solid rgba(0,180,166,0.2);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9375rem;
  color: var(--lwy-text-secondary);
  margin-bottom: 24px;
}

.lwy-legal-page__highlight a {
  color: var(--lwy-teal);
}

.lwy-legal-page__dns-banner {
  background: var(--lwy-navy);
  color: var(--lwy-white);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lwy-legal-page__dns-text {
  flex: 1;
  min-width: 200px;
}

.lwy-legal-page__dns-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.lwy-legal-page__dns-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  margin: 0;
}

.lwy-legal-page__table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  font-size: 0.875rem;
}

.lwy-legal-page__table th {
  background: var(--lwy-bg2);
  text-align: left;
  padding: 10px 14px;
  font-weight: 700;
  color: var(--lwy-text);
  border: 1px solid var(--lwy-border);
}

.lwy-legal-page__table td {
  padding: 9px 14px;
  border: 1px solid var(--lwy-border);
  vertical-align: top;
  color: var(--lwy-text-secondary);
}

.lwy-legal-page__table tr:nth-child(even) td {
  background: var(--lwy-bg2);
}

.lwy-legal-page__rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 24px;
}

.lwy-legal-page__right-card {
  border: 1px solid var(--lwy-border);
  border-radius: 8px;
  padding: 16px 18px;
}

.lwy-legal-page__right-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--lwy-text);
  margin: 0 0 8px;
}

.lwy-legal-page__right-card p {
  font-size: 0.875rem;
  margin: 0;
}

.lwy-legal-page__footer-links {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--lwy-border);
  font-size: 0.875rem;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.lwy-404-page {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
}

.lwy-404-page__inner {
  max-width: 560px;
  margin: 0 auto;
}

.lwy-404-page__code {
  margin-bottom: 8px;
  line-height: 1;
}

.lwy-404-page__headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--lwy-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.lwy-404-page__body {
  font-size: 1rem;
  color: var(--lwy-text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.lwy-404-page__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lwy-404-page__links {
  font-size: 0.875rem;
  color: var(--lwy-text-muted);
}

.lwy-404-page__links nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.lwy-404-page__links nav a {
  color: var(--lwy-teal);
  text-decoration: none;
  font-weight: 500;
}

.lwy-404-page__links nav a:hover {
  text-decoration: underline;
}

/* ============================================================
   SCREEN READER ONLY
   ============================================================ */
.lwy-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   NAV ACTIVE STATE
   ============================================================ */
.lwy-nav__link--active {
  color: var(--lwy-teal);
}

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 1024px) {
  .lwy-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .lwy-case-study__body {
    grid-template-columns: 1fr;
  }

  .lwy-case-study__metrics {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lwy-case-study__metric {
    flex: 1;
    min-width: 140px;
  }

  .lwy-hiring-callout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lwy-contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lwy-contact-info {
    position: static;
  }

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

@media (max-width: 768px) {
  .lwy-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lwy-values-grid {
    grid-template-columns: 1fr;
  }

  .lwy-security-grid {
    grid-template-columns: 1fr;
  }

  .lwy-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .lwy-blog-grid {
    grid-template-columns: 1fr;
  }

  .lwy-about-data-row {
    gap: 20px;
  }

  .lwy-contact-form__row--two {
    grid-template-columns: 1fr;
  }

  .lwy-legal-page__rights-grid {
    grid-template-columns: 1fr;
  }

  .lwy-legal-page__dns-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lwy-404-page__actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .lwy-team-grid {
    grid-template-columns: 1fr;
  }

  .lwy-cta-strip__actions {
    flex-direction: column;
    align-items: center;
  }
}


/* ─── Orphan fixes ──────────────────────────────────────────── */

.lwy-about-data-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lwy-about-data-item strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lwy-teal);
  font-family: var(--lwy-mono);
  letter-spacing: -0.02em;
}

.lwy-case-study__header {
  margin-bottom: 24px;
}

.lwy-case-study__header h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--lwy-navy);
  font-weight: 700;
}

.lwy-contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lwy-contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lwy-hiring-callout__action {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
