:root {
  --bg: #060912;
  --bg-elevated: #0c1326;
  --accent: #00bcd4;
  --accent-soft: rgba(0, 188, 212, 0.14);
  --accent-strong: rgba(0, 188, 212, 0.36);
  --accent-secondary: #f4b942;
  --text: #f8fbff;
  --text-soft: #a7b0c3;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --danger: #f97373;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.7);
  --radius-lg: 18px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 0%, #12213f 0, #050913 45%, #03050a 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 32px;
}

/* HEADER / NAV */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.92),
      rgba(15, 23, 42, 0.82),
      transparent
    );
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark-svg {
  width: 32px;
  height: 32px;
  display: block;
}

.brand-text-main {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 0.7rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 24px;
}

.nav-item {
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 0.8rem;
  white-space: nowrap;
  word-break: normal;
  color: var(--text-soft);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.nav-item-opendoors {
  position: relative;
  border: 1px dashed rgba(244, 185, 66, 0.45);
  background: rgba(244, 185, 66, 0.08);
  color: #f3dfb0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-item-opendoors::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f4b942;
  box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.22);
}

.nav-item:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.35);
}

.nav-item.active {
  color: #e5e7eb;
  background: var(--accent-soft);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.6),
    0 18px 30px rgba(15, 23, 42, 0.9);
}

.nav-item-opendoors.active {
  background: rgba(244, 185, 66, 0.2);
  border-color: rgba(244, 185, 66, 0.65);
  box-shadow: 0 0 0 1px rgba(244, 185, 66, 0.22),
    0 14px 24px rgba(15, 23, 42, 0.55);
}

.spacer {
  flex: 1;
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.88);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.signup-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(226, 232, 240, 0.4);
  background: linear-gradient(120deg, #0ea5b7, #2ccf73);
  color: #f5fbff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.85);
  transition: all 0.18s ease-out;
}

.signup-btn span.kbd {
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.85);
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.65rem;
}

.signup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.95);
}

.signup-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.8);
}

.header-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(10, 16, 30, 0.84);
  color: #e6edf8;
  text-decoration: none;
  padding: 7px 12px 7px 8px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.header-user-menu {
  position: relative;
}

.header-user-chip-btn {
  cursor: pointer;
}

.header-user-chip-btn:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.8);
  outline-offset: 2px;
}

.header-user-chip:hover {
  border-color: rgba(125, 211, 252, 0.48);
  background: rgba(15, 23, 42, 0.94);
}

.header-user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: #022c22;
  background: linear-gradient(135deg, #5eead4, #34d399);
}

.header-user-name {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-user-caret {
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.8);
}

.header-user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(3, 9, 20, 0.98);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.65);
  padding: 8px;
  z-index: 30;
}

.header-user-dropdown-item {
  width: 100%;
  text-align: left;
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.85);
  color: #dff5ee;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 10px;
  cursor: pointer;
}

.header-user-dropdown-item:hover {
  border-color: rgba(45, 212, 191, 0.55);
  background: rgba(15, 40, 44, 0.9);
}

.header-user-dropdown-note {
  color: #9eb1c9;
  font-size: 0.68rem;
  line-height: 1.35;
  margin-top: 8px;
  padding: 0 2px 2px;
}

.signup-btn-disabled,
.signup-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  background: linear-gradient(120deg, #334155, #475569);
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow: none;
}

.signup-btn-disabled:hover,
.signup-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* LAYOUT */

