:root {
    --font-family-default: Poppins;

    /* Colors */
    --color-background: #1a1a1a;
    --color-surface-1: #212121;
    --color-surface-2: #2a2a2a;
    --color-border: #616161;
    --color-border-subtle: #404040;

    --color-text-primary: #eaebef;
    --color-text-secondary: #b6b6b6;

    --color-brand-success: #51cd78;
    --color-brand-warning: #f5b74c;
    --color-brand-danger: #f76f61;
    --color-brand-info: #3b82f6;

    --color-success-bg: rgba(81, 205, 120, 0.10);
    --color-warning-bg: rgba(245, 183, 76, 0.10);
    --color-danger-bg: rgba(247, 111, 97, 0.10);
    --color-info-bg: rgba(59, 130, 246, 0.10);

    --color-success-border: rgba(81, 205, 120, 0.18);
    --color-warning-border: rgba(245, 183, 76, 0.18);
    --color-danger-border:  rgba(247, 111, 97, 0.18);
    --color-info-border: rgba(59, 130, 246, 0.18);

    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-5xl: 3rem;

    /* Spacing Scale */
    --space-2xs: 0.15rem;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);

    /* ── Monospace font ── */
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Monaco, Consolas, monospace;

    /* ── Light-theme surfaces ── */
    --color-paper:          #ffffff;
    --color-paper-2:        #fafaf9;
    --color-paper-3:        #f4f4f2;
    --color-paper-4:        #ebebe7;
    --color-border-light:   #e5e5e2;
    --color-border-light-2: #d9d9d4;
    --color-ink:            #0b0b0b;
    --color-ink-2:          #111214;
    --color-text-body:      #363636;
    --color-text-muted:     #6b6b66;

    /* ── Dark UI components ── */
    --color-border-dark:    #242424;
    --color-code-bg:        #1e1e1e;
    --color-code-border:    #333333;
    --color-code-text:      #d4d4cf;
    --color-code-comment:   #6a6a64;
    --color-code-keyword:   #7aa9ff;
    --color-footer-bg:      #0d0d0d;
    --color-footer-link:    #8a8a85;

    /* ── Third-party brand ── */
    --color-postman-brand: #ff6c37;

    /* ── Semantic on-light colors ── */
    --color-brand-success-on-light: #1d7a3a;
    --color-brand-warning-on-light: #8a5e10;
    --color-brand-danger-on-light:  #a6382c;
    --color-brand-info-on-light:    #1e4fc4;

    /* ── Brand-success alpha variants ── */
    --color-brand-success-tint:          rgba(81, 205, 120, 0.12);
    --color-brand-success-border:        rgba(81, 205, 120, 0.28);
    --color-brand-success-border-strong: rgba(81, 205, 120, 0.50);
    --color-brand-success-glow:          rgba(81, 205, 120, 0.55);
}
body {
    background-color: var(--color-background);
    color: var(--color-text-primary);
    transition: background-color 0.1s, color 0.1s;
    margin: 0;
    min-width: 0;
    font-family: var(--font-family-default), sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* ── Landing-page styles ─────────────────────────── */

[hidden] { display: none !important; }


.l-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Eyebrow labels (monospace meta) ──────────────── */
.l-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-success);
  padding: 5px 12px;
  border: 1px solid var(--color-brand-success-border);
  border-radius: 3px;
  background: var(--color-success-bg);
  margin-bottom: 24px;
}

/* Section headers */
.l-section-header {
  text-align: center;
  margin-bottom: 44px;
}
.l-section-h2 {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: pretty;
}
.l-section-sub {
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  margin: 0;
  text-wrap: pretty;
}

.l-code-ai {
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  text-align: center;
  margin: var(--space-lg) 0 0;
  text-wrap: pretty;
}

