@font-face {
  font-family: "InterVariable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://rsms.me/inter/font-files/InterVariable.woff2?v=4.1") format("woff2");
}

:root {
  color-scheme: light;
  --ink-950: #101214;
  --zinc-900: #18181b;
  --zinc-800: #27272a;
  --zinc-700: #3f3f46;
  --zinc-600: #52525b;
  --zinc-500: #71717a;
  --zinc-300: #d4d4d8;
  --zinc-200: #e4e4e7;
  --zinc-100: #f4f4f5;
  --zinc-50: #fafafa;
  --paper: #fbfaf7;
  --white: #ffffff;
  --signal-teal: #00a6a6;
  --signal-teal-dark: #007c7c;
  --signal-mint: #8de1d1;
  --port-amber: #f6b24b;
  --fault-coral: #e65f5c;
  --radius: 8px;
  --shadow: 0 24px 80px rgb(16 18 20 / 12%);
  font-family: InterVariable, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11", "ss01", "ss03";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  background:
    linear-gradient(180deg, rgb(141 225 209 / 18%) 0, rgb(251 250 247 / 0) 420px),
    var(--paper);
  color: var(--ink-950);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.page {
  isolation: isolate;
  min-height: 100dvh;
  overflow: hidden;
}

.container {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(16 18 20 / 8%);
  background: rgb(251 250 247 / 86%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 8px;
}

.brand-wordmark {
  width: 128px;
  height: auto;
  flex: 0 1 auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
  color: var(--zinc-600);
  font-size: 0.9375rem;
  line-height: 1.5rem;
}

.desktop-nav a:hover {
  color: var(--ink-950);
}

.nav-action {
  border: 1px solid rgb(16 18 20 / 12%);
  border-radius: var(--radius);
  padding: 7px 11px;
  color: var(--ink-950);
  background: rgb(255 255 255 / 70%);
}

.menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(16 18 20 / 12%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 75%);
  color: var(--ink-950);
}

.menu-button span {
  position: absolute;
  left: 11px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button span:first-child {
  transform: translateY(-5px);
}

.menu-button span:last-child {
  transform: translateY(5px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgb(16 18 20 / 8%);
  padding: 14px 0 18px;
}

.mobile-nav-open {
  display: block;
}

.mobile-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--zinc-700);
  font-size: 1rem;
  line-height: 1.75rem;
}

.mobile-nav a:hover {
  background: rgb(16 18 20 / 5%);
  color: var(--ink-950);
}

.hero {
  padding: 56px 0 72px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(0 166 166 / 24%);
  border-radius: 999px;
  padding: 5px 10px 5px 6px;
  background: rgb(141 225 209 / 20%);
  color: var(--signal-teal-dark);
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--signal-teal);
  box-shadow: 0 0 0 4px rgb(0 166 166 / 12%);
}

.hero h1,
.section-heading h2,
.legal-hero h1,
.download h2 {
  margin: 0;
  max-width: 20ch;
  color: var(--ink-950);
  font-size: clamp(3rem, 9vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 650;
  text-wrap: balance;
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 48ch;
  color: var(--zinc-700);
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 550;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  border: 1px solid var(--signal-teal);
  background: var(--signal-teal);
  color: var(--white);
  box-shadow: 0 12px 30px rgb(0 166 166 / 22%);
}

.button-primary:focus-visible,
.button-secondary:focus-visible,
.menu-button:focus-visible {
  outline: 2px solid var(--signal-teal);
  outline-offset: 2px;
}

.button-secondary {
  border: 1px solid rgb(16 18 20 / 12%);
  background: rgb(255 255 255 / 62%);
  color: var(--ink-950);
}

.hero-points {
  display: none;
  gap: 12px;
  margin-top: 34px;
  color: var(--zinc-700);
  font-size: 1rem;
  line-height: 1.75rem;
}

.hero-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 6px;
  color: var(--signal-teal);
}

.mockup-wrap {
  position: relative;
  display: none;
}

.app-screenshot {
  display: block;
  width: min(58vw, 640px);
  max-width: none;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 65px rgb(16 18 20 / 18%);
  outline: 1px solid rgb(16 18 20 / 10%);
}

.app-window {
  position: relative;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 55px rgb(16 18 20 / 13%);
  outline: 1px solid rgb(16 18 20 / 10%);
  overflow: hidden;
}

