* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

em, i {
  font-style: normal;
}

body {
  font-family: 'Geist', sans-serif;
  background: #111c2d;
  color: #e2e2dc;
  min-height: 100vh;
}

/* ── Nav ── */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-mark {
  width: 26px;
  height: 26px;
  background: #c8f0e0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0c2d1e;
  font-weight: 600;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.4px;
}

.logo-text span {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.logo-img {
  height: 32px;
  width: auto;
  mix-blend-mode: screen;
}

.nav-mid {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-mid a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-mid a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost-sm {
  font-size: 16px;
  padding: 7px 14px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transition: all 0.15s;
}

.btn-ghost-sm:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-solid-sm {
  font-size: 16px;
  font-weight: 500;
  padding: 7px 16px;
  background: #c8f0e0;
  color: #0c2d1e;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-solid-sm:hover {
  background: #e0fff2;
}

/* ── Nav Dropdown ── */

.nav-has-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger .ti-chevron-down {
  font-size: 16px;
  transition: transform 0.2s;
}

.nav-has-dropdown:hover .nav-dropdown-trigger .ti-chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #182435;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.1s;
}

.nav-dd-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-dd-icon {
  font-size: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.07);
  border: 0.5px solid rgba(74, 222, 128, 0.15);
  border-radius: 8px;
  color: #4ade80;
  flex-shrink: 0;
}

.nav-dd-title {
  font-size: 16px;
  font-weight: 500;
  color: #e2e2dc;
  margin-bottom: 2px;
}

.nav-dd-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Hero ── */

.hero {
  padding: 4.5rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  padding: 5px 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
}

h1 {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #fff;
}

h1.line1 {
  font-size: clamp(40px, 5.6vw, 64px);
}

h1.line2 {
  font-size: clamp(48px, 6.8vw, 78px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
}

h1.line2 i {
  -webkit-text-stroke: 2px rgba(157, 232, 192, 0.75);
}

/* ── Taglines ── */

.taglines {
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
}

.tl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.2s;
}

.tl-item:first-child {
  border-top: 0.5px solid rgba(255, 255, 255, 0.05);
}

.tl-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

.tl-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.tl-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.tl-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgba(74, 222, 128, 1);
  text-transform: uppercase;
}

.tl-bar {
  display: none;
}

/* ── Hero actions ── */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.btn-primary-lg {
  font-size: 16px;
  font-weight: 500;
  padding: 11px 24px;
  background: #c8f0e0;
  color: #0c2d1e;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-primary-lg:hover {
  background: #e0fff2;
}

.btn-outline-lg {
  font-size: 16px;
  padding: 11px 20px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}

.btn-outline-lg:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Social proof ── */

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
}

.av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #111c2d;
  margin-left: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
}

.av:first-child {
  margin-left: 0;
}