.l-code-ai a {
  color: var(--color-brand-success-on-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Nav ─────────────────────────────────────────── */
.l-nav {
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(140%) blur(10px);
}
.l-nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-nav-logo {
  color: var(--color-brand-success);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.l-nav-mark {
  width: 22px;
  height: 22px;
  color: var(--color-brand-success);
  flex-shrink: 0;
}
.l-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.l-nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color 0.15s;
}
.l-nav-links a:hover { color: var(--color-text-primary); }
.l-nav-cta {
  background: var(--color-brand-success);
  color: var(--color-ink) !important;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.82rem !important;
  transition: filter 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 4px 14px -6px var(--color-brand-success-border-strong);
}
.l-nav-cta:hover { filter: brightness(1.05); color: var(--color-ink) !important; }

.l-nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--color-border-subtle);
  padding: 7px 9px;
  border-radius: 6px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.l-nav-hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--color-text-secondary);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.l-nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.l-nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.l-nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.l-hero {
  background:
    radial-gradient(900px 420px at 50% -100px, var(--color-brand-success-tint), transparent 60%),
    radial-gradient(600px 260px at 50% 100%, rgba(81,205,120,0.06), transparent 70%),
    var(--color-background);
  padding: 88px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.l-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000 40%, transparent 100%);
  pointer-events: none;
}
.l-hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.l-hero h1 {
  color: var(--color-text-primary);
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.l-hero h1 em {
  color: var(--color-brand-success);
  font-style: normal;
  position: relative;
}
.l-hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 3px;
  background: currentColor;
  opacity: 0.35;
  border-radius: 2px;
}
.l-hero-sub {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
  text-wrap: pretty;
}
.l-hero-sub strong { color: var(--color-text-primary); font-weight: 500; }
.l-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.btn {
  display: inline-block;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--color-brand-success);
  color: var(--color-background);
  border: 1px solid var(--color-brand-success);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 6px 20px -8px var(--color-brand-success-glow);
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px var(--color-brand-success-glow);
}
.l-hero-ctas .btn {
  padding: 13px 28px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.l-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  font-size: 0.95rem;
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s;
  background: rgba(255,255,255,0.02);
}
.l-btn-ghost:hover {
  border-color: var(--color-border);
  background: rgba(255,255,255,0.04);
}

/* ── Install tabs (hero) ─────────────────────────── */
.l-install {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}
.l-install-tabs {
  display: flex;
  gap: 2px;
}
.l-install-body {
  display: grid;
  width: 100%;
  position: relative;
}
/* All panels occupy the same grid cell so inactive ones still set the width */
.l-install-cmd {
  grid-column: 1;
  grid-row: 1;
}
/* Override global [hidden]{display:none} — use visibility so the element
   stays in the grid and contributes to width measurement */
.l-install-body .l-install-cmd[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}
.l-install-tab {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-surface-2);
  border-bottom: none;
  padding: 6px 16px;
  border-radius: 5px 5px 0 0;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.1s, color 0.1s, border-color 0.1s;
}
.l-install-tab.active {
  background: var(--color-code-bg);
  color: var(--color-text-primary);
  border-color: var(--color-code-border);
}
.l-install-tab:hover:not(.active) {
  color: var(--color-text-primary);
}
.l-install-cmd {
  display: block;
  background: var(--color-code-bg);
  border: 1px solid var(--color-code-border);
  border-radius: 0 8px 8px 8px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-text-primary);
  padding: 16px 26px;
  width: 660px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
  white-space: nowrap;
  overflow-x: auto;
}
.l-install-cmd .l-prompt {
  color: var(--color-brand-success);
  margin-right: 10px;
  user-select: none;
}

