:root {
  --tp-bg: #080c1c;
  --tp-bg-elevated: #101932;
  --tp-surface: #121c3a;
  --tp-border: #2f3d63;
  --tp-primary: #3dff3d;
  --tp-primary-dim: #2bc42b;
  --tp-text: #f4f7ff;
  --tp-muted: #9dabcf;
  --tp-accent: #7eb8ff;
  --tp-warn: #ffc98a;
  --font: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Outfit", var(--font);
  --radius: 14px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--tp-text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(61, 255, 61, 0.12), transparent),
    radial-gradient(circle at 100% 0%, rgba(33, 71, 204, 0.2), transparent 40%),
    var(--tp-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--tp-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--tp-primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Layout */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(47, 61, 99, 0.6);
  background: rgba(8, 12, 28, 0.88);
  backdrop-filter: blur(12px);
}

.site-header__inner,
.site-footer__inner,
.section-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand__name {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.75rem;
  flex-wrap: nowrap;
  margin-left: auto;
}

.site-nav a {
  color: var(--tp-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav .btn {
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .brand__name {
    display: none;
  }

  .site-header__inner {
    gap: 0.65rem;
  }

  .site-nav {
    gap: 0.5rem 0.65rem;
  }

  .site-nav a:not(.btn) {
    font-size: 0.85rem;
  }

  .site-nav .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--tp-text);
}

.site-nav .btn--primary,
.site-nav .btn--primary:hover {
  color: #041204;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

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

.btn--primary {
  background: linear-gradient(180deg, var(--tp-primary) 0%, var(--tp-primary-dim) 100%);
  color: #041204;
  box-shadow: 0 4px 20px rgba(61, 255, 61, 0.25);
}

.btn--primary:hover {
  color: #041204;
  box-shadow: 0 8px 28px rgba(61, 255, 61, 0.35);
}

.btn--ghost {
  background: rgba(18, 28, 58, 0.6);
  border-color: var(--tp-border);
  color: var(--tp-text);
}

.btn--ghost:hover {
  border-color: rgba(126, 184, 255, 0.5);
  color: var(--tp-text);
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tp-primary);
  border: 1px solid rgba(61, 255, 61, 0.35);
  background: rgba(61, 255, 61, 0.08);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  color: var(--tp-muted);
  max-width: 36rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  border-radius: var(--radius);
  border: 1px solid var(--tp-border);
  background: linear-gradient(165deg, var(--tp-surface) 0%, var(--tp-bg-elevated) 100%);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero__logo-large {
  width: min(280px, 70%);
  margin: 0 auto 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}

.stat-pill {
  text-align: center;
  padding: 0.65rem 0.4rem;
  border-radius: 10px;
  background: rgba(8, 14, 32, 0.55);
  border: 1px solid rgba(47, 61, 99, 0.65);
}

.stat-pill strong {
  display: block;
  font-size: 1.1rem;
  color: var(--tp-primary);
  font-variant-numeric: tabular-nums;
}

.stat-pill span {
  font-size: 0.72rem;
  color: var(--tp-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: rgba(16, 25, 50, 0.45);
  border-block: 1px solid rgba(47, 61, 99, 0.4);
}

.section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

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

.feature-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--tp-border);
  background: linear-gradient(180deg, rgba(18, 28, 58, 0.9) 0%, rgba(12, 18, 40, 0.95) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--tp-primary);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--tp-muted);
}

.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding: 1rem 0.5rem 0;
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #041204;
  background: var(--tp-primary);
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--tp-muted);
}

.cta-band {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 255, 61, 0.25);
  background: linear-gradient(135deg, rgba(61, 255, 61, 0.1) 0%, rgba(33, 71, 204, 0.12) 100%);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.cta-band p {
  margin: 0 0 1.25rem;
  color: var(--tp-muted);
}

/* Contact page */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--tp-border);
  background: linear-gradient(180deg, var(--tp-surface) 0%, var(--tp-bg-elevated) 100%);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.contact-card > p {
  margin: 0 0 1.25rem;
  color: var(--tp-muted);
  font-size: 0.95rem;
}

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

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-list span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tp-muted);
  font-weight: 600;
}

.contact-list a {
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--tp-warn);
  background: rgba(255, 201, 138, 0.08);
  border: 1px solid rgba(255, 201, 138, 0.25);
}

.contact-includes {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
  color: var(--tp-muted);
  font-size: 0.92rem;
}

.contact-card__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-intro {
  padding: 2.5rem 0 1rem;
}

.page-intro h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.page-intro p {
  margin: 0;
  color: var(--tp-muted);
  max-width: 38rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 2rem 0;
  border-top: 1px solid rgba(47, 61, 99, 0.5);
  color: var(--tp-muted);
  font-size: 0.88rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  gap: 1.25rem;
}

.site-footer a {
  color: var(--tp-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--tp-text);
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
