:root {
  --bg: #070b11;
  --bg-soft: #0d1420;
  --panel: rgba(14, 22, 34, 0.88);
  --panel-2: rgba(17, 27, 42, 0.9);
  --ink: #e8eef8;
  --muted: #9db0c7;
  --line: rgba(152, 178, 206, 0.22);
  --brand: #ff8a4c;
  --brand-deep: #d8672f;
  --teal: #34c6bf;
  --glow-orange: rgba(255, 138, 76, 0.18);
  --glow-teal: rgba(52, 198, 191, 0.16);
  --shadow: 0 18px 40px rgba(1, 7, 14, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 15% -15%, #172236 0%, rgba(23, 34, 54, 0) 62%),
    radial-gradient(980px 540px at 85% -20%, #1a3043 0%, rgba(26, 48, 67, 0) 65%),
    linear-gradient(160deg, #05080d 0%, #080d15 55%, #09111c 100%);
  line-height: 1.62;
  overflow-x: hidden;
  position: relative;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(157, 176, 199, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 176, 199, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 78%);
  z-index: -4;
  pointer-events: none;
}

.glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  z-index: -3;
  pointer-events: none;
}

.glow-one {
  width: 380px;
  height: 380px;
  background: var(--glow-orange);
  top: -100px;
  right: -80px;
  animation: floatA 14s ease-in-out infinite alternate;
}

.glow-two {
  width: 430px;
  height: 430px;
  background: var(--glow-teal);
  bottom: -140px;
  left: -80px;
  animation: floatB 18s ease-in-out infinite alternate;
}

site-header,
.site-header {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.62rem 0;
  position: sticky;
  top: 0;
  z-index: 40;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 12, 19, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(2, 8, 16, 0.36);
}

.header-inner {
  width: min(1200px, calc(100% - 1.6rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 76px;
  width: auto;
  max-width: min(390px, 42vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: auto;
  max-width: 100%;
  gap: 0;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.nav-right {
  margin-left: clamp(2rem, 4vw, 3.6rem);
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.47rem 0.72rem;
  border-radius: 10px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a.is-active {
  color: var(--ink);
  background: rgba(157, 176, 199, 0.16);
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(157, 176, 199, 0.14);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 0.65rem;
  margin-bottom: -0.65rem;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.nav-dropdown > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.9;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.12rem);
  left: 0;
  min-width: 180px;
  padding: 0.35rem;
  border: 1px solid rgba(157, 176, 199, 0.2);
  border-radius: 14px;
  background: rgba(9, 15, 24, 0.96);
  box-shadow: 0 18px 34px rgba(2, 8, 16, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu a {
  display: block;
  width: 100%;
}

.nav-menu a + a {
  margin-top: 0.1rem;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a.nav-cta {
  color: #111;
  border: 1px solid rgba(255, 193, 140, 0.65);
  background: linear-gradient(120deg, #ff9a63 0%, #ffc483 100%);
  box-shadow: 0 6px 16px rgba(255, 138, 76, 0.22);
}

.site-nav a.nav-cta:hover {
  color: #111;
  background: linear-gradient(120deg, #ffa26d 0%, #ffcb90 100%);
}

.site-nav a.nav-cta.is-active {
  border-color: rgba(255, 193, 140, 0.85);
}

.site-nav a.nav-login {
  color: var(--ink);
  border: 1px solid rgba(157, 176, 199, 0.32);
  background: rgba(15, 24, 36, 0.92);
  box-shadow: inset 0 1px 0 rgba(227, 241, 255, 0.06);
}

.site-nav a.nav-login:hover {
  color: var(--ink);
  background: rgba(20, 31, 46, 0.98);
  border-color: rgba(157, 176, 199, 0.42);
}

.site-nav a.nav-login.is-active {
  border-color: rgba(157, 176, 199, 0.5);
}

main {
  width: min(1200px, calc(100% - 1.6rem));
  margin: 1.5rem auto 0;
}

.hero,
.section {
  margin-bottom: clamp(2.1rem, 5vw, 3.8rem);
}

.hero {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(13, 20, 31, 0.93) 0%, rgba(10, 16, 26, 0.94) 100%);
  box-shadow: var(--shadow);
  padding: clamp(1.15rem, 3vw, 2.35rem);
  position: relative;
  overflow: hidden;
}

.hero-claims {
  min-height: clamp(360px, 64vh, 560px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(1.1rem, 4vw, 2.6rem) clamp(1rem, 3.6vw, 2.1rem);
}

.hero-claims::before {
  background: linear-gradient(
    120deg,
    rgba(255, 138, 76, 0.22) 0%,
    rgba(52, 198, 191, 0.18) 35%,
    rgba(255, 138, 76, 0.14) 68%,
    rgba(76, 146, 255, 0.16) 100%
  );
  background-size: 190% 190%;
  animation: heroFlow 22s ease-in-out infinite alternate;
  opacity: 0.72;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(140deg, rgba(255, 138, 76, 0.2), rgba(52, 198, 191, 0.16), rgba(255, 138, 76, 0.08));
  z-index: -1;
  filter: blur(18px);
  opacity: 0.62;
}

.eyebrow,
.section-kicker {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.18;
  letter-spacing: -0.012em;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

h2 {
  font-size: clamp(1.35rem, 4vw, 2.3rem);
  margin-bottom: 0.72rem;
}

h3 {
  font-size: 1.04rem;
  margin-bottom: 0.5rem;
}

.section-head-sm {
  margin: 0 0 0.72rem;
  max-width: 30ch;
  font-size: clamp(1.12rem, 2.6vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.lead,
.section-intro,
p,
li {
  color: var(--muted);
}

.hero .lead {
  max-width: 72ch;
  font-size: 1.04rem;
}

.hero-intro {
  margin: 0 0 0.66rem;
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.76rem;
}

.claim-rotator {
  margin-top: 0;
  width: min(100%, 60rem);
  border: 1px solid rgba(157, 176, 199, 0.26);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(13, 22, 34, 0.96) 0%, rgba(10, 17, 28, 0.9) 100%);
  padding: clamp(1rem, 3vw, 1.35rem) clamp(1rem, 4vw, 1.7rem);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(227, 241, 255, 0.08), 0 24px 50px rgba(2, 8, 16, 0.42);
}

.claim-rotator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--brand), var(--teal));
  opacity: 0.72;
}

.claim-kicker {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal);
  font-weight: 700;
}

.claim-line {
  margin: 0.48rem 0 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 4.6vw, 3.1rem);
  line-height: 1.14;
  min-height: 2.3em;
  transition: opacity 0.22s ease, transform 0.22s ease;
  letter-spacing: -0.015em;
}

.claim-line.is-switching {
  opacity: 0;
  transform: translateY(10px);
}

.hero-support {
  margin: 0.82rem 0 0;
  max-width: 55ch;
  font-size: clamp(0.98rem, 2vw, 1.14rem);
}

.cta-label {
  margin: 1rem 0 0;
  color: #d7e5f7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero-claims .hero-actions {
  justify-content: center;
}

.btn {
  border-radius: 999px;
  padding: 0.77rem 1.15rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.btn-primary {
  color: #111;
  background: linear-gradient(120deg, #ff9a63 0%, #ffc483 100%);
  box-shadow: 0 10px 24px rgba(255, 138, 76, 0.28);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(14, 23, 35, 0.8);
}

.hero-facts {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.fact-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(19, 30, 44, 0.94) 0%, rgba(16, 25, 38, 0.92) 100%);
  padding: 0.86rem;
}

.fact-card p {
  margin: 0;
}

.fact-title {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.section h2 {
  max-width: 20ch;
}

.section-centered {
  text-align: center;
}

.section-centered .section-kicker,
.section-centered h2,
.section-centered .section-head-sm {
  margin-left: auto;
  margin-right: auto;
}

.section-centered .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-centered .belief,
.section-centered .process-card,
.section-centered .system-card {
  text-align: center;
}

.section-centered .process-head {
  justify-items: center;
}

.section-centered .system-card ul {
  list-style-position: inside;
  padding-left: 0;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.05rem;
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  box-shadow: var(--shadow);
}

.story-panel {
  position: relative;
}

.story-panel::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 20px rgba(255, 138, 76, 0.8);
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.operational-problems .section-intro {
  max-width: 64ch;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.solution-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.problem-card {
  text-align: center;
}

.belief {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.8rem;
  min-height: 220px;
  padding: 1.15rem 1rem 1.1rem;
  border-color: rgba(157, 176, 199, 0.24);
  background:
    linear-gradient(180deg, rgba(52, 198, 191, 0.08), rgba(52, 198, 191, 0) 34%),
    linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  overflow: hidden;
}

.belief::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52, 198, 191, 0.88), rgba(255, 138, 76, 0.78));
}

.belief-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(157, 176, 199, 0.24);
  background: linear-gradient(160deg, rgba(18, 29, 43, 0.96) 0%, rgba(12, 20, 31, 0.92) 100%);
  color: var(--teal);
  box-shadow: inset 0 1px 0 rgba(227, 241, 255, 0.05);
}

.belief-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.belief h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.24;
}

.belief p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
}

.beliefs-intro {
  max-width: 60ch;
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
}

.about-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.15rem;
  align-items: stretch;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(157, 176, 199, 0.16);
  border-radius: 34px;
  background: rgba(8, 14, 22, 0.52);
}

.about-showcase-copy {
  min-height: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.15rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(157, 176, 199, 0.14);
  background: rgba(10, 17, 26, 0.9);
  box-shadow: inset 0 1px 0 rgba(227, 241, 255, 0.04);
}

.about-showcase-copy h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.about-showcase-copy .section-intro,
.about-showcase-copy p {
  margin: 0;
}

.about-showcase-copy .hero-actions {
  margin-top: 0.1rem;
}

.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  height: 100%;
  align-items: stretch;
}

.founder-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr 1fr;
  justify-items: center;
  text-align: center;
  align-content: start;
  gap: 0.8rem;
  min-height: 100%;
  height: 100%;
  padding: 1.2rem 1.1rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(157, 176, 199, 0.14);
  background: rgba(16, 25, 38, 0.62);
  backdrop-filter: blur(4px);
}

.founder-avatar {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 196, 131, 0.35), transparent 38%),
    linear-gradient(145deg, rgba(52, 198, 191, 0.2), rgba(255, 138, 76, 0.24)),
    rgba(10, 17, 27, 0.92);
  border: 1px solid rgba(157, 176, 199, 0.24);
  box-shadow: inset 0 1px 0 rgba(227, 241, 255, 0.08);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.founder-avatar.is-mike img {
  object-position: center 32%;
}

.founder-avatar.is-matt img {
  object-position: center 18%;
}

.founder-avatar-alt {
  background:
    radial-gradient(circle at 68% 30%, rgba(52, 198, 191, 0.32), transparent 36%),
    linear-gradient(145deg, rgba(255, 138, 76, 0.18), rgba(110, 152, 255, 0.24)),
    rgba(10, 17, 27, 0.92);
}

.founder-role {
  margin: 0;
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
}

.founder-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.16;
}