.layout {
  flex: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: 32px;
  margin-top: 28px;
  align-items: flex-start;
  animation: fadeRise 0.7s ease-out both;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    order: 4;
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.2s ease;
  }

  .nav.open {
    background: rgba(6, 10, 20, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 30px rgba(2, 6, 23, 0.55);
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }

  .header-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .nav-item {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
  }

  .nav-item-opendoors {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    align-self: flex-start;
    border: 1px dashed rgba(244, 185, 66, 0.45);
    background: rgba(244, 185, 66, 0.08);
    color: #f3dfb0;
    box-shadow: none;
  }

  .nav-item-opendoors::before {
    display: inline-block;
  }

  .spacer {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-grid;
    place-items: center;
    order: 2;
    margin-left: auto;
    transition: transform 0.15s ease, background 0.2s ease;
  }

  .mobile-menu-btn:active {
    transform: scale(0.96);
  }

  .mobile-menu-btn[aria-expanded="true"] {
    background: rgba(12, 18, 34, 0.98);
    border-color: rgba(0, 188, 212, 0.5);
  }

  .signup-btn {
    order: 3;
    margin-left: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid,
  .tabs-content,
  .slider-stage {
    animation: none;
  }

  .slider-track {
    transition: none;
  }

  .tagline-pulse {
    animation: none;
  }
}

/* HERO */

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 999px;
  padding: 4px 10px 4px 4px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-bottom: 16px;
  max-width: 100%;
}

.eyebrow-pill {
  border-radius: inherit;
  padding: 4px 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: radial-gradient(circle at 0 0, #22c1c3, #8b5cf6);
  color: #020617;
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.eyebrow-text {
  font-size: 0.7rem;
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.hero-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 100%;
  line-height: 1.75;
}

.hero-tagline {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 188, 212, 0.35);
  background: linear-gradient(
    130deg,
    rgba(12, 19, 38, 0.9) 0%,
    rgba(9, 16, 30, 0.95) 55%,
    rgba(7, 13, 24, 0.98) 100%
  );
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.18),
    0 12px 30px rgba(2, 6, 23, 0.5);
}

.tagline-kicker-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tagline-pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7);
  animation: pulseGlow 1.9s ease-out infinite;
}

.tagline-pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-secondary);
  font-weight: 700;
}

.tagline-text {
  font-weight: 600;
  color: #e6edf8;
  line-height: 1.45;
  font-size: 0.94rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-primary-btn {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(44, 207, 115, 0.45);
  background: linear-gradient(120deg, #0ea5b7, #2ccf73);
  color: #031018;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 188, 212, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 188, 212, 0.3);
}

.hero-primary-btn-disabled {
  background: linear-gradient(120deg, #334155, #475569);
  border-color: rgba(148, 163, 184, 0.4);
  color: #cbd5e1;
  cursor: not-allowed;
  box-shadow: none;
}

.hero-primary-btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

.home-greeting {
  margin-top: 10px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #d1fae5;
}

.hero-secondary-btn {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-soft);
  font-size: 0.84rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.hero-secondary-btn:hover {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.95);
}

/* RIGHT PANEL */

.panel {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, #111827 0, #020617 55%);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
}

.panel-tag {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

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

.panel-title {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.panel-chip {
  font-size: 0.7rem;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-soft);
}

.panel-body {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.timeline {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.timeline-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.9);
  overflow: hidden;
}

.timeline-bar-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c1c3, #8b5cf6);
}

.panel-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.panel-pill {
  font-size: 0.7rem;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-soft);
}

.ethics-card {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.96);
  font-size: 0.75rem;
  color: var(--text-soft);
}

.ethics-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  margin-bottom: 2px;
}

.ethics-text {
  font-size: 0.75rem;
}

/* CONTENT SECTIONS (TABS) */

.tabs-shell {
  margin-top: 30px;
}

.tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tabs-trigger {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}

.tabs-trigger:hover {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
}

.tabs-trigger.active {
  color: #f9fafb;
  background: var(--accent-soft);
  border-color: var(--accent-strong);
}

.tabs-content {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(10, 16, 32, 0.9);
  padding: 20px 20px 18px;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.75);
  animation: fadeRise 0.55s ease-out both;
}

.tabs-title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.tabs-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.05rem;
}

.tabs-tagline {
  font-size: 0.8rem;
  color: var(--accent-secondary);
}

.tabs-description {
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 100%;
  text-align: justify;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-soft);
}

