/* =============================================================
   Lightspeed Hosting - Main Stylesheet
   Engineered for Speed. Built for Stability.

   Sections:
   01. Fonts
   02. Reset & Base
   03. Navigation
   04. Ticker
   05. Hero
   06. Shared Section Styles
   07. Hosting Solutions
   08. Why Lightspeed
   09. Who We Work With
   10. Security
   11. Social Proof
   12. Footer
   13. Responsive
   ============================================================= */

/* 01. Fonts */

/* poppins-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v24-latin-300.woff2') format('woff2');
}
/* poppins-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
}
/* poppins-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
}
/* poppins-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
}

/* 02. Reset & Base */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; background: #040823; color: #fff; }

  :root {
    --midnight: #040823;
    --night-sky: #031561;
    --electric-blue: #0143bd;
    --teal: #21eaf2;
    --pink: #f427dc;
    --stone-dark: #36394f;
    --med-grey: #686b7b;
    --light-grey: #9b9ca7;
    --off-white: #f6f6f6;
    --white: #ffffff;
  }

  /* 03. Navigation */

.ls-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 68px; background: rgba(4,8,35,0.97); border-bottom: 1px solid rgba(33,234,242,0.1); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(12px); }
  .ls-logo {
    display: inline-flex;
    align-items: center;
    width: 233px;
    height: 45px;
  }

  .ls-logo svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .ls-logo-mark { width: 34px; height: 26px; }
  .ls-logo-text { display: flex; flex-direction: column; line-height: 1; }
  .ls-logo-text span:first-child { font-size: 16px; font-weight: 600; letter-spacing: -0.3px; color: #fff; }
  .ls-logo-text span:first-child em { font-style: normal; color: #21eaf2; }
  .ls-logo-text span:last-child { font-size: 8px; font-weight: 400; letter-spacing: 3px; color: #9b9ca7; text-transform: uppercase; margin-top: 1px; }
  .ls-nav-links { display: flex; align-items: center; gap: 6px; }
  .ls-nav-item { position: relative; display: flex; align-items: center; }
  .ls-nav-item > a, .ls-nav-item > button { font-family: 'Poppins', sans-serif; font-size: 14px; color: rgba(255,255,255,1); text-decoration: none; background: none; border: none; cursor: pointer; padding: 10px 14px; border-radius: 5px; display: flex; align-items: center; gap: 4px; white-space: nowrap; transition: color 0.15s, background 0.15s; }
  .ls-nav-item > a:hover, .ls-nav-item > button:hover { color: #fff; background: rgba(255,255,255,0.06); }
  .ls-nav-item.current > .ls-nav-parent-link,
  .ls-nav-item.current > a,
  .ls-nav-item.current > button { color: #21eaf2; }
  .ls-nav-item > .ls-nav-parent-link { padding-right: 2px; border-radius: 5px 0 0 5px; }
  .ls-nav-item > .ls-chevron-btn { padding-left: 2px; padding-right: 8px; border-radius: 0 5px 5px 0; }
  /* Split items (link + chevron): hover the whole item together */
  .ls-nav-item:has(.ls-nav-parent-link) { border-radius: 5px; transition: background 0.15s; }
  .ls-nav-item:has(.ls-nav-parent-link):hover { background: rgba(255,255,255,0.06); }
  .ls-nav-item:has(.ls-nav-parent-link) > .ls-nav-parent-link:hover,
  .ls-nav-item:has(.ls-nav-parent-link) > .ls-chevron-btn:hover { background: none; }
  .ls-nav-item:has(.ls-nav-parent-link):hover > .ls-nav-parent-link,
  .ls-nav-item:has(.ls-nav-parent-link):hover > .ls-chevron-btn { color: #fff; }
  .ls-chevron { transition: transform 0.2s; }
  .ls-nav-item.active .ls-chevron { transform: rotate(180deg); }
  .ls-dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: #0d1240; border: 1px solid rgba(33,234,242,0.15); border-radius: 8px; min-width: 250px; padding: 8px; box-shadow: 0 24px 48px rgba(0,0,0,0.6); z-index: 200; }
  .ls-nav-item.active .ls-dropdown { display: block; }
  .ls-dropdown-label { font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); padding: 8px 12px 6px; }
  .ls-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 6px; font-size: 12.5px; color: rgba(255,255,255,1); text-decoration: none; transition: background 0.15s, color 0.15s; }
  .ls-dropdown a:hover { background: rgba(33,234,242,0.08); color: #fff; }
  .ls-dropdown a .dd-dot { width: 5px; height: 5px; border-radius: 50%; background: #21eaf2; opacity: 0.5; flex-shrink: 0; }
  .ls-dropdown a:hover .dd-dot { opacity: 1; }
  .ls-dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 6px 8px; }
  .ls-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .ls-btn-ghost { font-family: 'Poppins', sans-serif; font-size: 13px; color: rgba(255,255,255,1); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.35); border-radius: 5px; padding: 10px 16px; cursor: pointer; white-space: nowrap; transition: border-color 0.15s, color 0.15s, background 0.15s; }
  .ls-btn-ghost:hover { border-color: rgba(255,255,255,0.9); color: #fff; background: rgba(255,255,255,0.13); }
  .ls-btn-primary { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; color: #040823; background: #21eaf2; border: none; border-radius: 5px; padding: 11px 18px; cursor: pointer; white-space: nowrap; transition: background 0.15s; text-decoration: none; }
  .ls-btn-primary:hover { background: #4df0f6; }
  .ls-nav-menu { display: flex; align-items: center; gap: 24px; }
  .ls-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
  .ls-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; transform-origin: center; }
  .ls-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .ls-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .ls-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .ls-nav { padding: 0 20px; }
  .ls-hamburger { display: flex; }
  .ls-nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(4,8,35,0.98);
    border-bottom: 1px solid rgba(33,234,242,0.12);
    padding: 8px 16px 20px;
    backdrop-filter: blur(12px);
    z-index: 999;
  }
  .ls-nav.mobile-open .ls-nav-menu { display: flex; }
  .ls-nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .ls-nav-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .ls-nav-item:last-child { border-bottom: none; }
  .ls-nav-item > a, .ls-nav-item > button { width: auto; flex: 1; justify-content: space-between; padding: 12px 4px; font-size: 14px; border-radius: 0; border-bottom: none; }
  .ls-nav-item > a:not(.ls-nav-parent-link) { width: 100%; }
  .ls-nav-item > .ls-chevron-btn { flex: 0; padding: 12px 4px; border-radius: 0; }
  .ls-dropdown { position: static; box-shadow: none; border: none; border-radius: 0; min-width: unset; padding: 0 0 4px 12px; background: transparent; }
  .ls-dropdown a { padding: 10px 12px; font-size: 13px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .ls-dropdown a:last-child { border-bottom: none; }
  .ls-nav-actions { flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 8px; }
  .ls-nav-actions .ls-btn-ghost, .ls-nav-actions .ls-btn-primary { text-align: center; width: 100%; box-sizing: border-box; justify-content: center; display: block; padding: 11px 16px; font-size: 13px; }
}

  /* 04. Ticker */

.ls-ticker-wrap { background: #040823; border-bottom: 1px solid rgba(33,234,242,0.08); overflow: hidden; position: relative; height: 44px; }
  .ls-ticker-fade-left { position: absolute; left: 0; top: 0; bottom: 0; width: 100px; background: linear-gradient(to right, #040823, transparent); z-index: 2; pointer-events: none; }
  .ls-ticker-fade-right { position: absolute; right: 0; top: 0; bottom: 0; width: 100px; background: linear-gradient(to left, #040823, transparent); z-index: 2; pointer-events: none; }
  .ls-ticker-track { display: flex; align-items: center; height: 44px; width: max-content; animation: ls-scroll 36s linear infinite; }
  .ls-ticker-track:hover { animation-play-state: paused; }
  @keyframes ls-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .ls-ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 40px; white-space: nowrap; }
  .ls-ticker-value { font-size: 12px; font-weight: 600; color: #21eaf2; }
  .ls-ticker-label { font-size: 11.5px; color: rgba(255,255,255,0.75); }
  .ls-ticker-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(33,234,242,0.3); flex-shrink: 0; }

  /* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(1,67,189,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(33,234,242,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #040823 0%, #031561 50%, #040823 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines svg {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 65%;
  height: 80%;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
  font-weight: 600;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  max-width: 540px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  background: var(--teal);
  color: var(--midnight);
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}


.stat-number {
  font-size: 32px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  margin-top: 2px;
}

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

/* ── SECTIONS ── */
section {
  padding: 100px 5vw;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-heading em {
  font-style: normal;
  color: var(--teal);
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}

/* ── WHY LIGHTSPEED ── */
.why-section {
  background: rgba(3,21,97,0.15);
  border-top: 1px solid rgba(33,234,242,0.08);
  border-bottom: 1px solid rgba(33,234,242,0.08);
}

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


.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.contact-form-wrap {
  display: block;
  padding: 36px 32px;
}

.value-card {
  background: rgba(4,8,35,0.8);
  padding: 28px 24px;
  transition: background 0.25s;
}

.value-card:hover {
  background: rgba(3,21,97,0.6);
}

.value-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--teal);
}

.value-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--white);
}

.value-desc {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
}

/* ── AUDIENCE ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.audience-card {
  border: 1px solid rgba(33,234,242,0.15);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--electric-blue));
}

.audience-card:hover {
  border-color: rgba(33,234,242,0.4);
  transform: translateY(-4px);
}

.audience-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(33,234,242,0.08);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  letter-spacing: -3px;
}

.audience-type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.audience-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.3;
}

.audience-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.audience-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-features li {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.audience-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 7px;
  flex-shrink: 0;
}

.audience-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--teal);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.audience-link:hover { opacity: 0.7; }
.audience-link::after { content: ' →'; }

/* ── STORY BAND ── */
.story-band {
  background: linear-gradient(135deg, rgba(3,21,97,0.4) 0%, rgba(1,67,189,0.2) 100%);
  border-top: 1px solid rgba(33,234,242,0.1);
  border-bottom: 1px solid rgba(33,234,242,0.1);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-quote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,1);
}

.story-quote strong {
  color: var(--teal);
  font-weight: 600;
}

.story-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-line {
  width: 2px;
  background: linear-gradient(180deg, var(--teal), transparent);
  flex-shrink: 0;
  margin-top: 4px;
  height: 40px;
}

.pillar-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}
.pillar-desc {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* ── POSITIONING ── */
.positioning-section {
  text-align: center;
  overflow: hidden;
  position: relative;
}

.positioning-motif {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 33%;
  pointer-events: none;
  opacity: 0.04;
}

.positioning-motif img {
  width: 100%;
  height: auto;
  display: block;
}

.taglines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 48px 0;
}

.tag-primary {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -1.5px;
  color: var(--white);
}

.tag-secondary {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.7);
}

.tag-accent {
  color: var(--teal);
  font-weight: 600;
}

/* Speed: rushing-right effect */
.speed-group {
  position: relative;
  display: inline-block;
}

.speed-word {
  display: inline-block;
  font-style: italic;
  letter-spacing: -2px;
}

.speed-streaks {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

.speed-streaks span {
  display: block;
  height: 2px;
  border-radius: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(33,234,242,0.4) 55%, transparent 100%);
  animation: streak-rush 2.2s ease-in-out infinite;
  opacity: 0;
}
.speed-streaks span:nth-child(1) { width: 48px;  animation-delay: 0.00s; }
.speed-streaks span:nth-child(2) { width: 80px;  animation-delay: 0.14s; }
.speed-streaks span:nth-child(3) { width: 112px; animation-delay: 0.07s; }
.speed-streaks span:nth-child(4) { width: 112px; animation-delay: 0.21s; }
.speed-streaks span:nth-child(5) { width: 80px;  animation-delay: 0.28s; }
.speed-streaks span:nth-child(6) { width: 48px;  animation-delay: 0.42s; }

@keyframes streak-rush {
  0%   { opacity: 0; transform: scaleX(0.15); }
  22%  { opacity: 1; transform: scaleX(1); }
  72%  { opacity: 0.55; }
  100% { opacity: 0; transform: scaleX(1) translateX(28px); }
}

/* Stability: construction/scaffolding wrapper */
.tag-stability-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stability-label {
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.stability-crane {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.proposition-box {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid rgba(33,234,242,0.2);
  padding: 40px 48px;
  position: relative;
}

.proposition-box::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: var(--teal);
}

.proposition-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.95);
}


/* ── SERVICES/FEATURES ── */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.service-card {
  display: block;
  background: var(--midnight);
  padding: 36px 28px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(33,234,242,0.05));
  transition: height 0.3s;
}

.service-card:hover::after { height: 100%; }
.service-card:hover { background: rgba(3,21,97,0.5); }

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--teal);
}