.window-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(16 18 20 / 8%);
  padding: 12px 14px;
  background: var(--zinc-50);
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.traffic-lights span:nth-child(1) {
  background: #ff5f57;
}

.traffic-lights span:nth-child(2) {
  background: #ffbd2e;
}

.traffic-lights span:nth-child(3) {
  background: #28c840;
}

.window-title {
  color: var(--zinc-600);
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.dashboard {
  min-width: 0;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #ffffff 0, #fafafa 100%);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.app-header-row {
  align-items: center;
}

.app-title-group {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.app-preview-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgb(16 18 20 / 10%);
  outline: 1px solid rgb(16 18 20 / 10%);
}

.app-title {
  color: var(--ink-950);
  font-size: 1.5625rem;
  line-height: 2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.app-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgb(34 197 94 / 28%);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgb(34 197 94 / 10%);
  color: #16803a;
  font-size: 0.75rem;
  line-height: 1.5rem;
  font-weight: 650;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.refresh-button {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(16 18 20 / 9%);
  border-radius: var(--radius);
  background: rgb(16 18 20 / 5%);
  color: var(--zinc-700);
  font-size: 1rem;
}

.subtle {
  color: var(--zinc-600);
  font-size: 1rem;
  line-height: 1.75rem;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 420px;
  margin-top: 18px;
  border: 1px solid rgb(16 18 20 / 10%);
  border-radius: 9px;
  padding: 3px;
  background: rgb(16 18 20 / 6%);
  color: var(--zinc-700);
  font-size: 0.8125rem;
  line-height: 1.5rem;
  font-weight: 550;
  text-align: center;
}

.segmented-control span {
  border-radius: 7px;
  padding: 3px 8px;
}

.segmented-control .selected {
  background: var(--white);
  color: var(--ink-950);
  box-shadow: 0 1px 3px rgb(16 18 20 / 12%);
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 20px;
  border: 1px solid rgb(16 18 20 / 9%);
  border-radius: 12px;
  background: rgb(255 255 255 / 74%);
}

.summary-strip > div {
  min-width: 0;
  padding: 13px 14px;
}

.summary-strip > div + div {
  border-left: 1px solid rgb(16 18 20 / 7%);
}

.summary-strip span,
.metric-label {
  display: block;
  color: var(--zinc-500);
  font-size: 0.6875rem;
  line-height: 1rem;
  font-weight: 650;
  text-transform: uppercase;
}

.summary-strip strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  margin-top: 5px;
  color: var(--ink-950);
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-block {
  margin-top: 18px;
}

.block-title {
  margin-bottom: 9px;
  color: var(--ink-950);
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 650;
}

.metrics {
  display: grid;
  gap: 0;
  border: 1px solid rgb(16 18 20 / 9%);
  border-radius: 12px;
  background: var(--white);
}

.metric {
  padding: 13px 14px;
}

.metric + .metric {
  border-top: 1px solid rgb(16 18 20 / 8%);
}

.metric-value {
  color: var(--ink-950);
  margin-top: 5px;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
}

.app-metrics {
  grid-template-columns: repeat(4, 1fr);
}

.app-metrics .metric + .metric {
  border-top: 0;
  border-left: 1px solid rgb(16 18 20 / 7%);
}

.forwarding-list {
  overflow: hidden;
  border: 1px solid rgb(16 18 20 / 9%);
  border-radius: 12px;
  background: var(--white);
}

.forward-row {
  padding: 12px 14px;
}

.forward-row + .forward-row {
  border-top: 1px solid rgb(16 18 20 / 7%);
}

.forward-url {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--ink-950);
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  line-height: 1.5rem;
  font-weight: 550;
}

.forward-url span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--signal-teal);
}

.forward-meta {
  margin-top: 4px;
  overflow: hidden;
  color: var(--zinc-600);
  font-size: 0.75rem;
  line-height: 1.25rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  padding: 76px 0;
  background: rgb(255 255 255 / 88%);
}

.section.alt {
  background: linear-gradient(180deg, rgb(141 225 209 / 12%), rgb(246 178 75 / 10%));
}

.section-heading {
  display: grid;
  gap: 16px;
}

.section-heading h2,
.download h2 {
  max-width: 35ch;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1;
}

.section-heading p,
.download p {
  margin: 0;
  max-width: 48ch;
  color: var(--zinc-700);
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-wrap: pretty;
}

.feature-grid {
  display: grid;
  gap: 28px;
  margin: 42px 0 0;
}

