@charset "UTF-8";
:root {
  --green:#16A34A; /* Root / primary */
  --blue:#0B5ED7; /* Powered / secondary */
  /* boosted accents for dark backgrounds (keeps brand hues, adds pop) */
  --greenHi:#22c55e;
  --blueHi:#3b82f6;
  /* Dark mode palette */
  --bg:#0b1020;
  --bg2:#121b33;
  --panel:#121f3a;
  --panel2:#0f1c35;
  --ink:#e5e7eb;
  --muted:#9aa7bd;
  --ring: rgba(11,94,215,.35);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --shadow2: 0 10px 26px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
}

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

/* Always honor the HTML hidden attribute (prevents contextual links showing). */
[hidden] {
  display: none !important;
}

/* Extra safety: Drupal contextual links must never be forced visible by menu styling. */
h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 14px 0 12px;
  letter-spacing: -0.6px;
}

html, body {
  font-family: var(--font);
  color: var(--ink);
  background: radial-gradient(1100px 520px at 12% -10%, rgba(22, 163, 74, 0.22), transparent 60%), radial-gradient(1100px 540px at 88% -12%, rgba(11, 94, 215, 0.22), transparent 60%), radial-gradient(900px 520px at 50% 115%, rgba(255, 255, 255, 0.04), transparent 60%), linear-gradient(180deg, var(--bg), var(--bg2));
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 27, 45, 0.85);
  color: rgba(229, 231, 235, 0.92);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

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

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--greenHi), var(--blueHi));
  box-shadow: 0 16px 28px rgba(11, 94, 215, 0.16);
}

.badge {
  font-size: 12px;
  font-weight: 850;
  color: rgba(229, 231, 235, 0.9);
  background: rgba(11, 94, 215, 0.18);
  border: 1px solid rgba(11, 94, 215, 0.28);
  padding: 6px 10px;
  border-radius: 999px;
}

.portalBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(59, 130, 246, 0.18));
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.portalBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(160%) blur(10px);
  background: rgba(7, 11, 20, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  gap: 16px;
}

.headerActions {
  flex: 0 0 auto;
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--greenHi), var(--blueHi));
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center; /* this centers the logo to the 2-line text block */
  gap: 12px;
  min-width: 220px;
}

.site-logo {
  height: 60px; /* tweak as needed (38–44 is usually perfect) */
  width: auto;
  display: block;
}

.brandText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

.brand b .root {
  color: var(--greenHi);
  text-shadow: 0 0 14px rgba(34, 197, 94, 0.28);
  font-size: 1.1rem;
}

.brand b .powered {
  color: var(--blueHi);
  text-shadow: 0 0 14px rgba(59, 130, 246, 0.22);
  font-size: 1.1rem;
}

/* Only style the real primary menu list, not contextual admin lists. */
.links nav[role=navigation] > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.links nav[role=navigation] > ul > li {
  margin: 0;
  padding: 0;
}

.links nav[role=navigation] > ul > li > a {
  font-weight: 650;
  color: rgba(229, 231, 235, 0.82);
}

.links nav[role=navigation] > ul > li > a:hover {
  color: rgb(229, 231, 235);
}

.links nav[role=navigation] > ul > li > a.is-active {
  color: rgb(229, 231, 235);
}

/* Header actions region: flatten Drupal block markup */
.headerActions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Drupal block wrappers inside headerActions */
.headerActions > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Kill paragraph spacing that makes buttons stack */
.headerActions p {
  margin: 0;
}

/* Burger button only on mobile */
.burger {
  display: none;
}

@media (max-width: 980px) {
  .burger {
    display: inline-flex;
    margin-right: 1rem;
  }
  .links {
    display: none;
  }
  .brand {
    margin-left: 1rem;
  }
}
.hero {
  padding: 2rem 0 10px;
  position: relative;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(229, 231, 235, 0.72);
  padding: 0;
}

.sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(154, 167, 189, 0.95);
  margin: 0 0 18px;
}

.ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 14px 0 18px;
}

.ctaRow .btn {
  padding: 12px 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}