.founder-card p:not(.founder-role) {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0.95rem;
}

.solution-main,
.solution-side {
  min-height: 100%;
}

.solution-main h2 {
  max-width: 16ch;
}

.solution-side h2 {
  max-width: 22ch;
}

.solution-list {
  margin: 0.7rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.solution-list li {
  padding: 0.7rem 0.78rem;
  border: 1px solid rgba(157, 176, 199, 0.18);
  border-radius: 14px;
  background: rgba(8, 14, 22, 0.58);
}

.solution-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.solutions-stack {
  display: grid;
  gap: 1rem;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.solution-feature {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.15rem;
  align-items: center;
  padding: 1.2rem 1.15rem;
  border-color: rgba(157, 176, 199, 0.18);
  background:
    linear-gradient(90deg, rgba(52, 198, 191, 0.07), rgba(52, 198, 191, 0) 18%),
    linear-gradient(160deg, rgba(15, 23, 35, 0.96) 0%, rgba(11, 18, 28, 0.92) 100%);
  overflow: hidden;
}

.solution-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(52, 198, 191, 0.95), rgba(255, 138, 76, 0.85));
}

.solution-feature-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(157, 176, 199, 0.22);
  background: linear-gradient(160deg, rgba(18, 29, 43, 0.98) 0%, rgba(12, 20, 31, 0.94) 100%);
  color: var(--teal);
  box-shadow: inset 0 1px 0 rgba(227, 241, 255, 0.06);
}

