/* ============================================================
   Pinfy — Landing Page
   Gold-on-black identity, reused from the product's own design
   tokens (signal/ink scale, glass shadows, 4xl radii).
   ============================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/inter-800.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/jbmono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/jbmono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/jbmono-600.woff2') format('woff2');
}

/* ---------- Tokens ----------
   Deliberately dark-only: the product's own identity is
   documented as "gold-on-black" and both existing Pinfy apps
   default to dark mode. Values painted explicitly, no
   prefers-color-scheme branching. */
:root {
  --bg: #09090b;
  --bg-canvas: #111114;
  --bg-raised: #18181b;
  --bg-raised-2: #1d1d20;

  --border: rgba(228, 197, 138, 0.12);
  --border-strong: rgba(228, 197, 138, 0.26);
  --border-hairline: rgba(245, 242, 235, 0.08);

  --text: #f5f2eb;
  --text-secondary: #b4b4bb;
  --text-tertiary: #71717a;

  --accent: #c8a96a;
  --accent-high: #e4c58a;
  --accent-low: #a88446;
  --accent-fg: #09090b;
  --accent-soft: rgba(200, 169, 106, 0.12);
  --accent-soft-strong: rgba(200, 169, 106, 0.2);

  --success: #46b27b;
  --success-soft: rgba(70, 178, 123, 0.14);

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container: 1120px;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-float: 0 2px 4px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.28), 0 20px 44px rgba(0, 0, 0, 0.24);
  --shadow-glow: 0 0 0 1px rgba(200, 169, 106, 0.28), 0 8px 30px rgba(200, 169, 106, 0.14);
  --ease-glass: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
input {
  font: inherit;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Base ---------- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 900px 520px at 82% -8%, rgba(200, 169, 106, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 480px at -10% 18%, rgba(200, 169, 106, 0.08), transparent 55%);
  pointer-events: none;
}

::selection {
  background: var(--accent-soft-strong);
  color: var(--accent-high);
}

:focus-visible {
  outline: 2px solid var(--accent-high);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.mono {
  font-family: var(--font-mono);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-high);
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

section {
  padding: 112px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-top: 14px;
  color: var(--text);
}

.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 54ch;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease-glass), box-shadow 0.2s var(--ease-glass), background 0.2s var(--ease-glass);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-high), var(--accent));
  color: var(--accent-fg);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(200, 169, 106, 0.4), 0 12px 34px rgba(200, 169, 106, 0.22);
}

.btn-ghost {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  background: var(--bg-raised-2);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13.5px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 76px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand img {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
}

/* ---------- Hero ---------- */
.hero {
  padding: 86px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.06;
}

.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--accent-high), var(--accent-low));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-meta strong {
  font-family: var(--font-mono);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.hero-meta span {
  font-size: 12.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ---------- Terminal / API demo ---------- */
.hero-visual {
  position: relative;
}

.terminal {
  background: var(--bg-canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  position: relative;
}

.terminal::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-hairline);
}

.terminal-dots {
  display: flex;
  gap: 7px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-raised-2);
}

.terminal-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

.terminal-body {
  padding: 22px 22px 24px;
  font-family: var(--font-mono);
  font-size: 13.2px;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: auto;
}

.terminal-body .req {
  color: var(--text-secondary);
}

.terminal-body .method {
  color: var(--accent-high);
  font-weight: 600;
}

.terminal-body .string {
  color: #e4c58a;
}

.terminal-body .key {
  color: var(--text);
}

.terminal-body .comment {
  color: var(--text-tertiary);
}

.terminal-divider {
  margin: 14px 0;
  border-top: 1px dashed var(--border);
}

.terminal-body .success-line {
  color: var(--success);
}

.status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--bg-canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
}

.status-dot-wrap {
  position: relative;
  width: 10px;
  height: 10px;
}

.status-dot-wrap .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  position: relative;
  z-index: 1;
}

.status-dot-wrap .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--success);
  animation: pulse-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.status-card-text strong {
  font-size: 13.5px;
  font-weight: 600;
}

.status-card-text span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-tertiary);
}

.status-card-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--success);
  background: var(--success-soft);
  padding: 4px 9px;
  border-radius: 999px;
}