.service-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

/* ── LIGHT SERVICES SECTION ── */
.services-section-light,
.inclusions-section.services-section-light {
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.services-section-light .section-label { color: var(--electric-blue); }
.services-section-light .section-heading { color: var(--midnight); }
.services-section-light .section-heading em { color: var(--electric-blue); }
.services-section-light .section-body { color: var(--stone-dark); }

.services-section-light .services-grid { background: rgba(0,0,0,0.06); }
.services-section-light .services-grid-4 { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.06); }

.services-section-light .service-card { background: #fff; color: var(--midnight); }
.services-section-light .service-card:hover { background: rgba(1,67,189,0.04); }
.services-section-light .service-card::after { background: linear-gradient(180deg, transparent, rgba(1,67,189,0.04)); }

.services-section-light .service-icon { color: var(--electric-blue); }
.services-section-light .service-name { color: var(--midnight); }
.services-section-light .service-desc { color: var(--stone-dark); }

.services-section-light .audience-card {
  background: #fff;
  border-color: rgba(1,67,189,0.12);
}
.services-section-light .audience-card:hover { border-color: rgba(1,67,189,0.35); }
.services-section-light .audience-number { color: rgba(1,67,189,0.06); }
.services-section-light .audience-type { color: var(--electric-blue); }
.services-section-light .audience-title { color: var(--midnight); }
.services-section-light .audience-desc { color: var(--stone-dark); }
.services-section-light .audience-features li { color: var(--stone-dark); }
.services-section-light .audience-features li::before { background: var(--electric-blue); }
.services-section-light .audience-link { color: var(--electric-blue); }

/* Who We Serve — transitional: slightly blue-tinted, gradient top stripe */
#who.services-section-light {
  background: #eceff8;
  border-top: none;
  border-bottom: none;
}