.two-col {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

@media (min-width: 860px) {
  .two-col {
    grid-template-columns: 1.2fr 1.1fr;
  }
}

.col-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  padding: 14px 14px 12px;
  background: linear-gradient(145deg, rgba(10, 16, 32, 0.86), rgba(7, 12, 24, 0.9));
}

.about-founders-full {
  grid-column: 1 / -1;
}

.about-founder-second-para {
  margin-top: 12px;
}

.opendoors-layout {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.opendoors-intro .card-title {
  font-size: 1.08rem;
}

.opendoors-jobs {
  display: grid;
  gap: 12px;
}

.opendoors-job-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.opendoors-job-head h4 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1rem;
  color: #e8efff;
}

.opendoors-job-head span {
  font-size: 0.82rem;
  color: var(--accent-secondary);
}

.opendoors-job-meta {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  font-size: 0.79rem;
  color: var(--text-soft);
}

.opendoors-job-block {
  margin-top: 8px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.opendoors-blur {
  filter: blur(4px);
  opacity: 0.7;
  user-select: none;
}

.opendoors-job .product-tile-btn.opendoors-cta-disabled {
  background: linear-gradient(135deg, #ffb300, #ffca28);
  border-color: rgba(255, 193, 7, 0.7);
  color: #1f2937;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.card-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.card-body {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: justify;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.list {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.list li + li {
  margin-top: 4px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.badge {
  font-size: 0.7rem;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-soft);
}

/* PRODUCT TILES */

.product-stack {
  display: grid;
  gap: 24px;
  margin-top: 18px;
}

.product-group-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 12px;
}

.product-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-tile {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(145deg, rgba(10, 16, 32, 0.86), rgba(7, 12, 24, 0.9));
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.4);
  display: grid;
  min-height: 100%;
}

.product-tile-image-wrap {
  aspect-ratio: 16 / 9;
  min-height: 170px;
  height: auto;
  position: relative;
  overflow: hidden;
  background: rgba(2, 6, 23, 0.7);
}

.product-tile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.product-tile:hover .product-tile-image {
  transform: scale(1.05);
}

.product-tile-content {
  padding: 12px;
  display: grid;
  gap: 8px;
}

.product-tile-audience {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.product-tile-title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #eaf1ff;
}

.product-tile-description {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.product-tile-btn {
  margin-top: 2px;
  justify-self: start;
  border-radius: 999px;
  border: 1px solid rgba(0, 188, 212, 0.45);
  background: rgba(0, 188, 212, 0.12);
  color: #dffcff;
  font-size: 0.75rem;
  padding: 7px 12px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.product-tile-btn:hover {
  background: rgba(0, 188, 212, 0.24);
  border-color: rgba(0, 188, 212, 0.72);
}

.product-tile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.product-tile-btn-primary {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.14);
  color: #d8ffe8;
}

.product-tile-btn-primary:hover {
  background: rgba(34, 197, 94, 0.24);
  border-color: rgba(34, 197, 94, 0.72);
}

/* PRODUCT DETAIL */

.product-detail {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 16px;
}

.product-detail-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  aspect-ratio: 4 / 3;
  min-height: 320px;
  background: rgba(8, 14, 28, 0.92);
}

.product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-detail-content {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(145deg, rgba(10, 16, 32, 0.86), rgba(7, 12, 24, 0.9));
  padding: 14px;
}

.product-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 4px;
}

.product-detail-title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.15rem;
  color: #eaf1ff;
}

.product-detail-description {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #d7e4f3;
}

.product-detail-copy {
  margin: 10px 0 0;
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.product-detail-subtitle {
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d5e6ff;
}

.product-detail-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.product-detail-list li + li {
  margin-top: 4px;
}

.product-detail-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-detail-btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(148, 163, 184, 0.1);
  color: #dce9fb;
  text-decoration: none;
  padding: 8px 14px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
}

.product-detail-btn-primary {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.16);
  color: #e4fff0;
}

.product-detail-btn:hover {
  border-color: rgba(148, 163, 184, 0.75);
  background: rgba(148, 163, 184, 0.18);
}