.solution-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-feature-copy {
  display: grid;
  gap: 0.5rem;
}

.solution-feature-copy h3,
.solution-feature-copy p,
.solution-feature-points {
  margin: 0;
}

.solution-feature-points {
  padding-left: 1rem;
  display: grid;
  gap: 0.32rem;
}

.solution-feature-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
}

.solution-feature-action .btn {
  align-self: center;
  min-width: 132px;
  text-align: center;
}

.solution-link-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 0.55rem;
  min-height: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.solution-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 198, 191, 0.34);
}

.solution-link-card h3,
.solution-link-card p {
  margin: 0;
}

.solution-link-label {
  color: var(--teal);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 0.95rem;
}

.solution-main,
.solution-side,
.solution-card-grid .panel {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.solution-main {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 138, 76, 0.08), rgba(255, 138, 76, 0) 30%),
    linear-gradient(160deg, rgba(15, 23, 35, 0.98) 0%, rgba(11, 18, 28, 0.94) 100%);
}

.solution-main::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 138, 76, 0.98), rgba(52, 198, 191, 0.88));
}

.solution-detail-head,
.solution-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.solution-detail-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(157, 176, 199, 0.2);
  background: linear-gradient(160deg, rgba(18, 29, 43, 0.98) 0%, rgba(12, 20, 31, 0.94) 100%);
  color: var(--teal);
  box-shadow: inset 0 1px 0 rgba(227, 241, 255, 0.06);
}