.panel {
  border-radius: var(--radius);
  background: rgba(15, 27, 45, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panelHead {
  padding: 16px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(15, 27, 45, 0.92), rgba(15, 27, 45, 0.62));
}

.panelHead b {
  font-size: 14px;
}

.panelBody {
  padding: 16px;
}

/* Fun widgets */
.widgets {
  margin-top: 18px;
}

.widgetGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.widget {
  position: relative;
  overflow: hidden;
}

/* lively accent sheen */
.widget::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(520px 200px at 15% 0%, rgba(34, 197, 94, 0.16), transparent 60%), radial-gradient(520px 220px at 85% 0%, rgba(59, 130, 246, 0.16), transparent 60%);
  pointer-events: none;
  opacity: 0.9;
}

.widget > * {
  position: relative;
}

/* Capability buttons (refined look) */
.chipCloud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-top: 10px;
}

.chip {
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: rgba(229, 231, 235, 0.92);
  font-weight: 750;
  text-align: left;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}

.chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(59, 130, 246, 0.12));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.chip.on {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(59, 130, 246, 0.18));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
}

.chip.on::before {
  opacity: 1;
}

.capDetail {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(0, 0, 0, 0.18);
  text-align: left;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.capTitle {
  font-size: 18px;
  font-weight: 950;
}

.capText {
  margin-top: 8px;
  color: rgba(229, 231, 235, 0.86);
  font-weight: 650;
  line-height: 1.6;
}

.capMeta {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.capCtaRow {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.capNote {
  color: rgba(229, 231, 235, 0.7);
  font-weight: 800;
}

/* Hosting tiles */
.pkgTiles {
  display: grid;
  gap: 12px;
}

.pkgTile {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.pkgTile:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.28);
}

.pkgTile.featured {
  border-color: rgba(59, 130, 246, 0.36);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.pkgName {
  font-weight: 950;
  font-size: 16px;
}

.pkgSub {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 650;
}

.pkgList {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(229, 231, 235, 0.86);
}

.pkgList li {
  margin: 6px 0;
}

.hostFoot {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hostHint {
  color: var(--muted);
  font-weight: 650;
}

/* Stats widget */
.statGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.stat {
  padding: 12px 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.statTop {
  color: rgba(229, 231, 235, 0.72);
  font-weight: 750;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.statBig {
  font-size: 22px;
  font-weight: 900;
  margin-top: 6px;
}

.statSub {
  color: var(--muted);
  font-weight: 650;
  margin-top: 4px;
}

.spark {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 10px;
  overflow: hidden;
}

.spark span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.ticker {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(229, 231, 235, 0.86);
  font-weight: 700;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(22, 163, 74, 0);
  }
}
.cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(11, 22, 39, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow2);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.22), rgba(11, 94, 215, 0.22));
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  margin-bottom: 12px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: rgba(154, 167, 189, 0.95);
  line-height: 1.55;
  font-weight: 650;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.step {
  border-radius: var(--radius);
  background: rgba(11, 22, 39, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 18px;
  box-shadow: var(--shadow2);
}

.step b {
  display: flex;
  align-items: center;
  gap: 10px;
}

.num {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: rgba(11, 94, 215, 0.18);
  border: 1px solid rgba(11, 94, 215, 0.28);
  color: rgba(229, 231, 235, 0.92);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step p {
  margin: 10px 0 0;
  color: rgba(154, 167, 189, 0.95);
  line-height: 1.55;
  font-weight: 650;
}

footer {
  margin-top: 60px;
  padding: 50px 0 50px;
  color: rgba(229, 231, 235, 0.78);
  background: radial-gradient(900px 300px at 20% 0%, rgba(34, 197, 94, 0.1), transparent 60%), radial-gradient(900px 320px at 80% 0%, rgba(59, 130, 246, 0.1), transparent 60%), linear-gradient(180deg, rgba(9, 14, 28, 0.95), rgb(11, 16, 32));
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

/* === 3-column footer grid (matches the mock) === */
footer .foot {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}

/* If a column is empty, Drupal won't render it (Twig checks), so no special handling needed */
footer .footCol {
  min-width: 0;
}

/* Brand colors in footer (if you output RootPowered text in a block) */
footer b .root {
  color: var(--greenHi);
}

footer b .powered {
  color: var(--blueHi);
}

/* Optional “brand column” helpers if you use them later */
.footBrand small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}

.footDesc {
  margin-top: 14px;
  max-width: 60ch;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.75);
}

/* === Column titles ===
   Mock uses .footColTitle; Drupal blocks often output <h2>.
   Support BOTH so you can use either approach.
*/
.footColTitle,
footer .footCol h2 {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.6);
  margin: 0 0 14px;
}

/* === Links lists ===
   Mock uses .footLinks; Drupal menus output <ul><li><a>.
   Support BOTH.
*/
.footLinks {
  display: grid;
  gap: 10px;
}

/* Drupal lists inside footer columns */
footer .footCol ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

footer .footCol li {
  margin: 0;
  padding: 0;
}

/* Links (both mock + Drupal output) */
.footLinks a,
footer .footCol a {
  color: rgba(229, 231, 235, 0.85);
  font-weight: 650;
  transition: color 0.15s ease;
  text-decoration: none;
}

.footLinks a:hover,
footer .footCol a:hover {
  color: #fff;
}

/* Prevent Basic blocks from wrapping everything in <p> with margins */
footer .footCol p {
  margin: 0;
}

/* === Bottom bar === */
.footBottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: rgba(229, 231, 235, 0.55);
}

/* Make bottom-bar links match the mock vibe */
.footBottom a {
  color: rgba(229, 231, 235, 0.7);
  font-weight: 650;
  text-decoration: none;
}

.footBottom a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
  footer .foot {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footBottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.mobileMenu {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(7, 11, 20, 0.92);
  padding: 14px 0;
}

.mobileMenu nav[role=navigation] > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mobileMenu li {
  margin: 0;
  padding: 0;
}

.mobileMenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 750;
  color: rgba(229, 231, 235, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 27, 45, 0.55);
}

.mobileMenu a:hover {
  background: rgba(15, 27, 45, 0.75);
  border-color: rgba(148, 163, 184, 0.18);
}

.mobileMenu a.is-active {
  border-color: rgba(59, 130, 246, 0.28);
}

/* Container we added inside mobile menu */
.mobileMenuActions {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

/* When actions are inside mobile menu, make them stack nicely */
.mobileMenu .headerActions,
.mobileMenu .headerActions > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

/* Make buttons full-width in mobile menu */
.mobileMenu .headerActions .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 980px) {
  .widgetGrid {
    grid-template-columns: 1fr;
  }
  .capDetail {
    text-align: left;
  }
}
@media (max-width: 980px) {
  .featureRow {
    grid-template-columns: 1fr;
  }
  .featureRow.reverse {
    direction: ltr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .masonry {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 980px) {
  footer .foot {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footBottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* General responsive */
@media (max-width: 980px) {
  .grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 40px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .links {
    display: none;
  }
}
/* === Primary local tasks (View / Edit / Delete tabs) === */
#block-root-theme-primary-local-tasks {
  margin: 20px 0 10px;
}

#block-root-theme-primary-local-tasks > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Individual tab */
#block-root-theme-primary-local-tasks > ul > li {
  margin: 0;
  padding: 0;
}

/* Tab link */
#block-root-theme-primary-local-tasks > ul > li > a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: rgba(229, 231, 235, 0.85);
  background: rgba(15, 27, 45, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: all 0.15s ease;
}

/* Hover */
#block-root-theme-primary-local-tasks > ul > li > a:hover {
  background: rgba(15, 27, 45, 0.85);
  border-color: rgba(148, 163, 184, 0.28);
}

/* Active tab */
#block-root-theme-primary-local-tasks > ul > li > a.is-active,
#block-root-theme-primary-local-tasks > ul > li > a[aria-current=page] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--greenHi), var(--blueHi));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

#block-root-theme-primary-local-tasks {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

div#block-root-theme-topbannerhome {
  margin-bottom: 4rem;
}

.timeline {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Connecting line (desktop/tablet) */
.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: 0.35;
}

.timelineItem {
  min-width: 220px; /* prevents squishing */
  position: relative;
  padding-top: 34px;
  text-align: center;
}

.timelineDot {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 0 6px rgba(11, 94, 215, 0.15);
}

.timelineItem h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.15px;
}

.timelineItem p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
  overflow-wrap: anywhere;
}