.product-detail-btn-primary:hover {
  border-color: rgba(34, 197, 94, 0.7);
  background: rgba(34, 197, 94, 0.26);
}

/* WHY PAGE */

.why-layout {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.why-hero {
  border-radius: 16px;
  border: 1px solid rgba(0, 188, 212, 0.28);
  background: linear-gradient(145deg, rgba(10, 16, 32, 0.9), rgba(7, 12, 24, 0.96));
  padding: 14px;
}

.why-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.why-hero-title {
  margin: 6px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.2rem;
  color: #eaf1ff;
}

.why-hero-copy {
  margin: 8px 0 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.why-pillar {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(10, 16, 32, 0.72);
  padding: 12px;
}

.why-pillar-title {
  font-size: 0.9rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #e8f0ff;
}

.why-pillar-copy {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.why-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.why-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.why-system-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(10, 16, 32, 0.72);
  padding: 12px;
}

.why-system-label {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.why-system-title {
  margin: 6px 0 0;
  font-size: 0.95rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #edf2ff;
}

.why-system-copy {
  margin: 8px 0 0;
  font-size: 0.81rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.why-panel {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(10, 16, 32, 0.72);
  padding: 12px;
}

.why-panel-negative {
  border-color: rgba(248, 113, 113, 0.36);
  background: linear-gradient(145deg, rgba(57, 25, 32, 0.42), rgba(10, 16, 32, 0.76));
}

.why-panel-positive {
  border-color: rgba(34, 197, 94, 0.42);
  background: linear-gradient(145deg, rgba(14, 34, 28, 0.5), rgba(10, 16, 32, 0.76));
}

.why-panel-label {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.why-panel-title {
  margin: 6px 0 0;
  font-size: 0.95rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #edf2ff;
}

.why-checklist {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 0.81rem;
  color: var(--text-soft);
}

.why-checklist li + li {
  margin-top: 5px;
}

/* WHY PAGE V2 */

.whyv2-layout {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.whyv2-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.whyv2-hero-main {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(10, 16, 32, 0.78);
  padding: 14px;
}

.whyv2-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.whyv2-title {
  margin: 6px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.15rem;
  color: #eaf1ff;
}

.whyv2-copy {
  margin: 8px 0 0;
  font-size: 0.84rem;
  line-height: 1.62;
  color: var(--text-soft);
}


.whyv2-section-title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.98rem;
  color: #e6eeff;
}

.whyv2-framework {
  border-radius: 16px;
  border: 1px solid rgba(125, 211, 252, 0.25);
  background: linear-gradient(150deg, rgba(8, 14, 27, 0.86), rgba(12, 22, 42, 0.82));
  padding: 14px;
  display: grid;
  gap: 10px;
}

.whyv2-step {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(10, 16, 32, 0.7);
  padding: 10px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
}

.whyv2-step-index {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(14, 165, 233, 0.18);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.78rem;
  color: #dbeafe;
}

.whyv2-step-title {
  font-size: 0.9rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #eff6ff;
}

.whyv2-step-copy {
  margin: 5px 0 0;
  font-size: 0.8rem;
  line-height: 1.52;
  color: var(--text-soft);
}

.whyv2-principles {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(10, 16, 32, 0.7);
  padding: 14px;
}

.whyv2-principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.whyv2-principle {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(8, 14, 28, 0.72);
  padding: 10px;
}

.whyv2-principle-title {
  font-size: 0.86rem;
  color: #e5edff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.whyv2-principle-copy {
  margin: 5px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.whyv2-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.whyv2-panel {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(10, 16, 32, 0.72);
  padding: 12px;
}

.whyv2-panel-reject {
  border-color: rgba(248, 113, 113, 0.34);
  background: linear-gradient(145deg, rgba(57, 25, 32, 0.42), rgba(10, 16, 32, 0.76));
}

.whyv2-panel-commit {
  border-color: rgba(34, 197, 94, 0.46);
  background: linear-gradient(145deg, rgba(14, 34, 28, 0.5), rgba(10, 16, 32, 0.76));
}

.whyv2-panel-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d1d9ec;
}

.whyv2-list {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 0.81rem;
  color: var(--text-soft);
}

.whyv2-list li + li {
  margin-top: 5px;
}

.whyv2-governance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.whyv2-governance-card {
  border-radius: 14px;
  border: 1px solid rgba(245, 158, 11, 0.55);
  background: linear-gradient(145deg, rgba(51, 34, 4, 0.6), rgba(10, 16, 32, 0.8));
  padding: 12px;
}

.whyv2-governance-label {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fcd34d;
}

.whyv2-governance-title {
  margin-top: 6px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #fde68a;
}

.whyv2-governance-copy {
  margin: 8px 0 0;
  font-size: 0.81rem;
  line-height: 1.55;
  color: #fef3c7;
}

/* HOW PAGE V2 */

.howv2-layout {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.howv2-hero {
  border-radius: 16px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  background: linear-gradient(150deg, rgba(8, 14, 27, 0.86), rgba(12, 22, 42, 0.82));
  padding: 14px;
}

.howv2-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.howv2-title {
  margin: 6px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.16rem;
  color: #eaf1ff;
}

.howv2-copy {
  margin: 8px 0 0;
  font-size: 0.84rem;
  line-height: 1.62;
  color: var(--text-soft);
}

.howv2-steps {
  display: grid;
  gap: 10px;
}

.howv2-graphic {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(10, 16, 32, 0.72);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.howv2-loop-title {
  font-size: 0.98rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #edf5ff;
}

.howv2-timeline {
  display: grid;
  gap: 6px;
}

.howv2-timeline-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
}

.howv2-timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.6);
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.32), rgba(37, 99, 235, 0.22));
  color: #e0f2fe;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(14, 165, 233, 0.2);
}

.howv2-timeline-card {
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.38);
  background: rgba(7, 20, 42, 0.8);
  color: #eff6ff;
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 600;
  padding: 10px 12px;
}

.howv2-timeline-connector {
  margin-left: 14px;
  color: #67e8f9;
  font-size: 0.95rem;
  line-height: 1;
}

.howv2-sequence {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.howv2-seq-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(14, 165, 233, 0.14);
  color: #e6f0ff;
  font-size: 0.77rem;
  line-height: 1.35;
  padding: 7px 9px;
}

.howv2-seq-card span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(8, 20, 40, 0.8);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  color: #dbeafe;
  flex: 0 0 auto;
}