.solution-detail-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.solution-card-grid .panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(157, 176, 199, 0.18);
  background:
    linear-gradient(180deg, rgba(52, 198, 191, 0.06), rgba(52, 198, 191, 0) 38%),
    linear-gradient(160deg, rgba(15, 23, 35, 0.96) 0%, rgba(11, 18, 28, 0.92) 100%);
}

.solution-card-grid .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52, 198, 191, 0.92), rgba(255, 138, 76, 0.84));
}

.solution-card-grid .panel h3,
.solution-card-grid .panel p {
  margin-top: 0;
}

.solution-card-grid .panel p:last-child {
  margin-bottom: 0;
}

.solution-side {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 138, 76, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 76, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(52, 198, 191, 0.08), rgba(52, 198, 191, 0) 28%),
    linear-gradient(160deg, rgba(12, 19, 30, 0.98) 0%, rgba(9, 15, 24, 0.96) 100%);
}

.solution-side::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 76, 0), rgba(255, 138, 76, 0.85), rgba(52, 198, 191, 0));
}

.solution-side::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(255, 138, 76, 0.18), rgba(255, 138, 76, 0) 68%);
  pointer-events: none;
}

.solution-side-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
}

.solution-side .section-kicker {
  margin-bottom: 0.1rem;
}

.solution-side .solution-detail-head {
  align-items: flex-start;
}

.solution-side-intro {
  margin: 0;
  color: #d8e5f4;
  font-size: 0.95rem;
  line-height: 1.6;
}

.solution-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(157, 176, 199, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #d9e8f8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-fit-list {
  margin-top: 0.15rem;
}

.solution-fit-list li {
  position: relative;
  padding: 0.92rem 0.95rem 0.92rem 2.35rem;
  border: 1px solid rgba(157, 176, 199, 0.14);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(18, 28, 42, 0.86) 0%, rgba(12, 20, 31, 0.78) 100%);
  color: #dce8f6;
}

.solution-fit-list li::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0.95rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 138, 76, 0.95), rgba(52, 198, 191, 0.92));
  box-shadow: 0 0 0 5px rgba(255, 138, 76, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  border-color: rgba(157, 176, 199, 0.24);
}

.process-head {
  display: grid;
  align-items: start;
  gap: 0.8rem;
}

.process-num {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(157, 176, 199, 0.35);
  background: linear-gradient(150deg, rgba(19, 30, 44, 0.94) 0%, rgba(16, 25, 38, 0.92) 100%);
  color: #dff3ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.process-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.process-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.system-card ul {
  margin: 0;
  padding-left: 1rem;
}

.system-card li {
  margin-bottom: 0.25rem;
}

.growth-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.88rem;
}

.growth-layout ol,
.growth-layout ul {
  margin: 0;
  padding-left: 1.1rem;
}

.growth-layout li {
  margin-bottom: 0.42rem;
}

.cadence-list {
  list-style: none;
  padding-left: 0;
}

.cadence-list li {
  padding: 0.56rem 0.62rem;
  border-radius: 12px;
  border: 1px solid rgba(157, 176, 199, 0.2);
  background: rgba(11, 18, 28, 0.62);
  margin-bottom: 0.5rem;
}

.cadence-list span {
  color: #d9e8f9;
  font-weight: 700;
  margin-right: 0.35rem;
}

.kpi-strip {
  margin-top: 0.92rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.kpi-strip > div {
  padding: 0.72rem;
  border-radius: 14px;
  background: rgba(10, 18, 28, 0.66);
  border: 1px solid rgba(157, 176, 199, 0.2);
}

.kpi-label,
.kpi-note,
.kpi-value {
  margin: 0;
}

.kpi-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}

.kpi-value {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.22rem;
}

.kpi-note {
  font-size: 0.84rem;
  margin-top: 0.08rem;
}