.feature {
  border-top: 1px solid rgb(16 18 20 / 10%);
  padding-top: 22px;
}

.feature dt {
  color: var(--ink-950);
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 650;
}

.feature dd {
  margin: 8px 0 0;
  color: var(--zinc-700);
  font-size: 1rem;
  line-height: 1.75rem;
  text-wrap: pretty;
}

.workflow {
  display: grid;
  gap: 28px;
  align-items: start;
  margin-top: 42px;
}

.workflow-panel {
  border-radius: 12px;
  background: var(--white);
  color: var(--ink-950);
  box-shadow: 0 16px 40px rgb(16 18 20 / 9%);
  outline: 1px solid rgb(16 18 20 / 9%);
  overflow: hidden;
}

.workflow-panel-header {
  border-bottom: 1px solid rgb(16 18 20 / 8%);
  padding: 14px 16px;
  background: rgb(244 244 245 / 70%);
  color: var(--zinc-600);
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.terminal-lines {
  display: grid;
  gap: 10px;
  padding: 18px 16px 22px;
  color: var(--zinc-700);
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace;
  font-size: 0.9375rem;
  line-height: 1.625rem;
}

.terminal-lines strong {
  color: var(--signal-teal-dark);
  font-weight: 500;
}

.download {
  padding: 76px 0;
  background: linear-gradient(135deg, rgb(0 166 166 / 14%), rgb(246 178 75 / 18%));
  color: var(--ink-950);
}

.download-box {
  display: grid;
  gap: 28px;
  align-items: center;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-meta span {
  border: 1px solid rgb(16 18 20 / 10%);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgb(255 255 255 / 58%);
  color: var(--zinc-700);
  font-size: 0.9375rem;
  line-height: 1.5rem;
}

.site-footer {
  border-top: 1px solid rgb(16 18 20 / 8%);
  padding: 32px 0;
  background: var(--paper);
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--zinc-600);
  font-size: 0.9375rem;
  line-height: 1.5rem;
}

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

.footer-note {
  max-width: 82ch;
  color: var(--zinc-600);
  font-size: 0.9375rem;
  line-height: 1.625rem;
  text-wrap: pretty;
}

.legal-hero {
  padding: 58px 0 34px;
}

.legal-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
}

.legal-date {
  margin-top: 18px;
  color: var(--zinc-600);
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.legal-content {
  padding: 28px 0 76px;
  background: var(--white);
}

.prose {
  max-width: 74ch;
  color: var(--zinc-700);
  font-size: 1rem;
  line-height: 1.75;
}

.prose * + * {
  margin-top: 1.25rem;
}

.prose h2,
.prose h3,
.prose h4 {
  color: var(--ink-950);
  font-weight: 650;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}

.prose h2 {
  margin-top: 2.5rem;
  font-size: 1.75rem;
  line-height: 1.2;
}

.prose p {
  margin-bottom: 0;
  text-wrap: pretty;
}

.prose a {
  color: var(--signal-teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
}

.prose li + li {
  margin-top: 0.5rem;
}

.prose strong {
  color: var(--ink-950);
  font-weight: 650;
}

.prose code {
  border-radius: 6px;
  padding: 2px 5px;
  background: var(--zinc-100);
  color: var(--ink-950);
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace;
  font-size: 0.9375em;
}

.prose pre {
  overflow: auto;
  border-radius: var(--radius);
  padding: 16px;
  background: var(--ink-950);
  color: var(--white);
}

.prose pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 48px, 1120px);
  }

  .hero-copy,
  .section-heading p,
  .download p,
  .legal-date {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .button {
    font-size: 0.9375rem;
    line-height: 1.5rem;
  }

  .hero-points,
  .subtle,
  .metric-label,
  .feature dd {
    font-size: 0.9375rem;
    line-height: 1.625rem;
  }

  .metric {
    padding: 14px 16px;
  }

  .metric:first-child {
    padding-left: 0;
  }

  .metric:last-child {
    padding-right: 0;
  }

  .metric + .metric {
    border-top: 0;
    border-left: 1px solid rgb(16 18 20 / 8%);
  }

  .app-metrics {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .menu-button,
  .mobile-nav {
    display: none;
  }

  .hero {
    padding: 90px 0 96px;
  }

  .hero-grid,
  .workflow,
  .download-box {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .mockup-wrap {
    display: block;
  }

  .hero-points {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}
