/* ============================================
   0space1 — Brand System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --accent: #1467FF;
  --primary: #111111;
  --bg: #FFFFFF;
  --secondary: #6B6864;
  --divider: rgba(17, 17, 17, 0.12);
  --dark-bg: #111111;
  --dark-divider: rgba(255, 255, 255, 0.14);
  --dark-input-bg: rgba(255, 255, 255, 0.05);
  --max-width: 1180px;
  --nav-height: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .positioning h2 .accent::after {
    width: 100% !important;
  }
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  caret-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================
   Logo (motion wordmark)
   ============================================ */

/* ============================================
   Logo (text wordmark)
   ============================================ */

.logo {
  display: inline-flex;
  align-items: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.logo img {
  height: 39px;
  width: auto;
  display: block;
}

/* Static wordmark used in the footer (no motion needed there) */
.logo-static {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.logo-static img {
  height: 36px;
  width: auto;
  display: block;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
}

.nav .wrap {
  max-width: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(0) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 20px 40px 40px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 22px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--divider);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #0d54d6;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--divider);
}

.btn-secondary:hover {
  border-color: var(--primary);
}

.btn-dark-secondary {
  background: transparent;
  color: #fff;
  border-color: var(--dark-divider);
}

.btn-dark-secondary:hover {
  border-color: #fff;
}

.btn-arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 640px;
  height: 88vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,8,14,0.82) 0%, rgba(6,8,14,0.55) 42%, rgba(6,8,14,0.15) 75%, rgba(6,8,14,0) 100%),
    linear-gradient(0deg, rgba(6,8,14,0.45) 0%, rgba(6,8,14,0) 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 8, 14, 0.3);
  border: none;
  cursor: pointer;
}

.hero-play.visible {
  display: flex;
}

.hero-play span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.2);
}

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

@keyframes lineGrow {
  from { width: 0; }
  to { width: 100%; }
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
  max-width: 15ch;
  animation: heroFadeUp 0.8s var(--ease) 0.06s both;
}

.hero h1 .accent {
  color: var(--accent);
  display: inline-block;
}

.hero .subtext {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin: 0 0 36px;
  line-height: 1.6;
  animation: heroFadeUp 0.8s var(--ease) 0.12s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s var(--ease) 0.22s both;
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 560px;
    padding: 140px 0 64px;
    align-items: flex-end;
  }
  .hero-bg-video {
    object-position: 30% center;
  }
}

/* ============================================
   Positioning section
   ============================================ */

.positioning {
  padding: 72px 0;
  border-top: 1px solid var(--divider);
}

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.positioning h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  max-width: 12ch;
}

.positioning h2 .accent,
.reveal-underline {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.positioning h2 .accent::after,
.reveal-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  background: var(--accent);
  width: 0;
  transition: width 1.1s cubic-bezier(0.65, 0, 0.35, 1);
}

.positioning h2.reveal-in .accent::after,
.reveal-underline.reveal-in::after {
  width: 100%;
}

.positioning .subtext {
  font-size: 16px;
  color: var(--secondary);
  line-height: 1.7;
  margin: 0 0 20px;
}