/* Tablet: 2 columns */
@media (max-width: 980px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .timeline::before {
    left: 12px;
    right: 12px;
  }
}
/* Small tablets / large phones: 1 column, KEEP a line (vertical) */
@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 22px; /* room for vertical line + dots */
  }
  /* Convert the line to vertical */
  .timeline::before {
    top: 8px;
    bottom: 8px;
    left: 10px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--green), var(--blue));
    opacity: 0.32;
  }
  .timelineItem {
    text-align: left;
    padding-top: 0;
    padding-left: 18px;
  }
  .timelineDot {
    left: 10px;
    top: 18px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 6px rgba(11, 94, 215, 0.12);
  }
}
@media (max-width: 560px) {
  .timeline {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding: 12px 0 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Fade edges “scroll hint” */
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 18px, black calc(100% - 18px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, black 18px, black calc(100% - 18px), transparent 100%);
  }
  /* Don't use the container line on mobile */
  .timeline::before {
    display: none;
  }
  .timelineItem {
    flex: 0 0 280px;
    scroll-snap-align: start;
    text-align: left;
    padding-top: 34px;
    position: relative;
  }
  /* Each item draws its own line segment so the line never "runs out" */
  .timelineItem::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -18px; /* reach back across the gap */
    width: calc(100% + 18px); /* extend through the item */
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    opacity: 0.35;
  }
  /* First item shouldn't draw a segment into empty space on the far left */
  .timelineItem:first-child::before {
    left: 0;
    width: 100%;
  }
  .timelineDot {
    left: 18px;
    transform: none;
  }
}
/* Sections */
section {
  padding: 80px 0;
}