.bottom-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  align-items: center;
  border-radius: 28px;
  border: 1px solid rgba(157, 176, 199, 0.24);
  background: linear-gradient(150deg, rgba(14, 22, 33, 0.95) 0%, rgba(10, 17, 28, 0.92) 100%);
}

.bottom-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, rgba(52, 198, 191, 0.2), rgba(255, 138, 76, 0.18), rgba(52, 198, 191, 0.12));
  opacity: 0.5;
  filter: blur(20px);
  z-index: -1;
}

.bottom-cta-copy h2 {
  max-width: 22ch;
  margin-bottom: 0.58rem;
}

.bottom-cta-copy .section-intro {
  margin: 0;
  max-width: 58ch;
}

.bottom-cta-points {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.bottom-cta-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.bottom-cta-points li::before {
  content: "";
  position: absolute;
  left: 0.08rem;
  top: 0.52rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(52, 198, 191, 0.14);
}

.bottom-cta-actions {
  border-radius: 20px;
  border: 1px solid rgba(157, 176, 199, 0.22);
  background: rgba(9, 16, 25, 0.78);
  padding: 1rem;
}

.bottom-cta-title {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.bottom-cta-note {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}

.bottom-cta-actions .hero-actions {
  margin-top: 0.75rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.mini-item {
  border: 1px solid rgba(157, 176, 199, 0.2);
  border-radius: 14px;
  background: rgba(9, 16, 25, 0.6);
  padding: 0.72rem;
}

.mini-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.mini-item p {
  margin: 0;
  font-size: 0.9rem;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 0.95rem;
  align-items: stretch;
  margin-bottom: clamp(2.1rem, 5vw, 3.8rem);
}

.auth-brand,
.auth-card {
  min-height: 100%;
}

.auth-brand h1 {
  margin-bottom: 0.5rem;
}

.auth-points {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.auth-points li {
  margin-bottom: 0.25rem;
}

.auth-help {
  margin: 0.85rem 0 0;
  color: #d3e4f8;
  font-size: 0.9rem;
}

.auth-form {
  display: grid;
  gap: 0.15rem;
}

.auth-row {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.auth-check input {
  width: auto;
  margin: 0;
}

.auth-link {
  color: #c9ddf4;
  font-size: 0.84rem;
  text-decoration: none;
}

.auth-link:hover {
  color: var(--ink);
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
  margin-top: 0.68rem;
}

.auth-meta {
  margin: 0.72rem 0 0;
  font-size: 0.8rem;
}

.contact-hero {
  margin-bottom: 1.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.92rem;
}

.contact-info h2 {
  max-width: 16ch;
}

.contact-points {
  margin: 0.55rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.contact-points li {
  border: 1px solid rgba(157, 176, 199, 0.2);
  border-radius: 14px;
  background: rgba(9, 16, 25, 0.65);
  padding: 0.66rem 0.72rem;
}

.contact-points strong {
  display: block;
  color: var(--ink);
  font-size: 0.93rem;
  margin-bottom: 0.16rem;
  font-family: "Space Grotesk", sans-serif;
}

.contact-points span {
  color: var(--muted);
  font-size: 0.89rem;
}

.trust-strip {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.trust-strip span {
  border: 1px solid rgba(157, 176, 199, 0.22);
  background: rgba(8, 14, 22, 0.75);
  color: #d9e7f8;
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 0.36rem 0.62rem;
  font-weight: 600;
}

.form-intro {
  margin-top: -0.2rem;
  margin-bottom: 0.4rem;
}

.roi-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.92rem;
}

.roi-panel,
.audit-panel {
  min-height: 100%;
}

label {
  color: #d0def1;
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-top: 0.45rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.28rem;
  border-radius: 12px;
  border: 1px solid rgba(157, 176, 199, 0.26);
  background: rgba(8, 13, 21, 0.84);
  color: var(--ink);
  padding: 0.64rem 0.72rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(52, 198, 191, 0.7);
  box-shadow: 0 0 0 4px rgba(52, 198, 191, 0.18);
}

.roi-output {
  margin-top: 0.68rem;
  border: 1px dashed rgba(157, 176, 199, 0.34);
  border-radius: 13px;
  padding: 0.75rem;
  background: rgba(10, 18, 29, 0.78);
}

.roi-output p {
  margin: 0.24rem 0;
}

.roi-output strong {
  color: #ffcf9f;
}

.audit-form {
  display: grid;
  gap: 0.14rem;
}

.form-progress {
  margin-bottom: 0.65rem;
}

.step-indicators {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  margin-bottom: 0.46rem;
}

.step-pill {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(157, 176, 199, 0.32);
  background: rgba(8, 13, 21, 0.8);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.step-pill.active {
  color: #111;
  background: linear-gradient(120deg, #ff9a63 0%, #ffc483 100%);
  border-color: transparent;
}

.step-pill.complete {
  color: #d2f8f4;
  border-color: rgba(52, 198, 191, 0.58);
  background: rgba(12, 40, 44, 0.75);
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(157, 176, 199, 0.16);
  border: 1px solid rgba(157, 176, 199, 0.18);
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9a63, #34c6bf);
  transition: width 0.25s ease;
}

.form-step {
  display: none;
  transform: translateY(8px);
  opacity: 0;
}

.form-step.active {
  display: block;
  animation: stepFade 0.26s ease forwards;
}

.step-title {
  margin: 0.2rem 0 0.4rem;
  color: #d6e5f8;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
}

.step-actions {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

.form-message {
  min-height: 1.35rem;
  margin: 0.15rem 0 0;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-message.is-error {
  color: #ffb089;
}

.form-message.is-success {
  color: var(--teal);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

site-footer,
.site-footer {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1.05rem 0 0.82rem;
  border-top: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background: rgba(7, 12, 19, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 -10px 28px rgba(2, 8, 16, 0.24);
}

.footer-inner {
  width: min(1200px, calc(100% - 1.6rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  justify-content: space-between;
  align-items: start;
  gap: 1.65rem;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 0.36rem;
  min-width: 0;
  max-width: 56ch;
  padding-right: 1.4rem;
  border-right: 1px solid rgba(157, 176, 199, 0.16);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.footer-social {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(157, 176, 199, 0.22);
  background: rgba(9, 16, 25, 0.78);
  color: #cfe2f8;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social:hover {
  transform: translateY(-2px);
  color: var(--ink);
  border-color: rgba(157, 176, 199, 0.38);
  background: rgba(11, 19, 29, 0.92);
}

.footer-social:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(52, 198, 191, 0.18);
  border-color: rgba(52, 198, 191, 0.58);
}

.footer-logo {
  display: block;
  height: 62px;
  width: auto;
  max-width: min(360px, 100%);
  object-fit: contain;
}

.footer-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-title {
  margin: 0.08rem 0 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.42;
}

.footer-note {
  margin: 0.24rem 0 0;
  color: #bfd0e4;
  font-size: 0.9rem;
  line-height: 1.62;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  padding-top: 0.2rem;
}

.footer-col {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.28rem;
}

.footer-heading {
  margin: 0 0 0.18rem;
  color: #d8e8fb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-heading-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-heading-link:hover {
  color: var(--ink);
}

.footer-col a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  transition: color 0.2s ease;
}

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

.footer-bar {
  width: min(1200px, calc(100% - 1.6rem));
  margin: 0.95rem auto 0;
  padding: 0.62rem 0 0;
  border-top: 1px solid rgba(157, 176, 199, 0.2);
}

.footer-bar p {
  margin: 0;
  color: #b7c9df;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatA {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-16px, 26px);
  }
}

@keyframes floatB {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(20px, -24px);
  }
}

@keyframes heroFlow {
  0% {
    background-position: 0% 45%;
  }
  50% {
    background-position: 58% 50%;
  }
  100% {
    background-position: 100% 55%;
  }
}

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

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .belief-grid,
  .problems-grid,
  .solution-problem-grid,
  .founder-grid,
  .solution-card-grid,
  .solution-links-grid,
  .kpi-strip,
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col,
  .about-showcase,
  .solution-layout,
  .solution-detail-grid,
  .solution-feature,
  .auth-shell,
  .bottom-cta,
  .growth-layout,
  .roi-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-showcase {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .header-inner,
  main,
  .footer-inner,
  .footer-bar {
    width: calc(100% - 1rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-logo {
    height: 50px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-logo {
    height: 56px;
    max-width: 280px;
  }

  .footer-brand {
    padding-right: 0;
    border-right: 0;
  }

  .auth-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-claims {
    min-height: clamp(320px, 56vh, 470px);
  }

  .hero-facts,
  .belief-grid,
  .problems-grid,
  .solution-problem-grid,
  .founder-grid,
  .process-grid,
  .solution-card-grid,
  .solution-links-grid,
  .kpi-strip,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .claim-line {
    min-height: 2.8em;
  }
}