.hero-visual-caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-tertiary);
  text-align: center;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70%,
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* ---------- Differentiator strip ---------- */
.strip {
  padding: 64px 0;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

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

.strip-item {
  background: var(--bg);
  padding: 30px 32px;
}

.strip-item .tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip-item.no .tag {
  color: var(--text-tertiary);
}

.strip-item.yes .tag {
  color: var(--accent-high);
}

.strip-item h3 {
  margin-top: 10px;
  font-size: 17px;
}

.strip-item p {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--bg-canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  border: 1px solid var(--border-strong);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step h3 {
  margin-top: 20px;
  font-size: 18px;
}

.step p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

.step code {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-high);
  background: var(--accent-soft);
  padding: 5px 9px;
  border-radius: 6px;
}

/* ---------- Feature grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform 0.25s var(--ease-glass), border-color 0.25s var(--ease-glass), box-shadow 0.25s var(--ease-glass);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-float);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-high);
}

.feature-icon svg {
  width: 19px;
  height: 19px;
}

.feature-card h3 {
  margin-top: 18px;
  font-size: 15.5px;
  font-weight: 600;
}

.feature-card p {
  margin-top: 8px;
  font-size: 13.8px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ---------- Dev experience ---------- */
.dev-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.dev-grid > * {
  min-width: 0;
}

.dev-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}

.dev-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dev-list .check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-high);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.dev-list .check svg {
  width: 12px;
  height: 12px;
}

.dev-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.dev-list p {
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-secondary);
}

.code-tabs {
  background: var(--bg-canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}

.code-tabs-bar {
  display: flex;
  border-bottom: 1px solid var(--border-hairline);
}

.code-tab {
  padding: 13px 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-tertiary);
  border-bottom: 2px solid transparent;
}

.code-tab.active {
  color: var(--accent-high);
  border-bottom-color: var(--accent);
}

.code-panel {
  display: none;
  padding: 22px;
  font-family: var(--font-mono);
  font-size: 12.8px;
  line-height: 1.8;
  color: var(--text-secondary);
  white-space: pre;
  overflow-x: auto;
}

.code-panel.active {
  display: block;
}

.code-panel .k {
  color: var(--accent-high);
}
.code-panel .s {
  color: #d6b478;
}
.code-panel .c {
  color: var(--text-tertiary);
}
.code-panel .f {
  color: #9cc2e0;
}

/* ---------- Self-hosting ---------- */
.host-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.host-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.host-item .feature-icon {
  width: 32px;
  height: 32px;
}

.host-item p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ---------- Pricing ---------- */
.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-canvas);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.16), transparent 70%);
  pointer-events: none;
}

.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-display .amount {
  font-family: var(--font-mono);
  font-size: 46px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.price-display .cur {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent-high);
}

.price-display .per {
  font-size: 14px;
  color: var(--text-tertiary);
}

.price-note {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-tertiary);
}

.instance-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-high);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.slider-block {
  margin-top: 36px;
}

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

.slider-row input[type='range'] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) var(--fill, 0%), var(--bg-raised-2) var(--fill, 0%));
  outline: none;
}

.slider-row input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-high), var(--accent));
  box-shadow: 0 0 0 4px rgba(9, 9, 11, 1), 0 0 0 5px var(--border-strong), var(--shadow-glow);
  cursor: pointer;
  transition: transform 0.15s var(--ease-glass);
}

.slider-row input[type='range']::-webkit-slider-thumb:hover {
  transform: scale(1.08);
}

.slider-row input[type='range']::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-high), var(--accent));
  cursor: pointer;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-tertiary);
}

.pricing-includes {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border-hairline);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-includes .check {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-includes .check svg {
  width: 10px;
  height: 10px;
}

.pricing-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pay-methods {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-tertiary);
}

.pay-methods span {
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 6px;
}

.pricing-enterprise {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
}

.pricing-enterprise a {
  color: var(--accent-high);
  border-bottom: 1px solid var(--border-strong);
}

/* ---------- Final CTA ---------- */
.cta {
  text-align: center;
}

.cta-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  background: linear-gradient(180deg, var(--bg-raised), var(--bg-canvas));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
}

.cta-card h2 {
  font-size: clamp(28px, 3.6vw, 36px);
}

.cta-card p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border-hairline);
  padding: 48px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.footer-brand img {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

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

.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-spring), transform 0.6s var(--ease-spring);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  section {
    padding: 84px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 48px;
  }
  .strip-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dev-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .host-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 560px) {
  .nav-actions .btn-ghost {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 30px 24px;
  }
  .pricing-includes {
    grid-template-columns: 1fr;
  }
  .host-card {
    padding: 26px;
  }
  .cta-card {
    padding: 44px 26px;
  }
  .hero-meta {
    gap: 20px;
  }
}
