/* ═══════════════════════════════════════════
   BrowseAgent Landing — Extension-Matched Style
   Dark warm minimal brutalist
   ═══════════════════════════════════════════ */

:root {
  /* Core palette — adjusted for higher contrast */
  --bg: #12120e;
  /* main background — warm dark */
  --bg-panel: #1a1a14;
  /* panel / card bg */
  --bg-card: #24241c;
  /* card surface */
  --bg-card-alt: #2c2c22;
  /* card hover / alt */
  --bg-input: #303026;
  /* input/field bg */

  --text-primary: #f2efe0;
  /* warm off-white */
  --text-secondary: #b5b08d;
  /* clearer secondary text */
  --text-muted: #8a8563;
  /* readable muted text */

  --gold: #d6b05e;
  /* amber — active / accent ONLY */
  --gold-dim: rgba(214, 176, 94, 0.08);
  --gold-border: rgba(214, 176, 94, 0.25);

  --border: rgba(255, 251, 230, 0.10);
  --border-mid: rgba(255, 251, 230, 0.15);
  --border-hi: rgba(255, 251, 230, 0.25);

  --green: #4a7c5a;
  --red: #8b3a3a;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Menlo', monospace;

  --transition: 0.2s ease;
}

/* ═══════════════════════════════════════════
   Reset & base
   ═══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* ═══════════════════════════════════════════
   Container
   ═══════════════════════════════════════════ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav--scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  border-radius: 4px;
  width: 22px;
  height: 22px;
}

.nav__logo-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.nav__logo-version {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  margin-left: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 18px 16px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-secondary);
  transition: var(--transition);
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu__link:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: #0f0f08;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
}

.btn--primary:hover {
  background: #d4af6b;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(214, 176, 94, 0.22);
}

.btn--outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
}

.btn--outline:hover {
  color: var(--text-primary);
  border-color: var(--border-hi);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 0;
}

.btn--ghost:hover {
  color: var(--text-secondary);
}

.btn--sm {
  padding: 7px 14px;
  font-size: 11px;
}

.btn--lg {
  padding: 12px 24px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   Section helpers
   ═══════════════════════════════════════════ */

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e2c77d;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.section-header {
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════ */

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e2c77d;
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero__title {
  font-size: clamp(44px, 8vw, 84px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero {
  justify-content: center;
  text-align: center;
  padding: 0;
}

.hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__badge {
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1;
  margin-bottom: 24px;
}

.hero__subtitle {
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Hero stats bar */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 24px;
  flex: 1;
  background: var(--bg-panel);
}

.hero__stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-mono);
  line-height: 1;
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__stat-sep {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}

/* Screenshot */
.hero__screenshot {
  position: relative;
}

.hero__screenshot-frame {
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__screenshot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.hero__screenshot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero__screenshot-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 8px;
  flex: 1;
  max-width: 380px;
}

.hero__screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.hero__screenshot-caption {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 12px;
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════
   Social proof strip
   ═══════════════════════════════════════════ */

.social-proof {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-proof__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social-proof__item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   Features
   ═══════════════════════════════════════════ */

.features {
  padding: 100px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-panel);
  padding: 28px 24px;
  transition: background var(--transition), transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.feature-card:hover {
  background: var(--bg-card);
}

.feature-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-card__label svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.feature-card__title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-card__example {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.feature-card__text code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   Efficiency
   ═══════════════════════════════════════════ */

.efficiency {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.efficiency__grid {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.eff-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
  transition: background var(--transition), transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.eff-row:last-child {
  border-bottom: none;
}

.eff-row:hover {
  background: var(--bg-card);
}

.eff-row__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.eff-row__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.eff-row__desc code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   Tools section — category cards
   ═══════════════════════════════════════════ */

.tools-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.tool-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tool-cat {
  background: var(--bg-panel);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--transition), transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.tool-cat:hover {
  background: var(--bg-card);
}

.tool-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tool-cat__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-cat__icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-cat__icon--read {
  background: rgba(125, 169, 201, 0.12);
  color: #7da9c9;
}

.tool-cat__icon--nav {
  background: rgba(143, 188, 143, 0.12);
  color: #8fbc8f;
}

.tool-cat__icon--act {
  background: var(--gold-dim);
  color: var(--gold);
}

.tool-cat__icon--ext {
  background: rgba(196, 157, 184, 0.12);
  color: #c49db8;
}

.tool-cat__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.tool-cat__count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.tool-cat__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.workflow-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 22px;
  transition: transform 0.25s ease, border-color var(--transition), background var(--transition);
}

.workflow-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.workflow-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.workflow-card__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.workflow-card__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.workflow-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.workflow-card__caption {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold);
  background: var(--gold-dim);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-card__image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-mid);
  background: var(--bg-panel);
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
}

.tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tool-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  transition: var(--transition);
}

.tool-cat:hover .tool-chip {
  border-color: var(--border-hi);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .tool-cats {
    grid-template-columns: 1fr;
  }
}


.tool-row__name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  padding: 0;
  white-space: nowrap;
}

.tool-row__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  justify-self: start;
  white-space: nowrap;
}

/* Category badge colours */
.tool-row__cat--read {
  color: #7da9c9;
  background: rgba(125, 169, 201, 0.10);
  border: 1px solid rgba(125, 169, 201, 0.18);
}

.tool-row__cat--nav {
  color: #8fbc8f;
  background: rgba(143, 188, 143, 0.10);
  border: 1px solid rgba(143, 188, 143, 0.18);
}

.tool-row__cat--act {
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
}

.tool-row__cat--ext {
  color: #c49db8;
  background: rgba(196, 157, 184, 0.10);
  border: 1px solid rgba(196, 157, 184, 0.18);
}

.tool-row__cat--done {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.tool-row__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 16px;
}

.tool-row__desc code {
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--gold);
}