.altSection {
  position: relative;
}

.band {
  position: relative;
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.1), rgba(11, 94, 215, 0.12));
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.sectionTitle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.sectionTitle > div {
  max-width: 780px;
}

.sectionTitle h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.25px;
  width: 100%;
}

.sectionTitle p {
  margin: 10px auto 0;
  color: rgba(154, 167, 189, 0.95);
  font-weight: 650;
  max-width: 60ch;
}

/* Zigzag features */
.zigzag {
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 980px;
}

.featureRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.featureText {
  max-width: 520px;
  text-align: left;
}

.featureRow.reverse {
  direction: rtl;
}

.featureRow.reverse .featureText {
  direction: ltr;
}

.featureText h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.featureText p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.linkArrow {
  font-weight: 700;
  color: var(--green);
}

.featureVisual {
  height: 220px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.gradientBox {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.35), rgba(11, 94, 215, 0.35));
}

.outlineBox {
  border: 2px dashed rgba(11, 94, 215, 0.45);
  background: rgba(11, 22, 39, 0.6);
}

.gridBox {
  background: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px), rgba(11, 22, 39, 0.6);
  background-size: 40px 40px;
}

/* Timeline */
.timeline {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: 0.4;
}

.timelineItem {
  position: relative;
  padding-top: 34px;
  text-align: center;
}

.timelineDot {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 0 6px rgba(11, 94, 215, 0.15);
}

.timelineItem h4 {
  margin: 0 0 8px;
}

.timelineItem p {
  margin: 0;
  color: var(--muted);
}

/* Masonry */
.masonry {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.masonryItem {
  height: 160px;
  border-radius: 20px;
}

.masonryItem.tall {
  grid-row: span 2;
  height: 336px;
}

/* CTA */
.cta {
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.14), rgba(11, 94, 215, 0.16));
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta h3 {
  margin: 0;
  font-size: 20px;
}

.cta p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
  max-width: 60ch;
}
/*# sourceMappingURL=style.css.map */