.howv2-seq-arrow {
  color: #7dd3fc;
  font-size: 0.9rem;
  line-height: 1;
}

.howv2-graphic-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.howv2-node {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(14, 165, 233, 0.14);
  color: #e6f0ff;
  font-size: 0.77rem;
  padding: 7px 9px;
  white-space: nowrap;
}

.howv2-node span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(8, 20, 40, 0.8);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  color: #dbeafe;
}

.howv2-arrow {
  color: #7dd3fc;
  font-size: 0.9rem;
  line-height: 1;
}

.howv2-loop-note {
  border-radius: 10px;
  border: 1px dashed rgba(125, 211, 252, 0.5);
  background: rgba(8, 20, 40, 0.55);
  padding: 7px 9px;
  font-size: 0.76rem;
  color: #cfe0f4;
}

.howv2-gate {
  display: grid;
  gap: 6px;
}

.howv2-gate-arrow {
  color: #7dd3fc;
  font-size: 1rem;
}

.howv2-sidenote {
  border-radius: 14px;
  border: 1px solid rgba(250, 204, 21, 0.38);
  background: linear-gradient(145deg, rgba(44, 32, 8, 0.45), rgba(10, 16, 32, 0.8));
  padding: 12px;
}

.howv2-sidenote-title {
  font-size: 0.86rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #fef3c7;
}

.howv2-sidenote-copy {
  margin: 7px 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #fde68a;
}

.howv2-sidenote-list {
  margin: 7px 0 0;
  padding-left: 18px;
  font-size: 0.79rem;
  line-height: 1.52;
  color: #fef9c3;
}