@media (max-width: 768px) {
  .tool-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 8px;
    padding: 12px 16px;
  }

  .tool-row__desc {
    grid-column: 1 / -1;
    padding-left: 0;
    margin-top: 2px;
  }
}


/* ═══════════════════════════════════════════
   How it works
   ═══════════════════════════════════════════ */

.how-it-works {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.step {
  background: var(--bg-panel);
  padding: 32px 24px;
}

.step__index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.step__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step__text em {
  color: var(--gold);
  font-style: normal;
}

/* Limits row */
.limits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.limit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  background: var(--bg-panel);
}

.limit-item__val {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.limit-item__key {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════════
   Integrations
   ═══════════════════════════════════════════ */

.integrations {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-panel);
}

.product-panel--providers {
  margin-bottom: 28px;
}

.product-panel__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.product-panel__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e2c77d;
}

.product-panel__title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.product-panel__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.product-panel__text code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--gold);
}

.product-panel__list {
  padding-left: 18px;
  color: var(--text-secondary);
  display: grid;
  gap: 10px;
}

.product-panel__list li {
  font-size: 14px;
  line-height: 1.6;
}

.product-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-panel__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.03);
}

.product-panel__image-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 14px;
  background: radial-gradient(circle at top, rgba(214, 176, 94, 0.10), transparent 52%), var(--bg-card);
  border: 1px solid var(--border-mid);
}

.product-panel__image {
  border-radius: 16px;
  border: 1px solid var(--border-mid);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.product-panel__image--narrow {
  width: min(100%, 320px);
}

.panel-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: start;
  justify-content: space-between;
  overflow-x: auto;
}

.panel-strip__card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.panel-strip--single {
  display: block;
  overflow: visible;
}

.panel-strip__card--single {
  width: 100%;
}

.panel-strip__image {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  border: 1px solid var(--border-mid);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.panel-strip__image--wide {
  max-width: 100%;
}

.integrations__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.int-card {
  background: var(--bg-panel);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: background var(--transition), transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.int-card:hover {
  background: var(--bg-card);
}

.int-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.int-card:hover .int-card__icon {
  border-color: var(--border-hi);
  color: var(--text-primary);
}

.int-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.int-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .integrations__icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .integrations__icons {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   Providers
   ═══════════════════════════════════════════ */

.providers {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.providers__list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.provider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
  transition: background var(--transition), transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.provider-row:last-child {
  border-bottom: none;
}

.provider-row:hover {
  background: var(--bg-card);
}

.provider-row--dim {
  opacity: 0.55;
}

.provider-row__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.provider-row__emoji {
  font-size: 24px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-row__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.provider-row__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

.provider-row__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  padding-left: 20px;
  border-left: 1px solid var(--border);
  align-self: stretch;
  justify-content: center;
}

.provider-row__price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.provider-row__tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e2c77d;
  padding: 2px 8px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
}

.provider-row__tag--muted {
  color: var(--text-muted);
  border-color: var(--border);
  background: transparent;
}

.provider-row__desc code {
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--text-secondary);
}

.providers__note {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Setup steps */
.providers__setup {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.setup-step {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-panel);
}

.setup-step__n {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  min-width: 24px;
  padding-top: 2px;
}

.setup-step__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.setup-step__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.setup-step__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */

.cta {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.cta__inner {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 48px;
  background: var(--bg-panel);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.cta__left {
  flex: 1;
}

.cta__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 380px;
}

.cta__subnote {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.cta__right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex-shrink: 0;
  min-width: 240px;
}

.cta__right .btn {
  justify-content: center;
  width: 100%;
}

.cta__note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  letter-spacing: 0.02em;
}

.cta__note a {
  color: var(--text-muted);
  text-decoration: underline;
  transition: var(--transition);
}

.cta__note a:hover {
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════ */

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

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

.footer__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.footer__logo img {
  border-radius: 3px;
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
.footer__giant {
  font-size: clamp(60px, 15vw, 220px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--text-primary);
  line-height: 0.8;
  margin-top: 80px;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   Scroll reveal
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ═══════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tools__grid {
    grid-template-columns: 1fr;
  }

  .setup-steps {
    grid-template-columns: 1fr;
  }

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

  .eff-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .eff-row__title {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-grid,
  .product-panel {
    grid-template-columns: 1fr;
  }

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

  .cta__inner {
    flex-direction: column;
  }

  .cta__right {
    align-items: flex-start;
  }

  .workflow-card__image {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav .btn--sm {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

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

  .social-proof__inner {
    gap: 16px;
  }

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

  .product-panel {
    padding: 20px;
  }

  .workflow-card__image {
    min-height: 300px;
  }

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

  .provider-row__right {
    align-items: flex-start;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .integration-row__desc {
    display: none;
  }
}