/* ── Hero live meter ─────────────────────────────── */
.l-hero-meter {
  width: 660px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 44px auto 0;
  background: var(--color-surface-1);
  border: 1px solid var(--color-surface-2);
  border-radius: 10px;
  padding: 16px 20px 14px;
  text-align: left;
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.6);
}
.l-meter-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.l-meter-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.l-meter-spec { color: var(--color-text-primary); text-transform: none; }
.l-meter-ops {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}
.l-meter-ops b { color: var(--color-brand-success); font-weight: 500; font-variant-numeric: tabular-nums; }
.l-meter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.l-meter-cell { display: flex; flex-direction: column; gap: 6px; }
.l-meter-cell-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.l-meter-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.l-meter-value {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.l-meter-pct {
  font-size: 0.68rem;
  color: var(--color-text-secondary);
  margin-left: 1px;
  font-weight: 400;
}
.l-meter-bar {
  display: block;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--color-surface-2);
}
.l-meter-fill { height: 100%; display: block; }
.l-meter-seg-ok { background: linear-gradient(90deg, var(--color-brand-success), #45b865); }
.l-meter-seg-mid { background: linear-gradient(90deg, var(--color-brand-warning), #e09f2c); }
.l-meter-seg-bad { background: linear-gradient(90deg, var(--color-brand-danger), #e55a4d); }
.l-meter-denom {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-text-secondary);
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
}

/* ── Screenshot section ──────────────────────────── */
.l-screenshot {
  background: var(--color-paper-2);
  padding: 72px 24px 64px;
  border-top: 1px solid var(--color-border-light);
  text-align: center;
}
.l-screenshot .l-container { margin-bottom: 40px; }
.l-screenshot-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}
.l-browser-frame {
  background: var(--color-paper);
  border: 1px solid var(--color-border-light-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px -24px rgba(0,0,0,0.18), 0 4px 12px -4px rgba(0,0,0,0.06);
}
.l-browser-bar {
  background: var(--color-paper-3);
  border-bottom: 1px solid var(--color-border-light);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.l-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.l-dot-r { background: var(--color-brand-danger); }
.l-dot-y { background: var(--color-brand-warning); }
.l-dot-g { background: var(--color-brand-success); }
.l-url-bar {
  background: var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: 3px 12px;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  margin-left: 8px;
}
.l-browser-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.l-screenshot-bridge {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 36px auto;
  max-width: 560px;
  font-style: italic;
  line-height: 1.55;
}

/* ── Code section ─────────────────────────────────── */
.l-code-section {
  background: var(--color-paper);
  padding: 88px 24px;
  border-top: 1px solid var(--color-border-light);
}
.l-code-wrap {
  max-width: 1040px;
  margin: 0 auto;
}
.l-code-tabs {
  display: flex;
  gap: 4px;
}
.l-code-tab {
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 6px 6px 0 0;
  background: var(--color-paper-4);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-light-2);
  border-bottom: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.1s, color 0.1s;
}
.l-code-tab.active {
  background: var(--color-ink-2);
  color: var(--color-text-primary);
  border-color: var(--color-ink-2);
}
.l-code-panel {
  background: var(--color-ink-2);
  border: 1px solid var(--color-ink-2);
  border-radius: 0 10px 10px 10px;
  padding: 24px 28px;
  overflow-x: auto;
  box-shadow: 0 20px 50px -28px rgba(0,0,0,0.25);
  position: relative;
}
.l-code-panel pre {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-code-text);
}
.l-code-panel code { background: none; border: none; padding: 0; font-size: inherit; }
.lc { color: var(--color-code-comment); font-style: italic; }
.lk { color: var(--color-code-keyword); }
.ls { color: var(--color-brand-warning); }

/* ── Features ─────────────────────────────────────── */
.l-features {
  background: var(--color-paper-2);
  padding: 88px 24px;
  border-top: 1px solid var(--color-border-light);
}
.l-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.l-feature-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  background: var(--color-paper);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.l-feature-card:hover {
  border-color: var(--color-border-light-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.15);
}
.l-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.l-feature-icon svg { width: 20px; height: 20px; }
.l-ico-success { background: var(--color-brand-success-tint); color: var(--color-brand-success-on-light); }
.l-ico-warning { background: var(--color-warning-bg); color: var(--color-brand-warning-on-light); }
.l-ico-danger  { background: var(--color-danger-bg);  color: var(--color-brand-danger-on-light); }
.l-ico-info    { background: var(--color-info-bg);    color: var(--color-brand-info-on-light); }

.l-feature-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.l-feature-card p {
  font-size: 0.86rem;
  color: var(--color-text-body);
  margin: 0;
  line-height: 1.6;
  text-wrap: pretty;
}
.l-feature-card code {
  background: var(--color-paper-3);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--color-ink);
  font-family: var(--font-mono);
}

/* ── Postman callout ──────────────────────────────── */
.l-postman {
  background: var(--color-ink-2);
  padding: 88px 24px;
  border-top: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}
.l-postman::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 30%, transparent 90%);
  pointer-events: none;
}
.l-postman .l-container { position: relative; }
.l-postman-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 56px;
  align-items: center;
}
.l-postman-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.l-postman-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 0 24px;
  line-height: 1.65;
  max-width: 540px;
  text-wrap: pretty;
}
.l-postman-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.l-postman-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--color-text-primary);
  line-height: 1.55;
}
.l-step-num {
  background: var(--color-brand-success-tint);
  color: var(--color-brand-success);
  border: 1px solid var(--color-brand-success-border);
  border-radius: 50%;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.l-postman-step code {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: var(--color-brand-success);
}
.l-postman-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: stretch;
  justify-content: center;
  min-width: 280px;
}
.l-postman-flow {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.l-flow-node {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-flow-node-postman { border-left: 3px solid var(--color-postman-brand); }
.l-flow-node-report { border-left: 3px solid var(--color-brand-success); padding-right: 56px; }
.l-flow-glyph {
  width: 34px; height: 34px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.l-flow-node-postman .l-flow-glyph { background: rgba(255,108,55,0.14); color: var(--color-postman-brand); }
.l-flow-node-report .l-flow-glyph { background: var(--color-brand-success-tint); color: var(--color-brand-success); }
.l-flow-glyph svg { width: 20px; height: 20px; }
.l-flow-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.l-flow-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text-primary);
  font-weight: 500;
}
.l-flow-sub {
  font-size: 0.64rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.l-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  padding: 0;
  height: 14px;
  transform: rotate(90deg);
}
.l-flow-arrow svg { width: 40px; height: 10px; }
.l-flow-arrow-label { display: none; }
.l-flow-node-report .l-pro-chip {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.l-pro-chip {
  display: inline-block;
  background: var(--color-brand-success-tint);
  color: var(--color-brand-success);
  border: 1px solid var(--color-brand-success-border);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.l-postman-also {
  padding: 14px 16px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 10px;
  background: transparent;
  margin-top: 0;
}
.l-also-head {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.l-also-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.l-also-list li {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--color-text-primary);
  position: relative;
  padding-left: 14px;
}
.l-also-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.35);
}

/* ── Integrations ─────────────────────────────────── */
.l-integrations {
  background: var(--color-paper);
  padding: 80px 24px;
  border-top: 1px solid var(--color-border-light);
}
.l-integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.l-int-badge {
  background: var(--color-paper-2);
  border: 1px solid var(--color-border-light);
  color: var(--color-ink);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color 0.15s, background 0.15s;
}
.l-int-badge:hover { border-color: var(--color-border-light-2); background: var(--color-paper); }

/* ── Editions ─────────────────────────────────────── */
.l-editions {
  background: var(--color-paper-2);
  padding: 88px 24px;
  border-top: 1px solid var(--color-border-light);
}
.l-editions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.l-edition-card {
  border: 1px solid var(--color-border-light-2);
  border-radius: 14px;
  padding: 30px 28px;
  background: var(--color-paper);
  display: flex;
  flex-direction: column;
}
.l-edition-pro {
  border-color: var(--color-brand-success-border-strong);
  background:
    linear-gradient(180deg, rgba(81,205,120,0.04), transparent 40%),
    var(--color-paper);
  box-shadow: 0 10px 30px -18px var(--color-brand-success-border);
  position: relative;
}
.l-edition-pro::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--color-brand-success);
  color: var(--color-ink);
  padding: 3px 9px;
  border-radius: 3px;
}
.l-edition-head {
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
  min-height: 100px;
}
.l-edition-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.l-edition-pro h3 { color: var(--color-brand-success-on-light); }
.l-edition-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
  min-height: 1.4em;
}
.l-price-amount {
  font-family: var(--font-mono);
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--color-brand-success-on-light);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.l-price-unit {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  font-weight: 400;
  font-family: var(--font-mono);
}
.l-price-note {
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  margin: 8px 0 0 0;
  line-height: 1.5;
  font-family: var(--font-mono);
}
.l-price-note a { color: var(--color-brand-success-on-light); text-decoration: underline; text-underline-offset: 2px; }
.l-free { color: var(--color-brand-success-on-light); font-weight: 600; font-size: var(--font-size-3xl); font-family: var(--font-mono); line-height: 1; }
.l-edition-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-edition-item {
  font-size: 0.85rem;
  color: var(--color-text-body);
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}
.l-edition-item::before {
  content: "✓";
  color: var(--color-brand-success);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.55;
}
.l-edition-item code {
  font-family: var(--font-mono);
  font-size: 0.82em;
  color: var(--color-ink);
  background: var(--color-paper-3);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
}
.l-edition-extra::before { color: var(--color-brand-success); }
.l-edition-extra { color: var(--color-ink); font-weight: 500; }