/* Accordion in light sections */
.services-section-light .accordion { background: rgba(0,0,0,0.06); }
.services-section-light .accordion-item { background: #fff; }
.services-section-light .accordion-trigger:hover { background: rgba(1,67,189,0.05); }
.services-section-light .accordion-item.open .accordion-trigger { background: rgba(1,67,189,0.1); }
.services-section-light .accordion-label { color: var(--midnight); }
.services-section-light .accordion-icon { color: var(--electric-blue); }
.services-section-light .accordion-content { border-top-color: rgba(0,0,0,0.06); }

/* Spec rows in light sections */
.services-section-light .spec-row { border-bottom-color: rgba(0,0,0,0.06); }
.services-section-light .spec-key { color: var(--stone-dark); }
.services-section-light .spec-val { color: var(--midnight); }
.services-section-light .spec-val-teal { color: var(--electric-blue); }

/* Biz plan card in light sections */
.services-section-light .biz-plan-wrap { background: #fff; border-color: rgba(1,67,189,0.2); }
.services-section-light .biz-plan-left { border-right-color: rgba(0,0,0,0.08); border-bottom-color: rgba(0,0,0,0.08); }
.services-section-light .biz-price-amount { color: var(--midnight); }
.services-section-light .biz-price-period { color: var(--stone-dark); }
.services-section-light .biz-plan-sub { color: var(--stone-dark); }
.services-section-light .biz-spec-list li { color: var(--midnight); }
.services-section-light .biz-spec-dot { background: var(--electric-blue); }

/* ── JOURNEY ── */
.journey-section {
  background: rgba(3,39,161,0.08);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.journey-steps--4col {
  grid-template-columns: repeat(4, 1fr);
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8.33%;
  right: 8.33%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  opacity: 0.3;
  z-index: 0;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(33,234,242,0.3);
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.step-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 120px 5vw;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,21,97,0.5) 0%, rgba(1,67,189,0.3) 50%, rgba(3,21,97,0.5) 100%);
  border-top: 1px solid rgba(33,234,242,0.1);
  border-bottom: 1px solid rgba(33,234,242,0.1);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: rgba(4,8,35,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 5vw 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}

.footer-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--teal);
  border: 1px solid rgba(33,234,242,0.2);
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
/* ── BUSINESS HOSTING PAGE ── */
.biz-header-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.biz-plan-wrap {
  position: relative;
  border: 1px solid rgba(33,234,242,0.25);
  background: rgba(3,21,97,0.2);
  margin-top: 60px;
}

.biz-plan-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #21eaf2, #0143bd);
}