.positioning .transition-line {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

@media (max-width: 760px) {
  .positioning-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.positioning .section-head {
  max-width: 60ch;
  margin-bottom: 40px;
}

.rules-block {
  margin-top: 72px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.principle-item {
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}

.principle-item h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.principle-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary);
  margin: 0;
}

@media (max-width: 900px) {
  .principles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================
   Eyebrow badge chip
   ============================================ */

.s-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(20, 103, 255, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ============================================
   Trust bar (logo strip)
   ============================================ */

.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.trust-bar .trust-label {
  font-size: 13px;
  color: var(--secondary);
  margin: 0 0 24px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.trust-logos span {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  opacity: 0.55;
  letter-spacing: 0.02em;
}

/* ============================================
   Services overview (Home) — alternating card grid
   ============================================ */

.services-overview {
  padding: 72px 0 96px;
  border-top: 1px solid var(--divider);
}

.services-overview .section-head {
  margin-bottom: 40px;
  max-width: 60ch;
}

.services-overview .section-head p {
  font-size: 16px;
  color: var(--secondary);
  margin: 0;
  line-height: 1.6;
}

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

.service-card {
  grid-column: span 1;
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card.light {
  background: var(--bg);
  border: 1px solid var(--divider);
}

.service-card.dark {
  background: var(--dark-bg);
  color: #fff;
}

.service-card.span-2 {
  grid-column: 1 / -1;
}

.service-card .s-num {
  color: var(--accent);
  margin-bottom: 12px;
}

.service-card.dark .s-num {
  color: #7fa8ff;
}

.service-card .service-name {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
}

.service-card .service-desc {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 24px;
  color: var(--secondary);
  max-width: 40ch;
}

.service-card.dark .service-desc {
  color: rgba(255, 255, 255, 0.62);
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}

.service-card:hover .learn-more {
  gap: 12px;
  color: var(--accent);
}

.service-card.dark .learn-more {
  color: #fff;
}

.service-card.dark:hover .learn-more {
  color: #7fa8ff;
}

.service-card .learn-more .arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.service-card.dark .learn-more .arrow-circle {
  border-color: rgba(255, 255, 255, 0.25);
}

.service-card:hover .learn-more .arrow-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 720px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: unset;
  }
  /* Force a clean alternating checkerboard in single-column mode,
     regardless of which .light/.dark class each card carries —
     the 2-column desktop pattern doesn't map cleanly to 1 column. */
  .service-card:nth-child(odd) {
    background: var(--bg);
    border: 1px solid var(--divider);
    color: var(--primary);
  }
  .service-card:nth-child(odd) .s-num {
    color: var(--accent);
  }
  .service-card:nth-child(odd) .service-desc {
    color: var(--secondary);
  }
  .service-card:nth-child(odd) .learn-more {
    color: var(--primary);
  }
  .service-card:nth-child(odd):hover .learn-more {
    color: var(--accent);
  }
  .service-card:nth-child(odd) .learn-more .arrow-circle {
    border-color: var(--divider);
  }
  .service-card:nth-child(even) {
    background: var(--dark-bg);
    border: none;
    color: #fff;
  }
  .service-card:nth-child(even) .s-num {
    color: #7fa8ff;
  }
  .service-card:nth-child(even) .service-desc {
    color: rgba(255, 255, 255, 0.62);
  }
  .service-card:nth-child(even) .learn-more {
    color: #fff;
  }
  .service-card:nth-child(even):hover .learn-more {
    color: #7fa8ff;
  }
  .service-card:nth-child(even) .learn-more .arrow-circle {
    border-color: rgba(255, 255, 255, 0.25);
  }
}

/* ============================================
   Contact section (dark)
   ============================================ */

.contact-section {
  position: relative;
  background: var(--dark-bg);
  color: #fff;
  padding: 88px 0;
  margin-top: 0;
  overflow: hidden;
}

.contact-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 0;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-copy h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 14ch;
}

.contact-copy p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 40ch;
  margin: 0;
}

.contact-form h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--dark-input-bg);
  border: 1px solid var(--dark-divider);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6864' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field select option {
  background: #111;
}

.form-status {
  font-size: 14px;
  color: var(--accent);
  margin-top: 14px;
  min-height: 20px;
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--divider);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--secondary);
  max-width: 30ch;
  margin: 12px 0 0;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 103, 255, 0.08);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.social-link:hover {
  background: rgba(20, 103, 255, 0.16);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  display: block;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: var(--primary);
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  font-size: 13px;
  color: var(--secondary);
}

.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / 3;
  }
}

/* ============================================
   Services page — hero
   ============================================ */

.page-hero {
  position: relative;
  padding: 72px 0 56px;
}

.page-hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
  max-width: 20ch;
  animation: heroFadeUp 0.8s var(--ease) both;
}

.page-hero h1 .accent {
  color: var(--accent);
  display: inline-block;
}

.page-hero .subtext {
  font-size: 17px;
  color: var(--secondary);
  max-width: 60ch;
  line-height: 1.65;
  margin: 0;
  animation: heroFadeUp 0.8s var(--ease) 0.12s both;
}

/* Full-bleed video variant, used on Home/Services/Work/About */
.page-hero-video {
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 72px 0;
}

.page-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,8,14,0.85) 0%, rgba(6,8,14,0.6) 45%, rgba(6,8,14,0.25) 80%, rgba(6,8,14,0.1) 100%),
    linear-gradient(0deg, rgba(6,8,14,0.4) 0%, rgba(6,8,14,0) 30%);
  pointer-events: none;
}

.page-hero-video .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-video .badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}

.page-hero-video h1 {
  color: #fff;
}

.page-hero-video .subtext {
  color: rgba(255,255,255,0.78);
}