.l-edition-cta-wrap {
  margin-top: auto;
  padding-top: 20px;
}
.l-edition-btn {
  display: block;
  text-align: center;
  padding: 11px 24px;
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-md);
}
.l-edition-btn-ghost {
  border: 1px solid var(--color-border-light-2);
  color: var(--color-text-body);
  background: var(--color-paper-3);
  transition: background 0.15s, border-color 0.15s;
}
.l-edition-btn-ghost:hover {
  background: var(--color-paper-4);
  border-color: var(--color-border-light-2);
}

/* ── Final CTA ─────────────────────────────────────── */
.l-cta {
  background:
    radial-gradient(800px 360px at 50% 0%, var(--color-success-bg), transparent 60%),
    var(--color-background);
  padding: 96px 24px 80px;
  text-align: center;
  border-top: 1px solid var(--color-background);
  position: relative;
}
.l-cta .l-eyebrow { margin-bottom: 22px; }
.l-cta h2 {
  color: var(--color-text-primary);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.l-cta h2 em {
  color: var(--color-brand-success);
  font-style: italic;
  font-weight: 500;
}
.l-cta-sub {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  margin: 0 0 32px;
}
.l-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.l-cta-btns .btn,
.l-cta-btns .l-btn-ghost {
  padding: 13px 28px;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
}

/* ── Footer ────────────────────────────────────────── */
.l-footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-background);
  padding: 28px 24px;
}
.l-footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.l-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-nav-logo-footer {
  font-size: 0.95rem;
}
.l-footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.l-footer-copy a {
  color: var(--color-brand-success);
  text-decoration: none;
}
.l-footer-copy a:hover { text-decoration: underline; }
.l-footer-links {
  display: flex;
  gap: 22px;
}
.l-footer-links a {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-footer-link);
  text-decoration: none;
  transition: color 0.15s;
}
.l-footer-links a:hover { color: #c5c5bf; }

/* ── Hero meter caption (sits below the widget) ───── */
.l-meter-caption {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  margin: 14px auto 0;
  max-width: 660px;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

/* ── Copy button (overlay on code surfaces) ───────── */
.l-copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  padding: 6px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  z-index: 2;
}
.l-copy-btn svg { width: 14px; height: 14px; display: block; }
.l-copy-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-text-primary);
  border-color: rgba(255,255,255,0.2);
}
.l-copy-btn.copied {
  background: var(--color-brand-success-tint);
  border-color: var(--color-brand-success-border);
  color: var(--color-brand-success);
}
.l-copy-btn.copied::after {
  content: "Copied";
  margin-left: 5px;
}