.biz-plan-body {
  display: flex;
  gap: 60px;
  padding: 40px 48px;
  align-items: stretch;
}

.biz-plan-left {
  flex-shrink: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding-right: 60px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.biz-plan-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.biz-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.biz-price-amount {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #fff;
}

.biz-price-period {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.biz-plan-sub {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  line-height: 1.6;
}

.biz-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.biz-spec-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 48px;
}

.biz-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,1);
}

.biz-spec-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #21eaf2;
  flex-shrink: 0;
  margin-top: 7px;
  display: inline-block;
}

.biz-spec-group-label {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding-top: 10px;
  margin-top: 2px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.biz-spec-indent {
  padding-left: 14px;
}

.biz-spec-dot-sm {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(33, 234, 242, 0.5);
  flex-shrink: 0;
  margin-top: 7px;
  display: inline-block;
}

.biz-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(33, 234, 242, 0.4);
  color: rgba(33, 234, 242, 0.7);
  font-size: 8px;
  font-style: italic;
  font-family: Georgia, serif;
  cursor: default;
  margin-left: 5px;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 1;
}

.biz-tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #0d1f3c;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  padding: 8px 11px;
  border-radius: 6px;
  width: 210px;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 20;
  border: 1px solid rgba(33, 234, 242, 0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.biz-tip::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(33, 234, 242, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 20;
}

.biz-tip:hover::after,
.biz-tip:hover::before {
  opacity: 1;
}

.biz-card-cta {
  display: inline-block;
}

.biz-plan-addons {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.biz-plan-addons strong {
  color: rgba(255,255,255,1);
  font-weight: 500;
}

.inclusions-section {
  background: rgba(3,21,97,0.1);
  border-top: 1px solid rgba(33,234,242,0.08);
  border-bottom: 1px solid rgba(33,234,242,0.08);
}

.spec-rows {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

.spec-val {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: right;
}

.spec-val-teal {
  font-size: 13px;
  font-weight: 500;
  color: #21eaf2;
  text-align: right;
}

/* ── ACCORDIONS ── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.accordion-item {
  background: #040823;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  transition: background 0.2s;
}

.accordion-trigger:hover {
  background: rgba(3,21,97,0.5);
}

.accordion-item.open .accordion-trigger {
  background: rgba(3,21,97,0.3);
}

.accordion-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

.accordion-icon {
  width: 18px;
  height: 18px;
  color: #21eaf2;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-panel {
  max-height: 2000px;
}

.accordion-content {
  padding: 4px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .audience-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
.footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .journey-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .journey-steps--4col { grid-template-columns: repeat(2, 1fr); }
  .journey-steps::before { display: none; }
  .hero-stats { gap: 28px; }
  .biz-plan-body { flex-direction: column; gap: 32px; padding: 32px 28px; }
  .biz-plan-left { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 28px; }
  .biz-spec-cols { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-steps--4col { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
  /* 11. Social Proof */

.ls-proof { background: #06091f; padding: 80px 48px; border-top: 1px solid rgba(255,255,255,0.05); }
  .ls-proof-header { text-align: center; margin-bottom: 52px; }
  .ls-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
  .ls-testimonial { padding: 30px 26px; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; background: rgba(255,255,255,0.02); display: flex; flex-direction: column; gap: 18px; transition: border-color 0.2s; }
  .ls-testimonial:hover { border-color: rgba(33,234,242,0.18); }
  .ls-stars { display: flex; gap: 4px; }
  .ls-star { width: 13px; height: 13px; background: #21eaf2; opacity: 0.8; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
  .ls-quote { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.8; flex: 1; font-style: italic; }
  .ls-quote::before { content: '\201C'; color: #21eaf2; font-style: normal; font-size: 20px; line-height: 0; vertical-align: -5px; margin-right: 2px; }
  .ls-quote::after { content: '\201D'; color: #21eaf2; font-style: normal; font-size: 20px; line-height: 0; vertical-align: -5px; margin-left: 2px; }
  .ls-t-meta { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }
  .ls-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
  .ls-av-1 { background: rgba(1,67,189,0.35); color: #21eaf2; }
  .ls-av-2 { background: rgba(33,234,242,0.15); color: #21eaf2; }
  .ls-av-3 { background: rgba(3,21,97,0.5); color: #21eaf2; }
  .ls-t-name { font-size: 12.5px; font-weight: 500; color: #fff; margin-bottom: 2px; }
  .ls-t-role { font-size: 11px; color: rgba(255,255,255,0.58); }
  .ls-proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
  .ls-proof-stat { padding: 28px 22px; background: #06091f; text-align: center; }
  .ls-ps-value { font-size: 32px; font-weight: 600; color: #fff; letter-spacing: -1.5px; margin-bottom: 5px; }
  .ls-ps-value span { color: #21eaf2; }
  .ls-ps-label { font-size: 11.5px; color: rgba(255,255,255,0.62); line-height: 1.4; }

  /* 12. Footer */

.ls-footer { background: #040823; border-top: 1px solid rgba(255,255,255,0.07); }
  .ls-footer-main { padding: 64px 48px 44px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 56px; }
  .ls-footer-brand { display: flex; flex-direction: column; gap: 16px; }
  .ls-footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 4px; }
  .ls-footer-logo-mark { width: 30px; height: 23px; }
  .ls-footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
  .ls-footer-logo-text span:first-child { font-size: 15px; font-weight: 600; color: #fff; }
  .ls-footer-logo-text span:first-child em { font-style: normal; color: #21eaf2; }
  .ls-footer-logo-text span:last-child { font-size: 7.5px; font-weight: 400; letter-spacing: 3px; color: #9b9ca7; text-transform: uppercase; margin-top: 1px; }
  .ls-footer-tagline { font-size: 12.5px; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 230px; }
  .ls-footer-contact { display: flex; flex-direction: column; gap: 9px; }
  .ls-footer-contact a { font-size: 12px; color: rgba(255,255,255,0.68); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.15s; }
  .ls-footer-contact a:hover { color: #21eaf2; }
  .ls-fc-dot { width: 4px; height: 4px; border-radius: 50%; background: #21eaf2; opacity: 0.4; flex-shrink: 0; }
  .ls-footer-col-title { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
  .ls-footer-links { display: flex; flex-direction: column; gap: 11px; }
  .ls-footer-links a { font-size: 12.5px; color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.15s; }
  .ls-footer-links a:hover { color: #fff; }
  .ls-footer-bottom { padding: 22px 48px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .ls-footer-bottom-left { display: flex; align-items: center; gap: 20px; }
  .ls-footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.52); }
  .ls-footer-abn { font-size: 11.5px; color: rgba(255,255,255,0.48); }
  .ls-footer-legal { display: flex; gap: 18px; }
  .ls-footer-legal a { font-size: 11.5px; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.15s; }
  .ls-footer-legal a:hover { color: rgba(255,255,255,0.8); }
  .ls-footer-au { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: rgba(255,255,255,0.52); }
  .ls-footer-au-dot { width: 6px; height: 6px; border-radius: 50%; background: #21eaf2; opacity: 0.4; }

@media (max-width: 768px) {
  .ls-footer-main { grid-template-columns: repeat(3, 1fr); padding: 48px 24px 36px; gap: 32px 20px; }
  .ls-footer-brand { grid-column: 1 / -1; }
  .ls-footer-bottom { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .ls-footer-bottom-left { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 480px) {
  .ls-footer-main { grid-template-columns: 1fr; padding: 36px 20px 28px; gap: 24px; }
}

/* Console Preview */
.console-preview-wrap {
  position: relative;
  overflow: hidden;
  height: 700px;
  margin-top: 48px;
  border: 1px solid rgba(33,234,242,0.15);
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.console-preview-frame {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
  transform-origin: top left;
}

@media (max-width: 960px) {
  .console-preview-wrap { height: 455px; }
  .console-preview-frame { width: calc(100% / 0.65); transform: scale(0.65); }
}

@media (max-width: 640px) {
  .console-preview-wrap { height: 315px; }
  .console-preview-frame { width: calc(100% / 0.45); transform: scale(0.45); }
}

@media (max-width: 480px) {
  #console-preview { display: none; }
}

/* ── Blog ── */

.ls-container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

/* Blog index */
.ls-blog-index { padding: 80px 0 100px; }
.ls-section-label { font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: #21eaf2; margin-bottom: 16px; }
.ls-section-heading { font-size: clamp(28px, 3.5vw, 46px); font-weight: 300; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
.ls-section-heading strong { font-weight: 600; color: #21eaf2; }
.ls-section-sub { font-size: 15px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 56px; }
.ls-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
.ls-post-card { background: #040823; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: background 0.2s; position: relative; overflow: hidden; }
.ls-post-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #21eaf2, #0143bd); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.ls-post-card:hover { background: rgba(3,21,97,0.4); }
.ls-post-card:hover::before { transform: scaleX(1); }
.ls-post-card-thumb { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
.ls-post-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ls-post-card:hover .ls-post-card-thumb img { transform: scale(1.04); }
.ls-post-card-body { display: flex; flex-direction: column; gap: 12px; flex: 1; padding: 28px; }
.ls-post-card-date { font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 1px; }
.ls-post-card-title { font-size: 16px; font-weight: 500; line-height: 1.4; color: #fff; }
.ls-post-card-excerpt { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.8); flex: 1; }
.ls-post-card-link { font-size: 11.5px; font-weight: 500; color: #21eaf2; letter-spacing: 0.5px; margin-top: 4px; }
.ls-no-posts { font-size: 14px; color: rgba(255,255,255,0.7); }

/* Post page header */
.ls-post-page-header { background: linear-gradient(180deg, rgba(3,21,97,0.3) 0%, transparent 100%); border-bottom: 1px solid rgba(33,234,242,0.08); padding: 52px 0 60px; }
.ls-breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-size: 12px; }
.ls-breadcrumbs a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s; }
.ls-breadcrumbs a:hover { color: #21eaf2; }
.ls-breadcrumbs span { color: rgba(255,255,255,0.5); }
.ls-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: #21eaf2; margin-bottom: 16px; }
.ls-post-title { font-size: clamp(26px, 4vw, 52px); font-weight: 300; letter-spacing: -1.5px; line-height: 1.1; max-width: 820px; margin-bottom: 20px; }
.ls-post-meta { font-size: 12px; color: rgba(255,255,255,0.65); }

/* Post hero image */
.ls-post-hero { width: 100%; max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 7; background: #06091f; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ls-post-hero img { width: 100%; height: 100%; object-fit: contain; display: block; }

@media (max-width: 960px) {
  .ls-post-hero { max-width: 100%; }
}
@media (max-width: 640px) {
  .ls-post-hero { aspect-ratio: 4 / 3; }
}

/* Post body */
.ls-post-body { max-width: 720px; padding-top: 64px; padding-bottom: 64px; }
.ls-post-body h2 { font-size: 22px; font-weight: 500; letter-spacing: -0.4px; color: #fff; margin: 52px 0 16px; }
.ls-post-body h3 { font-size: 17px; font-weight: 500; color: #fff; margin: 36px 0 12px; }
.ls-post-body p { font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,1); margin-bottom: 22px; }
.ls-post-body > p:first-child { font-size: 17px; color: rgba(255,255,255,1); }
.ls-post-body img { width: 100%; border-radius: 6px; margin: 32px 0; border: 1px solid rgba(255,255,255,0.08); display: block; }
.ls-post-body a { color: #21eaf2; text-decoration: underline; text-underline-offset: 3px; }
.ls-post-body ul, .ls-post-body ol { padding-left: 20px; margin-bottom: 22px; }
.ls-post-body li { font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.95); margin-bottom: 6px; }
.ls-post-body code { font-size: 13px; background: rgba(33,234,242,0.08); color: #21eaf2; padding: 2px 6px; border-radius: 3px; font-family: monospace; }
.ls-post-body pre { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 24px; overflow-x: auto; margin-bottom: 24px; }
.ls-post-body pre code { background: none; padding: 0; color: rgba(255,255,255,1); font-size: 13px; }
.ls-post-body blockquote { border-left: 2px solid #21eaf2; padding: 4px 0 4px 24px; margin: 32px 0; }
.ls-post-body blockquote p { color: rgba(255,255,255,0.8); font-style: italic; }
.ls-post-body strong { font-weight: 600; color: rgba(255,255,255,1); }
.ls-post-body em { font-style: italic; color: rgba(255,255,255,1); }
.ls-post-body table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 13.5px; }
.ls-post-body th { text-align: left; font-weight: 500; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #21eaf2; padding: 10px 14px; border-bottom: 1px solid rgba(33,234,242,0.25); }
.ls-post-body td { padding: 12px 14px; color: rgba(255,255,255,0.95); font-weight: 300; border-bottom: 1px solid rgba(255,255,255,0.06); vertical-align: top; }
.ls-post-body tr:last-child td { border-bottom: none; }
.ls-post-body tr:hover td { background: rgba(255,255,255,0.02); }

/* Post footer */
.ls-post-footer { max-width: 720px; padding-top: 32px; padding-bottom: 80px; border-top: 1px solid rgba(255,255,255,0.07); }
.ls-back-link { font-size: 12.5px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s; display: inline-flex; align-items: center; gap: 6px; }
.ls-back-link:hover { color: #21eaf2; }

@media (max-width: 900px) {
  .ls-post-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ls-container { padding: 0 24px; }
  .ls-post-grid { grid-template-columns: 1fr; }
  .ls-blog-index { padding: 60px 0 80px; }
  .ls-post-page-header { padding: 36px 0 44px; }
  .ls-post-body { padding-top: 44px; padding-bottom: 48px; }
  .ls-post-footer { padding-bottom: 60px; }
  .ls-post-title { letter-spacing: -1px; }
}