.howv2-sidenote-list li + li {
  margin-top: 4px;
}

.howv2-support {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.45);
  background:
    radial-gradient(circle at 92% 8%, rgba(251, 191, 36, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(69, 44, 6, 0.5), rgba(17, 24, 39, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(253, 230, 138, 0.12),
    0 10px 24px rgba(2, 6, 23, 0.28);
  padding: 14px;
}

.howv2-support-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(252, 211, 77, 0.45);
  background: rgba(120, 53, 15, 0.3);
  padding: 3px 9px;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fde68a;
}

.howv2-support-title {
  margin-top: 8px;
  font-size: 0.92rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #fef3c7;
}

.howv2-support-copy {
  margin: 8px 0 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #fde68a;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.howv2-support-defs {
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.howv2-support-def {
  border-radius: 12px;
  border: 1px solid rgba(252, 211, 77, 0.32);
  background: linear-gradient(145deg, rgba(120, 53, 15, 0.28), rgba(30, 20, 8, 0.5));
  padding: 10px 11px;
}

.howv2-support-def-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fcd34d;
}

.howv2-support-def p {
  margin: 6px 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #fef3c7;
}

.howv2-support-list {
  margin: 11px 0 0;
  padding-left: 0;
  list-style: none;
  font-size: 0.8rem;
  line-height: 1.56;
  color: #fde68a;
}

.howv2-support-list li {
  position: relative;
  padding-left: 20px;
}

.howv2-support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.22);
}

.howv2-support-list li + li {
  margin-top: 6px;
}

.howv2-graphic-row-final {
  justify-content: flex-start;
}

.howv2-node-final {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.16);
}

.howv2-plain {
  border-radius: 14px;
  border: 1px solid rgba(129, 140, 248, 0.42);
  background: linear-gradient(145deg, rgba(30, 41, 86, 0.46), rgba(10, 16, 32, 0.8));
  padding: 12px;
}

.howv2-plain-title {
  font-size: 0.86rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #e0e7ff;
}

.howv2-plain-list {
  margin: 7px 0 0;
  padding-left: 18px;
  font-size: 0.8rem;
  line-height: 1.54;
  color: #d7f3e3;
}

.howv2-plain-list li + li {
  margin-top: 4px;
}

.howv2-explain {
  margin-top: 7px;
  display: grid;
  gap: 8px;
}

.howv2-explain-item {
  border-radius: 10px;
  border: 1px solid rgba(165, 180, 252, 0.34);
  background: rgba(30, 41, 86, 0.34);
  padding: 8px 10px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #e6e9ff;
}

.howv2-step {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(10, 16, 32, 0.72);
  padding: 12px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
}

.howv2-step-highlight {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(145deg, rgba(14, 34, 28, 0.5), rgba(10, 16, 32, 0.76));
}

.howv2-step-index {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.36);
  background: rgba(14, 165, 233, 0.18);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.84rem;
  color: #dbeafe;
}

.howv2-step-title {
  font-size: 0.92rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #eff6ff;
}

.howv2-step-copy {
  margin: 5px 0 0;
  font-size: 0.81rem;
  line-height: 1.56;
  color: var(--text-soft);
}

.howv2-loop {
  border-radius: 12px;
  border: 1px dashed rgba(56, 189, 248, 0.5);
  background: rgba(8, 20, 40, 0.6);
  padding: 10px 12px;
  font-size: 0.82rem;
  color: #cfe0f4;
}

/* SIGNUP STRIP */

.signup-strip {
  margin-top: 26px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(8, 14, 28, 0.92);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.28);
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.signup-copy {
  font-size: 0.86rem;
  color: #d1deec;
  line-height: 1.5;
}

.signup-variant {
  font-size: 0.8rem;
  color: var(--accent-secondary);
}

.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.signup-form-vertical {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 500px;
}

.signup-form-vertical .field {
  flex: 0 0 auto;
  width: 100%;
}