@media (max-width: 700px) {
  .page-hero-video {
    min-height: 320px;
    padding: 56px 0;
  }
  .page-hero-bg-video {
    object-position: 30% center;
  }
}

/* ============================================
   Service selector (Services page)
   ============================================ */

.selector-wrap {
  border-top: 1px solid var(--divider);
}

.selector-tabs {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-bottom: 1px solid var(--divider);
}

.selector-tabs button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
  padding: 6px 0;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.selector-tabs button:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.selector-tabs button.active {
  color: var(--primary);
  font-weight: 600;
}

.solution-panel {
  display: none;
  padding: 56px 0;
}

.solution-panel.active {
  display: block;
}

.solution-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.solution-left .num {
  font-size: 15px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 18px;
}

.solution-left h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 14ch;
}

.solution-left .desc {
  font-size: 16px;
  color: var(--secondary);
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 0 22px;
}

.solution-left .price {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.solution-left .price .price-note {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  margin-top: 4px;
}

.solution-right .process-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 0 0 14px;
}

.solution-right .process-desc {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.7;
  margin: 0 0 28px;
}

.expand-toggle {
  background: none;
  border: 1px solid var(--divider);
  border-radius: 4px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.expand-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.expand-toggle .chev {
  transition: transform 0.3s var(--ease);
}

.expand-toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.solution-expanded {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
}

.solution-expanded.open {
  max-height: 2400px;
}

.expanded-inner {
  padding-top: 44px;
  margin-top: 44px;
  border-top: 1px solid var(--divider);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.expanded-inner h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

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

.expanded-inner ul li {
  font-size: 15px;
  color: var(--primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
}

.expanded-inner ul li:last-child {
  border-bottom: none;
}

.how-we-work-step {
  margin-bottom: 18px;
}

.how-we-work-step strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.how-we-work-step span {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.6;
}

.expanded-note {
  grid-column: 1 / 3;
  font-size: 14px;
  font-style: italic;
  color: var(--secondary);
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

@media (max-width: 820px) {
  .solution-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .expanded-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .expanded-note {
    grid-column: 1;
  }
  .selector-tabs {
    gap: 20px 28px;
  }
}

/* ============================================
   Custom cursor: blue dot + trail + text proximity glow
   Desktop pointer devices only — see script.js for the
   feature-detect that adds .has-fine-pointer to <body>
   ============================================ */

body.has-fine-pointer,
body.has-fine-pointer a,
body.has-fine-pointer button {
  cursor: none;
}

body.has-fine-pointer input,
body.has-fine-pointer textarea,
body.has-fine-pointer select {
  cursor: text;
}

input,
textarea,
select {
  caret-color: var(--primary);
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 2px rgba(20, 103, 255, 0.8), 0 0 22px 6px rgba(20, 103, 255, 0.3);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
  will-change: transform;
}

.cursor-dot.visible {
  opacity: 1;
}

.cursor-trail-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px 1px rgba(20, 103, 255, 0.6);
  pointer-events: none;
  z-index: 9998;
  opacity: 0.55;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.word-hover {
  transition: color 0.25s ease;
}

body.has-fine-pointer .word-hover.near-cursor {
  color: var(--accent);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-trail-dot {
    display: none;
  }
}

/* ============================================
   Blog page
   ============================================ */

.blog-featured {
  padding: 64px 0 0;
}

.featured-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 16px;
  background: var(--dark-bg);
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.featured-card:hover {
  transform: translateY(-3px);
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.featured-meta .s-num {
  color: #7fa8ff;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.featured-meta .dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.featured-card .post-category {
  color: #7fa8ff;
  margin-bottom: 0;
}

.featured-card h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  max-width: 32ch;
}

.featured-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 20px;
  max-width: 60ch;
}

.featured-card .post-meta {
  color: rgba(255, 255, 255, 0.5);
}

.blog-section {
  padding: 88px 0 96px;
}

.blog-section .section-head {
  max-width: 60ch;
  margin-bottom: 40px;
}

.blog-section .section-head p {
  font-size: 16px;
  color: var(--secondary);
  margin: 0;
  line-height: 1.6;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--divider);
  cursor: pointer;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.post-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 12px;
}

.blog-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary);
  margin: 0 0 20px;
  flex-grow: 1;
}

.post-meta {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 500;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Legal content (Privacy / Terms)
   ============================================ */

.legal-content {
  padding: 8px 0 88px;
}

.legal-content .wrap {
  max-width: 760px;
  margin: 0;
}

.legal-updated {
  font-size: 14px;
  color: var(--secondary);
  margin: 0 0 48px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 16px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary);
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--primary);
  font-weight: 600;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

