:root {
  --bg: #06111b;
  --panel: #0f1b2a;
  --panel-alt: #111f30;
  --text: #e8eef5;
  --muted: #9eb0c2;
  --line: #2d4359;
  --accent: #4fd384;
  --accent-strong: #31ba6a;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top right, #10304b 0%, var(--bg) 40%);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.bg-orb-a {
  width: 420px;
  height: 420px;
  background: #2d6cff;
  top: -120px;
  left: -120px;
}

.bg-orb-b {
  width: 360px;
  height: 360px;
  background: #34d399;
  bottom: -120px;
  right: -80px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  width: calc(100% - 2rem);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  padding: 1.25rem 0;
}

.site-header .brand {
  justify-self: start;
}

.header-spacer {
  justify-self: end;
  width: 120px;
  height: 1px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0c4475 0%, #0d7a59 100%);
  box-shadow: 0 8px 22px rgba(5, 22, 38, 0.34);
  border: 1px solid rgba(143, 246, 200, 0.38);
  backdrop-filter: blur(2px);
}

.brand-wordmark {
  display: block;
  height: 50px;
  width: auto;
  max-width: min(340px, 72vw);
  flex: 0 1 auto;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  justify-self: center;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  margin-top: 2.2rem;
  padding: 2.8rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, rgba(17, 31, 48, 0.95), rgba(12, 25, 39, 0.9));
  box-shadow: var(--shadow);
}

.eyebrow {
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0 0 0.8rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.08;
  max-width: 16ch;
}

.hero-copy {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0.8rem 1.1rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
  color: #05200f;
}

.btn-outline,
.btn-ghost {
  color: var(--text);
  border-color: #3b5166;
  background: transparent;
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: #6d849a;
}

.hero-kpis {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-kpis article {
  background: rgba(6, 17, 27, 0.6);
  border: 1px solid #355066;
  border-radius: 14px;
  padding: 1rem;
}

.hero-kpis h3 {
  margin: 0;
  font-size: 1rem;
}

.hero-kpis p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  margin-top: 3.2rem;
}

.partner-strip {
  margin-top: 2rem;
}

.partner-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: start;
  justify-items: start;
  gap: 1rem;
}

.partner-card {
  background: rgba(10, 21, 34, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.9rem;
  width: fit-content;
  min-width: 280px;
}

.partner-card img {
  width: auto;
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.35rem;
}

.partner-card h3 {
  margin: 0;
  font-size: 1rem;
}

.section-alt {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 31, 48, 0.85), rgba(11, 23, 35, 0.85));
}

.legal-shell {
  max-width: 840px;
}

.legal-shell p {
  color: var(--muted);
  line-height: 1.65;
}

.legal-shell a {
  color: #9be8c0;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}

.grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: rgba(15, 27, 42, 0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
}

.card p,
.muted {
  margin: 0;
  color: var(--muted);
}

#solutions .card a {
  color: var(--accent);
  font-weight: 700;
}

#solutions .card a:hover {
  color: var(--accent-strong);
}

.pricing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.readiness {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  background: rgba(10, 21, 34, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  position: relative;
}

.price-card.featured {
  border-color: #3f9964;
  box-shadow: inset 0 0 0 1px rgba(79, 211, 132, 0.2);
}

.badge {
  display: inline-block;
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #041b0e;
  font-weight: 800;
  background: linear-gradient(130deg, #73f1ad, #3ed782);
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
}

.price-card ul {
  margin: 0.9rem 0 1rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.price-card li {
  margin: 0.4rem 0;
}

.pricing-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 27, 42, 0.8);
  padding: 0.9rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.site-footer {
  margin-top: 3.4rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.site-footer > div {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

.site-footer-app-badges {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.site-footer-app-badges-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.4rem;
}

.site-footer-app-badges a {
  display: inline-flex;
  line-height: 0;
}

.site-footer-app-badges img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .header-spacer {
    display: none;
  }

  .brand-wordmark {
    height: 44px;
  }

  .hero {
    padding: 1.6rem;
  }

  .hero-kpis,
  .cards,
  .readiness,
  .pricing {
    grid-template-columns: 1fr;
  }
}

.founder-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
  margin: 32px 0;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.founder-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
  flex-shrink: 0;
}

.founder-bio h2 {
  margin: 0 0 4px;
  font-size: 1.5rem;
}

.founder-role {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 16px;
}

.founder-links {
  margin-top: 20px;
}

.founder-links a {
  color: var(--accent);
  text-decoration: none;
}

.founder-links a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .founder-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

.product-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 2.5rem;
  margin-bottom: 56px;
  justify-items: center;
}

.product-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.product-shot img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
}

.product-shot figcaption {
  text-align: center;
  max-width: 320px;
}

.product-shot figcaption h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.product-shot figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.device-band {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  margin-top: 1.5rem;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.device-band-copy h3 {
  margin: 0 0 12px;
}

.device-band-copy p {
  margin: 0 0 12px;
  color: var(--muted);
}

.device-band-copy p:last-child {
  margin-bottom: 0;
}

.device-band-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.device-band-images img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: block;
}

@media (max-width: 900px) {
  .product-tour-grid {
    grid-template-columns: 1fr;
  }
  .device-band {
    grid-template-columns: 1fr;
  }
}

.apply-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-top: 2.5rem;
}

.apply-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.apply-copy p:last-child {
  margin-bottom: 0;
}

.apply-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
}

.apply-image-tablet {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: block;
}

.apply-image-phone {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: block;
}

@media (max-width: 900px) {
  .apply-showcase {
    grid-template-columns: 1fr;
  }
  .apply-images {
    flex-wrap: wrap;
  }
}

.pilot-band-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pilot-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.pilot-logos img {
  max-height: 56px;
  width: auto;
  display: block;
}

.pilot-copy {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px 0 32px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field > span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.contact-field > span em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--panel-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 211, 132, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  margin-top: 4px;
}

.contact-form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.company-facts {
  list-style: none;
  padding: 0;
  margin: 16px 0 32px;
  display: grid;
  gap: 10px;
}

.company-facts li {
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.company-facts strong {
  color: var(--accent);
  margin-right: 6px;
}

.company-facts a {
  color: var(--accent);
  text-decoration: none;
}

.company-facts a:hover {
  text-decoration: underline;
}