.field {
  position: relative;
  flex: 1 1 220px;
}

.field input {
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(10, 16, 30, 0.96);
  color: var(--text);
  font-size: 0.8rem;
  min-width: 190px;
  width: 100%;
}

.field input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.field input:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
}

.signup-small-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #0ea5b7, #22c55e);
  color: #020617;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.45);
  min-width: 112px;
}

.signup-form-vertical .signup-small-btn {
  align-self: center;
  margin-top: 4px;
}

.signup-small-btn:hover {
  filter: brightness(1.05);
}

.signup-small-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  filter: none;
}

.signup-error {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #fca5a5;
}

.signup-note {
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-top: 4px;
}

.signup-note strong {
  color: #e5e7eb;
}

.signup-complete {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(12, 19, 38, 0.84));
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.signup-complete-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1rem;
  color: #e7fff0;
}

.signup-complete-copy {
  margin-top: 0;
  font-size: 0.82rem;
  color: #b7c8d3;
}

.signup-complete-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 188, 212, 0.45);
  background: rgba(0, 188, 212, 0.12);
  color: #dffcff;
  text-decoration: none;
  font-size: 0.76rem;
  padding: 6px 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.signup-complete-link:hover {
  background: rgba(0, 188, 212, 0.22);
  border-color: rgba(0, 188, 212, 0.7);
}

/* IMAGE SLIDER */

.slider {
  margin-top: 24px;
}

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

.slider-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(10, 16, 32, 0.95);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.8);
  animation: fadeRise 0.8s ease-out both;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.35);
  background: rgba(2, 6, 23, 0.6);
  color: #e5e7eb;
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(2, 6, 23, 0.85);
  border-color: rgba(226, 232, 240, 0.6);
}

.slider-arrow-left {
  left: 12px;
}

.slider-arrow-right {
  right: 12px;
}

.slider-track {
  display: flex;
  transition: transform 1.1s ease;
  will-change: transform;
}

.slider-panel {
  min-width: 100%;
  position: relative;
}

.slider-image {
  position: relative;
  height: clamp(260px, 42vw, 460px);
  overflow: hidden;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.2) 0%,
    rgba(2, 6, 23, 0.62) 52%,
    rgba(2, 6, 23, 0.95) 100%
  );
}

.placeholder-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.slider-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  z-index: 2;
}

.slider-title {
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  margin: 0;
  text-shadow: 0 2px 14px rgba(2, 6, 23, 0.9);
}

