:root {
  --orange-1: #ff652c;
  --orange-2: #ff8d35;
  --ink: #111317;
  --slate: #2a2f38;
  --muted: #6f7683;
  --off-white: #f6f4ef;
  --soft: #efe7dd;
  --glass: rgba(255, 255, 255, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 40px 120px rgba(17, 19, 23, 0.18);
  --shadow-soft: 0 20px 60px rgba(17, 19, 23, 0.12);
  --radius-sm: 12px;
  --space-1: 6px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 40px;
  --font-lg: clamp(2.6rem, 4vw, 4rem);
  --font-md: 1.1rem;
  --lh-tight: 1.05;
  --lh-base: 1.6;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #f3f5f9 0%, #edf0f6 40%, #e6ebf1 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: var(--lh-base);
}

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

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

.bg-orbit {
  position: fixed;
  inset: -20% -10% auto auto;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 141, 53, 0.28) 0%, rgba(255, 101, 44, 0.08) 55%, transparent 70%);
  filter: blur(10px);
  z-index: -2;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 19, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 23, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at 20% 20%, black 0%, transparent 70%);
  z-index: -3;
}

.site-header {
  padding: 12px 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.glass-header {
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  box-shadow: none;
}

.glass-header .nav-links a,
.glass-header .brand span,
.glass-header .ghost {
  color: var(--slate);
}

.glass-header .ghost {
  border-color: rgba(17, 19, 23, 0.12);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(17, 19, 23, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--slate);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.primary,
.ghost,
button {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.primary {
  background: linear-gradient(120deg, var(--orange-1), var(--orange-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 101, 44, 0.28);
}

.primary:hover {
  box-shadow: 0 20px 40px rgba(255, 101, 44, 0.32);
}

.ghost {
  background: transparent;
  border: 1px solid rgba(17, 19, 23, 0.12);
  color: var(--slate);
}

main {
  padding: var(--space-6) 6vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
  padding: var(--space-6) 0 20px;
}

.hero-copy h1 {
  font-size: var(--font-lg);
  line-height: var(--lh-tight);
  margin-top: var(--space-3);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--slate);
  font-weight: 600;
}

.lede {
  font-size: var(--font-md);
  color: var(--slate);
  margin-top: var(--space-2);
}

.wordmark {
  width: 240px;
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: var(--space-4) 0 var(--space-3);
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  font-size: 0.85rem;
  color: var(--slate);
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.6rem;
  color: var(--muted);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: var(--shadow);
  padding: var(--space-4);
  position: relative;
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 18px;
}

.status {
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  color: var(--orange-1);
  font-weight: 600;
}

.panel-body {
  display: grid;
  gap: var(--space-3);
}

.panel-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  font-size: 0.85rem;
  color: var(--slate);
}

.panel-list strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-top: 4px;
}

.panel-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.quality-bars {
  display: grid;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--slate);
}

.quality-bars span {
  display: block;
  margin-bottom: 6px;
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  color: var(--muted);
  font-size: 0.75rem;
}

.quality-bars .bar {
  height: 10px;
  background: rgba(17, 19, 23, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.quality-bars .bar i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, rgba(255, 141, 53, 0.9), rgba(255, 101, 44, 0.7));
  border-radius: 999px;
}

.panel-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.panel-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 19, 23, 0.1);
  font-size: 0.75rem;
  color: var(--slate);
}


.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(17, 19, 23, 0.08);
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
  font-size: 0.9rem;
  color: var(--muted);
}

.logo-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
}

.section {
  padding: 60px 0;
}

.section+.section {
  margin-top: 20px;
}

.section-title {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.card {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: var(--space-2);
  transition: transform 0.3s var(--ease-out);
}

.card:hover {
  transform: none;
}

.card h3 {
  font-size: 1.3rem;
}

.chip {
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-1);
}

.workflow {
  position: relative;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-3);
}

.step {
  background: var(--glass);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid rgba(17, 19, 23, 0.08);
}

.step-num {
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  color: var(--orange-1);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-5);
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-6);
}

