:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-soft: #0a0d10;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f6f8fb;
  --muted: #aab5bd;
  --muted-strong: #d7dde2;
  --accent: #00c896;
  --accent-2: #3e7bff;
  --danger: #ff5c8a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1140px;
  font-family: "Inter", "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(145deg, rgba(0, 200, 150, 0.12), transparent 360px),
    linear-gradient(315deg, rgba(62, 123, 255, 0.12), transparent 420px),
    var(--bg);
  color: var(--text);
  font-family: inherit;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 76%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(5, 6, 8, 0.78) 68%, var(--bg));
}

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

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  background: rgba(0, 200, 150, 0.35);
  color: var(--text);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--accent);
  color: #001b14;
  font-weight: 800;
  padding: 0.8rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 6, 8, 0.74);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.section-pad,
.footer-inner {
  width: min(100% - 1.25rem, var(--max));
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--text);
  font-weight: 850;
}

.nav-mark {
  position: relative;
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(0, 200, 150, 0.45);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(0, 200, 150, 0.22), rgba(62, 123, 255, 0.18)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 32px rgba(0, 200, 150, 0.2);
}

.nav-mark::after {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a,
.footer-links a,
.social-row a {
  border-radius: var(--radius);
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a {
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
}

.nav-links a:hover,
.footer-links a:hover,
.social-row a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.section-pad {
  padding-block: 3.25rem;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: auto;
  padding-top: 2.2rem;
  padding-bottom: 2.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 26px currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: none;
  margin-bottom: 1.15rem;
  font-size: 3rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.05rem;
  font-weight: 850;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--muted-strong);
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-lead,
.section-heading p,
.contact-panel p,
.legal-hero p,
.legal-section p {
  color: var(--muted);
}

.hero-lead {
  max-width: 42rem;
  margin-bottom: 1.65rem;
  font-size: 1.1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #42e7bb);
  color: #001b14;
  box-shadow: 0 18px 44px rgba(0, 200, 150, 0.22);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

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

.btn-primary:hover {
  box-shadow: 0 24px 58px rgba(0, 200, 150, 0.3);
}

.btn-secondary:hover {
  border-color: rgba(0, 200, 150, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 34rem;
  margin: 1.4rem 0 0;
}

.hero-metrics div {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 0.9rem;
}

.hero-metrics dt {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual,
.feature-panel,
.contact-panel,
.legal-hero,
.legal-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.4rem;
  overflow: hidden;
  padding: 1.25rem;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 200, 150, 0.22), transparent 42%),
    linear-gradient(315deg, rgba(62, 123, 255, 0.18), transparent 48%);
  content: "";
  opacity: 0.9;
}

.brand-badge,
.profile-summary,
.signal-list {
  position: relative;
}

.brand-badge {
  display: grid;
  min-height: 12rem;
  place-items: center;
}

.brand-ring {
  display: grid;
  width: 10.5rem;
  height: 10.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, rgba(0, 200, 150, 0.95), rgba(62, 123, 255, 0.9), rgba(255, 255, 255, 0.18), rgba(0, 200, 150, 0.95));
  box-shadow: inset 0 0 46px rgba(255, 255, 255, 0.12), 0 28px 80px rgba(0, 0, 0, 0.46);
}

.brand-ring span {
  display: grid;
  width: 7.4rem;
  height: 7.4rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.88);
  color: var(--text);
  font-size: 2.6rem;
  font-weight: 950;
}

.profile-summary h2 {
  margin-bottom: 0.5rem;
  font-size: 1.55rem;
}

.profile-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.profile-kicker {
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.signal-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.32);
  color: var(--muted-strong);
  padding: 0.5rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 750;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 1.5rem;
}

.link-grid {
  display: grid;
  gap: 0.8rem;
}