/* ============================================
   Work page — interactive phone demo
   ============================================ */

.work-demo {
  padding: 88px 0 110px;
  border-top: 1px solid var(--divider);
}

.work-demo .section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.work-demo .section-head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  margin: 14px 0 16px;
}

.work-demo .section-head .subtext {
  font-size: 16px;
  line-height: 1.65;
  color: var(--secondary);
  margin: 0;
}

.phone-demo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.demo-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--divider);
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 8px 20px -6px rgba(17, 17, 17, 0.25);
}

.demo-nav-prev { left: -20px; }
.demo-nav-next { right: -20px; }

.demo-nav-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.06);
}

.demo-nav-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.demo-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--divider);
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.demo-nav-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.demo-example-desc {
  max-width: 480px;
  margin: 16px auto 0;
  text-align: center;
  min-height: 52px;
}

.demo-desc {
  display: none;
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary);
  margin: 0;
}

.demo-desc.active {
  display: block;
}

.phone-frame {
  position: relative;
  width: 340px;
  height: 700px;
  background: #0b0b0d;
  border-radius: 46px;
  padding: 14px;
  box-shadow: 0 30px 70px -20px rgba(17, 17, 17, 0.35), 0 0 0 1.5px rgba(255,255,255,0.06) inset;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #0b0b0d;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f4f2ee;
  border-radius: 34px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
  display: none;
}

.phone-screen.active {
  display: block;
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

.demo-frame {
  display: none;
}

.demo-frame.active {
  display: block;
}

.laptop-frame {
  width: 100%;
  max-width: 720px;
}

.laptop-bezel {
  background: #0b0b0d;
  border-radius: 14px;
  padding: 14px 14px 10px;
  box-shadow: 0 30px 70px -20px rgba(17, 17, 17, 0.35), 0 0 0 1.5px rgba(255, 255, 255, 0.06) inset;
}

.laptop-screen {
  width: 100%;
  height: 560px;
  background: #f4f2ee;
  border-radius: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.laptop-screen::-webkit-scrollbar {
  display: none;
}

.laptop-base {
  height: 18px;
  background: linear-gradient(180deg, #2b2b2e, #131315);
  border-radius: 0 0 12px 12px;
  position: relative;
  margin: 0 -4px;
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 6px;
  background: #05050a;
  border-radius: 0 0 8px 8px;
}

@media (max-width: 760px) {
  .laptop-frame {
    max-width: 100%;
  }
  .laptop-screen {
    height: 65vh;
    max-height: 600px;
  }
}

/* Company header */
.li-header {
  background: #fff;
  padding-bottom: 16px;
  border-bottom: 8px solid #eef0ee;
}

.li-banner {
  height: 64px;
  background: linear-gradient(120deg, #5b4fe5, #8b7ff0);
}

.li-header-body {
  padding: 0 16px;
}

.li-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-top: -28px;
  border: 3px solid #fff;
  object-fit: cover;
  display: block;
}

.li-company-name {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0 2px;
  color: #191919;
}

.li-tagline {
  font-size: 12.5px;
  color: #56687a;
  margin: 0 0 10px;
  line-height: 1.4;
}

.li-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.li-meta span {
  font-size: 12px;
  color: #56687a;
}

.li-follow-btn {
  background: #0a66c2;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.li-follow-btn:hover {
  background: #004182;
}

/* Feed */
.li-feed {
  padding-bottom: 24px;
}

.li-post {
  background: #fff;
  padding: 14px 16px 6px;
  margin-top: 8px;
  border-top: 1px solid #eef0ee;
  border-bottom: 1px solid #eef0ee;
}

.li-post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.li-logo-sm {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-top: 0;
  border: none;
  flex-shrink: 0;
}

.li-post-author {
  font-size: 13.5px;
  font-weight: 700;
  color: #191919;
}

.li-post-meta {
  font-size: 11.5px;
  color: #56687a;
}

.li-post-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #191919;
  margin: 0 0 10px;
}

.li-engagement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 11.5px;
  color: #56687a;
  border-bottom: 1px solid #eef0ee;
}

.li-eng-icons strong {
  color: #191919;
  font-weight: 600;
}

.li-actions {
  display: flex;
  padding: 4px 0;
}

.li-actions button {
  flex: 1;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: #56687a;
  padding: 10px 0;
  cursor: pointer;
  font-family: inherit;
}

/* Video post */
.li-media {
  margin: 0 -16px 0;
  position: relative;
  overflow: hidden;
}

.li-video {
  aspect-ratio: 16 / 9;
  height: auto;
  background: #0d0b1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.li-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.li-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.li-play-btn svg {
  width: 20px;
  height: 20px;
  fill: #191919;
  margin-left: 2px;
}

.li-video.playing .li-play-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.li-video-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.li-video.playing .li-video-badge {
  opacity: 0;
}

/* Post image + carousel image slides */
.li-post-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.li-slide-img {
  padding: 0 !important;
}

.li-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Carousel */
.li-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  touch-action: pan-y;
}