/* Inside install widget — sit just inside the rounded code box */
.l-install-body .l-copy-btn { top: 10px; right: 10px; }

/* ── Proxy block ──────────────────────────────────── */
.l-proxy {
  background: var(--color-ink-2);
  padding: 88px 24px;
  border-top: 1px solid var(--color-border-dark);
  position: relative;
  overflow: hidden;
}
.l-proxy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 30%, transparent 90%);
  pointer-events: none;
}
.l-proxy .l-container { position: relative; }
.l-proxy-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}
.l-proxy-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.l-proxy-content h3 code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  color: var(--color-brand-success);
  font-weight: 600;
  background: none;
  padding: 0;
}
.l-proxy-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.65;
  text-wrap: pretty;
}
.l-proxy-content p strong {
  color: var(--color-text-primary);
  font-weight: 500;
}
.l-proxy-code {
  position: relative;
  background: var(--color-code-bg);
  border: 1px solid var(--color-code-border);
  border-radius: 10px;
  padding: 16px 26px;
}
.l-proxy-code pre {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow-x: auto;
  line-height: 1.5;
}
.l-proxy-code .l-prompt {
  color: var(--color-brand-success);
  margin-right: 10px;
  user-select: none;
}

/* ── Responsive (≤900px) ──────────────────────────── */
@media (max-width: 900px) {
  .l-features-grid { grid-template-columns: repeat(2, 1fr); }
  .l-postman-inner { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .l-postman-aside { text-align: left; }
  .l-meter-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── Responsive (≤720px) ──────────────────────────── */
@media (max-width: 720px) {
  .l-nav-hamburger { display: flex; }
  #l-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border-dark);
    padding: 16px 24px;
    flex-direction: column;
    gap: 0;
  }
  #l-nav-links.l-nav-open { display: flex; }
  #l-nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
  }
  #l-nav-links a:last-child { border-bottom: none; }
  #l-nav-links .l-nav-cta {
    display: block;
    text-align: center;
    padding: 11px 20px;
    margin-top: 8px;
    border-radius: 6px;
  }

  .l-hero { padding: 56px 20px 48px; }
  .l-hero h1 { font-size: 2.1rem; }
  .l-hero-sub { font-size: 0.92rem; }
  .l-hero-ctas { flex-direction: column; align-items: stretch; }
  .l-hero-ctas .btn,
  .l-hero-ctas .l-btn-ghost {
    text-align: center;
    justify-content: center;
  }
  .l-install { width: 100%; }
  .l-install-cmd {
    min-width: 0;
    width: 100%;
    font-size: 0.78rem;
    white-space: normal;
    word-break: break-all;
  }
  .l-hero-meter { padding: 14px 16px; }
  .l-meter-head { flex-direction: column; gap: 6px; align-items: flex-start; }

  .l-screenshot { padding: 48px 16px 40px; }
  .l-section-h2 { font-size: 1.5rem; }

  .l-code-section { padding: 56px 16px; }
  .l-code-panel { padding: 18px 20px; }
  .l-code-panel pre { font-size: 0.78rem; }

  .l-features { padding: 56px 16px; }
  .l-features-grid { grid-template-columns: 1fr; }

  .l-postman { padding: 56px 16px; }
  .l-postman-content h3 { font-size: 1.35rem; }

  .l-proxy { padding: 56px 16px; }
  .l-proxy-content h3 { font-size: 1.35rem; }
  .l-proxy-code { padding: 14px 18px; }
  .l-proxy-code pre { font-size: 0.82rem; }

  .l-integrations { padding: 48px 16px; }
  .l-integration-grid { gap: 6px; }
  .l-int-badge { font-size: 0.78rem; padding: 7px 12px; }

  .l-editions { padding: 56px 16px; }
  .l-editions-grid { grid-template-columns: 1fr; max-width: 100%; }

  .l-cta { padding: 64px 20px 52px; }
  .l-cta h2 { font-size: 1.6rem; }
  .l-cta-btns { flex-direction: column; align-items: stretch; }
  .l-cta-btns .btn,
  .l-cta-btns .l-btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .l-footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .l-footer-brand { flex-direction: column; gap: 10px; }
  .l-footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}