.link-card {
  --mx: 50%;
  --my: 50%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 6.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.064);
  background:
    radial-gradient(circle at var(--mx) var(--my), color-mix(in srgb, var(--card-accent) 22%, transparent), transparent 34%),
    rgba(255, 255, 255, 0.064);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  padding: 1rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(18px);
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 150, 0.46);
  border-color: color-mix(in srgb, var(--card-accent) 58%, white 8%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.card-icon,
.card-arrow {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
}

.card-icon {
  background: rgba(0, 200, 150, 0.12);
  background: color-mix(in srgb, var(--card-accent) 18%, transparent);
  color: var(--card-accent);
}

.card-arrow {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--muted);
  transition: transform 180ms ease, color 180ms ease;
}

.link-card:hover .card-arrow {
  transform: translate(2px, -2px);
  color: var(--text);
}

.card-copy {
  display: grid;
  min-width: 0;
}

.card-copy strong {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 850;
}

.card-copy small {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.88rem;
}

.about-layout {
  display: grid;
  gap: 1.3rem;
  align-items: start;
}

.feature-panel,
.contact-panel,
.legal-hero,
.legal-section {
  padding: 1.15rem;
}

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

.feature-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted-strong);
}

.feature-list li::before {
  position: absolute;
  top: 0.18rem;
  left: 0;
  display: grid;
  width: 1.3rem;
  height: 1.3rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.15);
  color: var(--accent);
  content: "\2713";
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-panel h2 {
  max-width: 15ch;
}

.contact-copy {
  font-size: 1.05rem;
  font-weight: 800;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-row a {
  border: 1px solid var(--line-soft);
  padding: 0.65rem 0.8rem;
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(5, 6, 8, 0.62);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-block: 1.25rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-links a {
  padding: 0.45rem 0.65rem;
}

.legal-main {
  display: grid;
  gap: 1rem;
  overflow-wrap: anywhere;
}

.legal-hero {
  margin-top: 2rem;
}

.legal-hero h1 {
  max-width: none;
  font-size: 2.35rem;
}

.legal-section {
  scroll-margin-top: 6rem;
}

.legal-section h2 {
  margin-bottom: 1.1rem;
}

.legal-section h3:not(:first-of-type) {
  margin-top: 1.35rem;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(0, 200, 150, 0.45);
  text-underline-offset: 0.25em;
}

.js .reveal {
  opacity: 1;
  transform: none;
  animation: reveal-up 520ms ease both;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:focus-visible {
  outline: 3px solid rgba(0, 200, 150, 0.72);
  outline-offset: 4px;
}

@supports not (backdrop-filter: blur(12px)) {
  .site-header,
  .hero-visual,
  .feature-panel,
  .contact-panel,
  .legal-hero,
  .legal-section,
  .link-card {
    background: rgba(15, 19, 23, 0.96);
  }
}

@media (min-width: 640px) {
  .nav-links {
    display: flex;
  }

  .nav-wrap,
  .section-pad,
  .footer-inner {
    width: min(100% - 2rem, var(--max));
  }

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

  .contact-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .social-row {
    grid-column: 1 / -1;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .section-pad {
    padding-block: 5.5rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.78fr);
    gap: 3rem;
    padding-top: 3.2rem;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .hero-lead {
    font-size: 1.2rem;
  }

  .hero-visual {
    padding: 1.5rem;
  }

  .brand-badge {
    min-height: 19rem;
  }

  .brand-ring {
    width: 16rem;
    height: 16rem;
  }

  .brand-ring span {
    width: 11.4rem;
    height: 11.4rem;
    font-size: 4rem;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
    gap: 2rem;
  }

  .feature-panel,
  .contact-panel,
  .legal-hero,
  .legal-section {
    padding: 1.5rem;
  }
}

@media (min-width: 1120px) {
  .link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .link-card {
    grid-template-columns: 1fr auto;
    align-content: space-between;
    min-height: 12rem;
  }

  .card-icon {
    grid-column: 1;
    grid-row: 1;
  }

  .card-copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .card-arrow {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .btn:hover,
  .link-card:hover {
    transform: none;
  }
}