.bullets {
  margin-top: var(--space-3);
  list-style: none;
  display: grid;
  gap: var(--space-2);
  color: var(--slate);
}

.bullets li {
  padding-left: 20px;
  position: relative;
}

.bullets li::before {
  content: "◦";
  position: absolute;
  left: 0;
  color: var(--orange-1);
  font-size: 1.2rem;
}

.stat-stack {
  display: grid;
  gap: var(--space-3);
}

.stat-stack span {
  font-size: 2.6rem;
  font-weight: 700;
}

.stat-stack p {
  color: var(--muted);
}

.pricing .price {
  font-size: 2.2rem;
  font-weight: 700;
}

.pricing .price span {
  font-size: 1rem;
  color: var(--muted);
}

.card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--slate);
}

.card.highlight {
  background: linear-gradient(160deg, rgba(255, 101, 44, 0.1), rgba(255, 141, 53, 0.22));
  border: 1px solid rgba(255, 101, 44, 0.3);
}

.qa {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 19, 23, 0.08);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-4);
  align-items: center;
  background: linear-gradient(120deg, rgba(17, 19, 23, 0.9), rgba(17, 19, 23, 0.7));
  color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.cta-form {
  display: grid;
  gap: var(--space-2);
}

.cta-form input {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--off-white);
  font-size: 0.95rem;
}

.cta-form input::placeholder {
  color: rgba(246, 244, 239, 0.7);
}

.cta-form button {
  background: linear-gradient(120deg, var(--orange-1), var(--orange-2));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(246, 244, 239, 0.8);
  min-height: 1.2em;
}

.site-footer {
  padding: var(--space-4) 6vw 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(17, 19, 23, 0.08);
}

.site-footer img {
  width: 140px;
  margin: 0;
}


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

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

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

.how .process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.process-node {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 19, 23, 0.08);
  display: grid;
  gap: var(--space-2);
}

.infographic {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 19, 23, 0.08);
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  position: relative;
}

.flow-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 101, 44, 0.15), rgba(255, 141, 53, 0.6));
  z-index: 0;
}

.flow-card {
  padding: var(--space-2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 19, 23, 0.08);
  display: grid;
  gap: var(--space-1);
  text-align: center;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.flow-card strong {
  font-size: 1rem;
  color: var(--ink);
}

.flow-card p {
  color: var(--muted);
  font-size: 0.8rem;
}

.note {
  background: rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid rgba(17, 19, 23, 0.08);
  margin-top: var(--space-6);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.note-card {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 19, 23, 0.08);
}

.showcase {
  padding-top: 40px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  display: grid;
  gap: var(--space-3);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--slate);
}

.graph {
  position: relative;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(17, 19, 23, 0.03);
  overflow: hidden;
}

.graph-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 19, 23, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 23, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}

.graph svg {
  position: relative;
  width: 100%;
  height: 160px;
}

.graph-area {
  fill: rgba(255, 141, 53, 0.12);
  stroke: none;
}

.graph polyline {
  fill: none;
  stroke: rgba(255, 101, 44, 0.9);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.graph-dots {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  height: 160px;
  pointer-events: none;
}
.graph-dots i {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 141, 53, 0.95);
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.graph-axis {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: var(--space-2);
}

.chart-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  font-size: 0.8rem;
  color: var(--slate);
}

.chart-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.code-card pre {
  background: rgba(17, 19, 23, 0.92);
  color: #f4f6fb;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-family: "JetBrains Mono", "SFMono-Regular", monospace;
  font-size: 0.8rem;
  line-height: 1.5;
  overflow: auto;
}

.code-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  gap: var(--space-2);
}

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

  .hero {
    grid-template-columns: 1fr;
  }

  .panel-list {
    grid-template-columns: 1fr;
  }

  .logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .grid-3,
  .timeline,
  .grid-2,
  .how .process,
  .note-grid,
  .showcase-grid,
  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .infographic {
    grid-template-columns: 1fr;
  }

  .flow-track {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.tally-shell {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 244, 239, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.tally-shell iframe {
  display: block;
}