.av1 { background: #1a3a2a; color: #4ade80; }
.av2 { background: #1a1a3a; color: #818cf8; }
.av3 { background: #3a1a1a; color: #f87171; }
.av4 { background: #2a2a1a; color: #fbbf24; }

.proof-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.proof-text strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ── GUI window ── */

.gui-window {
  background: #182435;
  border: 0.7px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.win-bar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  background: #131f2f;
  gap: 8px;
}

.wdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.wr { background: #ff5f56; }
.wy { background: #ffbd2e; }
.wg { background: #27c93f; }

.win-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  font-family: 'Geist Mono', monospace;
}

.gui-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.sidebar {
  border-right: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.sb-section {
  margin-bottom: 4px;
}

.sb-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0 14px;
  margin-bottom: 4px;
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.1s;
}

.sb-item i {
  font-size: 16px;
}

.sb-item:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.sb-item.active {
  color: #c8f0e0;
  background: rgba(200, 240, 224, 0.07);
}

.sb-item.active i {
  color: #4ade80;
}

.sb-badge {
  margin-left: auto;
  font-size: 14px;
  padding: 1px 6px;
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.main-panel {
  padding: 16px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel-title {
  font-size: 15px;
  font-weight: 500;
  color: #e2e2dc;
}

.seal-btn {
  font-size: 15px;
  font-weight: 500;
  padding: 5px 12px;
  background: #c8f0e0;
  color: #0c2d1e;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.image-card {
  background: #111c2d;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.ic-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ic-name {
  font-size: 15px;
  font-weight: 500;
  color: #e2e2dc;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ic-name i {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.tag {
  font-size: 15px;
  padding: 2px 8px;
  border-radius: 4px;
}

.tag-sealed {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 0.5px solid rgba(74, 222, 128, 0.2);
}

.tag-pending {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 0.5px solid rgba(251, 191, 36, 0.2);
}

.ic-meta {
  display: flex;
  gap: 14px;
}

.ic-stat {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ic-stat i {
  font-size: 15px;
}

.ic-stat strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.ic-progress {
  margin-top: 10px;
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.progress-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.progress-val {
  font-size: 15px;
  color: #4ade80;
}

.progress-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #4ade80;
  border-radius: 2px;
}

.deploy-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 0.7px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dm-target {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dm-target i {
  font-size: 15px;
}

.dm-action {
  font-size: 15px;
  color: #9de8c0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.stat-mini {
  background: #111c2d;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px 12px;
}

.stat-mini-val {
  font-family: 'Geist Mono', monospace;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

.stat-mini-lbl {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── How it works ── */

.how-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.how-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
  padding: 5px 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.how-heading {
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 3.5rem;
}

.how-heading em {
  color: #9de8c0;
}

.how-steps {
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 17px;
  bottom: 17px;
  width: 1px;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.5), rgba(74, 222, 128, 0.1));
  z-index: 0;
}

.how-step {
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  column-gap: 2.5rem;
  align-items: start;
  position: relative;
}

.how-step + .how-step {
  margin-top: -3rem;
}

.step-num-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-num-wrap::after {
  display: none;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0c2d1e;
  border: 0.5px solid rgba(74, 222, 128, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: #4ade80;
}

.step-content {
  align-self: start;
}

.step-content--left {
  text-align: right;
}

.step-content--left .step-detail-line {
  flex-direction: row-reverse;
}

.step-spacer {
  align-self: start;
}

.step-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(74, 222, 128, 0.8);
  margin-bottom: 6px;
  margin-top: 6px;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: #e2e2dc;
  margin-bottom: 10px;
  line-height: 1.25;
}

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

.step-detail {
  margin-top: 14px;
  padding: 10px 14px;
  background: #131f2f;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.step-detail-line {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 0;
}

.step-detail-line i {
  font-size: 16px;
  color: rgba(74, 222, 128, 0.7);
}

.step-detail-line span {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Logos bar ── */

.logos-border {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.logos-bar {
  padding: 1.75rem 2.5rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logos-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 2.5rem;
  white-space: nowrap;
}

.logo-items {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.logo-item {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.3px;
}

/* ── Features strip ── */

.features-section {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.features-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem 0;
}

.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 5rem;
  gap: 0;
}

.feat {
  padding: 0 1.5rem;
}

.feat:first-child {
  padding-left: 0;
}

.feat:last-child {
  padding-right: 0;
}

.feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0c2d1e;
  border: 0.5px solid rgba(74, 222, 128, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #4ade80;
  margin-bottom: 1.25rem;
}

.feat-title {
  font-size: 20px;
  font-weight: 600;
  color: #e2e2dc;
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

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

/* ── Responsive ── */

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .nav-mid {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem 2rem;
    gap: 2.5rem;
  }

  .how-section {
    padding: 3.5rem 1.25rem;
  }

  .how-step {
    grid-template-columns: 34px 1fr;
  }

  .how-step + .how-step {
    margin-top: 2rem;
  }

  .how-steps::before {
    left: 17px;
    transform: none;
  }

  .step-spacer {
    display: none;
  }

  .step-content--left {
    text-align: left;
    grid-column: 2;
    grid-row: 1;
  }

  .step-content--left .step-detail-line {
    flex-direction: row;
  }

  .how-step:has(.step-content--left) .step-num-wrap {
    grid-column: 1;
    grid-row: 1;
  }

  .features-strip {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem 1.25rem;
    gap: 2rem;
  }

  .feat {
    padding: 0;
  }

  .feat:first-child {
    padding-left: 0;
  }

  .feat:last-child {
    padding-right: 0;
  }

  .logos-bar {
    padding: 1.5rem 1.25rem;
  }
}

/* ── Company page ── */

.co-section {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.co-section--alt {
  background: rgba(255, 255, 255, 0.02);
}

.co-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.co-inner .eyebrow {
  margin-bottom: 1.75rem;
}

.co-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}

.co-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-weight: 300;
}

.co-team {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2.5rem;
}

.co-team-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.co-team-photo {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.co-team-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.co-team-role {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
}

.co-team-linkedin {
  display: inline-flex;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.co-team-linkedin:hover {
  opacity: 1;
}

.co-team-linkedin img {
  height: 18px;
  width: auto;
}

.co-investors {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.co-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.co-contact-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.co-contact-value {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.co-contact-link {
  text-decoration: none;
  transition: color 0.15s;
}

.co-contact-link:hover {
  color: #c8f0e0;
}

.nav-active {
  color: #fff !important;
}

@media (max-width: 768px) {
  .co-inner {
    padding: 4rem 1.25rem;
  }

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

/* ── Problem / Solution (shared) ── */

.problem-section {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 0.5px 1fr;
  gap: 4rem;
  align-items: start;
}

.prob-divider {
  background: rgba(255, 255, 255, 0.06);
  align-self: stretch;
}

.prob-col .how-eyebrow {
  margin-bottom: 1.25rem;
}

.prob-heading {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 1rem;
}

.prob-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.prob-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prob-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  line-height: 1.5;
}

.prob-item i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.prob-item--bad {
  color: rgba(255, 255, 255, 0.7);
}

.prob-item--bad i {
  color: rgba(248, 113, 113, 0.7);
}

.prob-item--good {
  color: rgba(255, 255, 255, 0.7);
}

.prob-item--good i {
  color: rgba(74, 222, 128, 0.7);
}

@media (max-width: 768px) {
  .problem-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.25rem;
    gap: 3rem;
  }

  .prob-divider {
    display: none;
  }
}

/* ── Get Started / Beta ── */

.gs-section {
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
}

.gs-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  text-align: center;
}

.gs-inner .eyebrow {
  margin: 0 auto 2rem;
}

.gs-heading {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}

.gs-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.gs-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.gs-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gs-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
}

.gs-input {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  color: #fff;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.gs-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.gs-input:focus {
  border-color: rgba(200, 240, 224, 0.4);
}

.gs-submit {
  margin-top: 0.5rem;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
}

.gs-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.gs-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border: 0.5px solid rgba(74, 222, 128, 0.2);
  border-radius: 12px;
  background: rgba(74, 222, 128, 0.05);
  color: #4ade80;
  font-size: 18px;
}

.gs-success i {
  font-size: 36px;
}

.gs-success p {
  color: rgba(255, 255, 255, 0.7);
}

.gs-error {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}

.gs-error a {
  color: #c8f0e0;
  text-decoration: none;
}

/* ── Footer ── */

.site-footer {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  mix-blend-mode: screen;
  align-self: flex-start;
}

.footer-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-weight: 300;
  max-width: 220px;
}

.footer-col-heading {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-address {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 1.25rem;
}

.footer-legal {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.25rem 2rem;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 0.4rem;
  }
}