.slider-description {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: #e2e8f0;
  margin: 0;
  max-width: 62ch;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 12px rgba(2, 6, 23, 0.8);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.slider-dot {
  border: 0;
  cursor: pointer;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
}

.slider-dot.active {
  width: 12px;
  background: var(--accent-secondary);
}

@media (max-width: 720px) {
  .opendoors-job-meta {
    grid-template-columns: 1fr;
  }

  .shell {
    padding: 16px 14px 48px;
  }

  .header-inner {
    padding: 12px 14px 10px;
    gap: 10px;
  }

  .brand-text-sub {
    display: none;
  }

  .signup-btn {
    padding: 8px 12px;
    font-size: 0.74rem;
    letter-spacing: 0.03em;
  }

  .signup-btn span.kbd {
    display: none;
  }

  .header-user-chip {
    padding: 6px 10px 6px 7px;
    gap: 6px;
  }

  .header-user-avatar {
    width: 22px;
    height: 22px;
    font-size: 0.68rem;
  }

  .header-user-name {
    max-width: 88px;
    font-size: 0.72rem;
  }

  .header-user-dropdown {
    right: -2px;
    min-width: 220px;
  }


  .nav-item:active {
    transform: scale(0.99);
    background: rgba(15, 23, 42, 0.92);
  }

  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-tagline {
    flex-wrap: wrap;
  }

  .tagline-kicker-wrap {
    width: 100%;
  }

  .eyebrow {
    display: grid;
    gap: 6px;
    width: 100%;
    border-radius: 16px;
    padding: 8px 10px;
    justify-items: center;
  }

  .eyebrow-pill {
    display: block;
    width: 100%;
    min-width: 0;
    white-space: normal;
    line-height: 1.35;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .eyebrow-text {
    font-size: 0.65rem;
    line-height: 1.35;
    text-align: center;
  }

  .tabs-content {
    padding: 16px 14px;
  }

  .tabs-tagline {
    font-size: 0.72rem;
  }

  .col-card {
    padding: 12px;
  }

  .product-stack {
    gap: 18px;
  }

  .product-tiles {
    grid-template-columns: 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-image-wrap {
    min-height: 220px;
  }

  .why-pillars,
  .why-contrast,
  .why-system-grid {
    grid-template-columns: 1fr;
  }

  .whyv2-hero,
  .whyv2-principle-grid,
  .whyv2-contrast,
  .whyv2-governance {
    grid-template-columns: 1fr;
  }

  .howv2-step {
    grid-template-columns: 36px 1fr;
    gap: 9px;
  }

  .howv2-timeline-item {
    grid-template-columns: 36px 1fr;
    gap: 8px;
  }

  .howv2-timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .howv2-timeline-card {
    font-size: 0.79rem;
    padding: 8px 9px;
  }

  .howv2-timeline-connector {
    margin-left: 11px;
  }

  .howv2-graphic-row {
    gap: 6px;
  }

  .howv2-sequence {
    gap: 6px;
  }

  .howv2-seq-card {
    width: 100%;
  }

  .howv2-seq-arrow {
    display: none;
  }

  .howv2-node {
    white-space: normal;
  }

  .howv2-step-index {
    width: 36px;
    height: 36px;
  }

  .howv2-support-defs {
    grid-template-columns: 1fr;
  }

  .signup-strip {
    padding: 14px;
    max-width: none;
  }

  .signup-form {
    flex-direction: column;
  }

  .field {
    flex: 1 1 auto;
    width: 100%;
  }

  .field input,
  .select-field {
    min-width: 0;
    width: 100%;
  }

  .signup-small-btn {
    width: 100%;
  }

  .slider-image {
    height: 300px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }

  .placeholder-tag {
    font-size: 0.68rem;
    padding: 4px 8px;
  }

  .slider-copy {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .slider-description {
    max-width: 100%;
    font-size: 0.86rem;
  }

  .modal {
    width: calc(100% - 24px);
    padding: 14px;
  }
}

@media (min-width: 721px) and (max-width: 1040px) {
  .product-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .eyebrow {
    border-radius: 14px;
    padding: 6px 8px;
  }

  .eyebrow-pill {
    letter-spacing: 0.06em;
  }

  .brand-text-main {
    font-size: 0.8rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark-svg {
    width: 28px;
    height: 28px;
  }
}

/* MODAL SIGNUP */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal {
  max-width: 480px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, #0f172a, #020617 70%);
  padding: 18px 18px 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.modal-title {
  font-size: 1rem;
}

.modal-subtitle {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 4px;
}

.modal-close {
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-size: 1.2rem;
  cursor: pointer;
}

.select-field {
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(10, 16, 30, 0.96);
  color: #f9fafb;
  font-size: 0.8rem;
  min-width: 190px;
  width: 100%;
}

/* FOOTER */

.footer {
  margin-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.7);
}

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

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.65);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 188, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
  }
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-pathways {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-pathways-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-pathways-links {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.footer-pathways-link {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.76rem;
}

.footer-pathways-link:hover {
  color: var(--text);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  color: var(--text-soft);
  flex-wrap: wrap;
}

.footer-sep {
  opacity: 0.5;
}

.footer-legal-link,
.footer-social-link {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.78rem;
}

.footer-legal-link:hover,
.footer-social-link:hover {
  color: var(--text);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .footer-inner {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    padding: 20px 14px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    gap: 8px;
  }

  .footer-pathways {
    gap: 8px;
  }

  .footer-pathways-links {
    gap: 8px 12px;
  }

  .footer-sep {
    display: none;
  }
}