.li-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  cursor: grab;
}

.li-carousel-track.dragging {
  transition: none;
  cursor: grabbing;
}

.li-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
  user-select: none;
}

.li-slide-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.7;
}

.li-slide p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.li-slide-c1 { background: #5b4fe5; color: #fff; }
.li-slide-c2 { background: #443ac2; color: #fff; }
.li-slide-c3 { background: #332b99; color: #fff; }
.li-slide-c4 { background: #191147; color: #fff; }
.li-slide-d1 { background: #0a66c2; color: #fff; }
.li-slide-d2 { background: #084d94; color: #fff; }
.li-slide-d3 { background: #063867; color: #fff; }

.li-car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  font-size: 18px;
  line-height: 1;
  color: #191919;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.li-car-prev { left: 10px; }
.li-car-next { right: 10px; }

.li-car-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.li-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}

.li-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Quote + hiring cards */
.li-quote-card {
  height: 190px;
  background: linear-gradient(135deg, #191147, #443ac2);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
}

.li-quote-mark {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.5;
  margin-bottom: 4px;
  font-family: Georgia, serif;
}

.li-quote-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 12px;
}

.li-quote-attr {
  font-size: 11.5px;
  opacity: 0.7;
}

.li-hiring-card {
  height: 190px;
  background: #0a66c2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.li-hiring-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.li-hiring-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 400px) {
  .phone-frame {
    width: 300px;
    height: 640px;
  }
  .demo-nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
  .demo-nav-prev { left: -12px; }
  .demo-nav-next { right: -12px; }
}

/* ============================================
   Newsletter example screen
   ============================================ */

.nl-topbar {
  background: #fff;
  padding: 14px 16px;
  border-bottom: 1px solid #eef0ee;
}

.nl-topbar-label {
  font-size: 13px;
  font-weight: 700;
  color: #191919;
}

.nl-meta {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  padding: 14px 16px;
  border-bottom: 8px solid #eef0ee;
}

.nl-meta .li-logo-sm {
  margin-top: 2px;
}

.nl-meta-text {
  min-width: 0;
}

.nl-from {
  font-size: 13px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 3px;
}

.nl-from-email {
  font-weight: 500;
  color: #56687a;
  font-size: 11.5px;
}

.nl-subject {
  font-size: 13.5px;
  font-weight: 600;
  color: #191919;
  line-height: 1.4;
}

.nl-body {
  background: #fff;
}

.nl-banner {
  background: linear-gradient(120deg, #5b4fe5, #8b7ff0);
  padding: 32px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-banner-logo {
  height: 34px;
  width: auto;
  border-radius: 8px;
}

.nl-content {
  padding: 20px 16px 28px;
}

.nl-content .nl-greeting {
  font-size: 14px;
  font-weight: 700;
  color: #191919;
  margin: 0 0 10px;
}

.nl-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #11183d;
  margin: 0 0 14px;
}

.nl-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #191919;
  margin: 22px 0 8px;
}

.nl-cta {
  display: block;
  text-align: center;
  background: #5b4fe5;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 22px 0;
  transition: background 0.2s ease;
}

.nl-cta:hover {
  background: #443ac2;
}

.nl-content .nl-bold {
  font-weight: 700;
  color: #191919;
}

.nl-section-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #5c50e5 !important;
  margin: 26px 0 16px !important;
  letter-spacing: -0.01em;
}

.nl-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 26px;
  flex-direction: column;
}

.nl-feature h5 {
  font-size: 14px;
  font-weight: 700;
  color: #191919;
  margin: 0 0 6px;
}

.nl-feature p {
  font-size: 12.5px;
  line-height: 1.5;
  color: #11183d;
  margin: 0 0 12px;
}

.nl-feature-img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.nl-banner-illus {
  display: block;
  background: linear-gradient(180deg, #5b4fe5, #7ec8ee);
  padding: 26px 16px 0;
  text-align: center;
}

.nl-banner-illus-logo {
  height: 20px;
  width: auto;
  margin-bottom: 16px;
}

.nl-banner-headline {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 18px;
}

.nl-banner-people {
  width: 100%;
  display: block;
}

.nl-why-img {
  width: 100%;
  border-radius: 10px;
  margin-top: 14px;
  display: block;
}

.nl-feature-text h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: #191919;
  margin: 0 0 4px;
}

.nl-feature-text p {
  font-size: 12.5px;
  line-height: 1.5;
  color: #11183d;
  margin: 0;
}

.nl-why-panel {
  background: linear-gradient(135deg, #5b4fe5, #2d9ee6);
  border-radius: 14px;
  padding: 20px 18px;
  margin: 22px 0;
  color: #fff;
}

.nl-why-panel h4 {
  color: #fff !important;
  font-size: 16px !important;
  margin: 0 0 10px !important;
}

.nl-why-panel p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12.5px !important;
  margin: 0 !important;
}

.nl-cta-panel {
  background: #5c50e5;
  border-radius: 14px;
  padding: 26px 18px;
  margin: 22px 0;
  text-align: center;
}

.nl-cta-panel .nl-cta-heading {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
}

.nl-cta-panel .nl-cta-sub {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 12.5px !important;
  margin: 0 0 18px !important;
}

.nl-cta-panel .nl-cta {
  background: #73c4e4;
  color: #fff;
  margin: 0;
  display: inline-block;
}

.nl-cta-panel .nl-cta:hover {
  background: #5bb0d3;
}

.nl-footer {
  font-size: 11px !important;
  color: #94a0ac !important;
  line-height: 1.5 !important;
  margin-top: 24px !important;
  padding-top: 16px;
  border-top: 1px solid #eef0ee;
}

/* ============================================
   Newsletter — laptop-width layout
   ============================================ */

.nl-banner-full {
  width: 100%;
  display: block;
}

.nl-body-wide .nl-banner-illus {
  padding: 40px 48px 0;
}

.nl-banner-headline {
  font-size: 26px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.nl-banner-people {
  max-width: 560px;
  margin: 0 auto;
  display: block;
}

.nl-content-wide {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 40px 44px;
}

.nl-content-wide p {
  font-size: 15px;
}

.nl-section-title-center {
  text-align: center;
  font-size: 22px !important;
  margin: 8px 0 28px !important;
}

.nl-feature-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
}

.nl-feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.nl-feature-text-col {
  flex: 1;
  min-width: 0;
}

.nl-feature-text-col h5 {
  font-size: 18px;
  font-weight: 700;
  color: #191919;
  margin: 0 0 10px;
}

.nl-feature-text-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #11183d;
  margin: 0;
}

.nl-feature-visual-col {
  flex: 1;
  background: #5c50e5;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-feature-visual-col img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.nl-why-panel-wide {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(180deg, #5c50e5, #2d9ee6, #9beaed);
  border-radius: 15px;
  padding: 36px 40px;
  margin: 30px 0 20px;
}

.nl-why-text-col h4 {
  color: #fff !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.nl-why-visual-col {
  flex-shrink: 0;
  width: 180px;
}

.nl-why-visual-col img {
  width: 100%;
  display: block;
}

.nl-why-desc {
  text-align: center;
  font-size: 14px !important;
  color: #11183d !important;
  max-width: 520px;
  margin: 0 auto 8px !important;
}

@media (max-width: 600px) {
  .nl-feature-row,
  .nl-feature-row:nth-child(even) {
    flex-direction: column;
    gap: 14px;
  }
  .nl-why-panel-wide {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .nl-why-visual-col {
    width: 140px;
    margin: 0 auto;
  }
  .nl-content-wide {
    padding: 24px 20px 32px;
  }
  .nl-body-wide .nl-banner-illus {
    padding: 28px 20px 0;
  }
  .nl-banner-headline {
    font-size: 20px;
  }
}

.nl-footer-band {
  background: #5c50e5;
  display: flex;
  padding: 30px 40px;
  gap: 16px;
}

.nl-footer-col {
  flex: 1;
}

.nl-footer-title {
  color: #d9feff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin: 0 0 12px !important;
}

.nl-footer-links {
  font-size: 13px !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

.nl-footer-links a {
  color: #d9feff;
  text-decoration: none;
}

.nl-footer-col-right .nl-footer-links a {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .nl-footer-band {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
  }
}
