/* AmeriList — Figma design (website-feedback) */
/* Fonts: cargar desde HTML (link Google Fonts), no @import aquí */

:root {
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --blue: #074eb9;
  --blue-bright: #0070ab;
  --navy: #252840;
  --navy-deep: #1e2033;
  --ink: #1e2033;
  --muted: #7d8087;
  --text-light: #eff2f9;
  --lime: #81e92f;
  --surface: #eff2f9;
  --white: #ffffff;
  --border: #dde6fb;
  --input-border: #e2e8f8;
  --gradient: linear-gradient(90deg, #0070ab 0%, #e31937 100%);
  --max: 1120px;
  --pad-section: clamp(1.5rem, 8vw, 135px);
  --pad-hero: clamp(1.5rem, 15vw, 300px);
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 1.75s;
  --reveal-stagger-duration: 1.45s;
  --reveal-stagger-step: 0.2s;
}

*, *::before, *::after { box-sizing: border-box; }
body.figma-page {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-bright); }

.figma-wrap { width: 100%; }
.figma-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

/* Header */
.figma-header {
  background: var(--surface);
  min-height: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.figma-header .figma-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 8vw, 130px);
  padding: 12px clamp(1.25rem, 4vw, 60px);
  width: 100%;
  max-width: none;
}
.figma-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.figma-logo img {
  width: auto;
  height: 42px;
  max-width: 162px;
  object-fit: contain;
  object-position: left center;
}
.figma-header nav { flex-shrink: 0; }
.figma-nav {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.figma-header .btn-gradient { flex-shrink: 0; }
.figma-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.figma-nav a:hover,
.figma-nav a[aria-current="page"] { color: var(--blue); }
.figma-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.figma-logo {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.figma-logo:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 15px;
  background: var(--gradient);
  color: #fff;
  font: 700 13px var(--font);
  border: none;
  border-radius: 58px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.btn-gradient:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(7, 78, 185, 0.35);
}

.btn-gradient-md {
  padding: 13px 23px;
  border-radius: 10px;
  font-size: 15px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 13px 25px;
  background: #fff;
  color: var(--blue);
  font: 600 15px var(--font);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.btn-white:hover {
  background: #f8faff;
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 13px 23px;
  background: var(--text-light);
  color: #434653;
  font: 700 15px var(--font);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.btn-light:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  font: 700 15px var(--font);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.btn-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 78, 185, 0.35);
}
.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
.btn-gradient .btn-icon,
.btn-gradient-md .btn-icon {
  filter: brightness(0) invert(1);
}
.btn-white .btn-icon {
  filter: brightness(0) saturate(100%);
  opacity: 0.85;
}
.btn-light .btn-icon {
  filter: brightness(0) saturate(100%);
  opacity: 0.75;
}

/* Phone strip */
.ph-strip {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
.ph-strip .figma-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: none;
  flex-wrap: wrap;
}
.ph-strip p { margin: 0; font-weight: 500; font-size: 14px; }
.ph-strip a {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}
.ph-strip a:hover { color: var(--lime); }

/* Hero */
.figma-hero {
  background: var(--navy);
  color: var(--text-light);
  text-align: center;
  padding: clamp(72px, 9vw, 96px) var(--pad-hero) clamp(68px, 8vw, 88px);
  min-height: clamp(420px, 55vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.figma-hero-content {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}
.figma-hero-badge {
  display: inline-block;
  margin: 0 0 28px;
  padding: 8px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.2;
  max-width: 100%;
}
.figma-hero h1 {
  margin: 0 auto 28px;
  max-width: 100%;
  font-size: clamp(2.1rem, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--text-light);
}
.figma-hero h1 .highlight {
  color: var(--lime);
  display: inline;
}
.figma-hero-lead {
  max-width: 938px;
  margin: 0 auto 20px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  color: var(--text-light);
}
.figma-hero-lead-sub {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  color: rgba(239, 242, 249, 0.88);
}
.figma-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

/* Stats — full width bar */
.figma-stats-bar {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 22px 0;
  box-sizing: border-box;
}
.figma-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  min-height: 196px;
  box-sizing: border-box;
}
.figma-stats .stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 34px clamp(12px, 3vw, 44px);
  text-align: center;
  min-height: 196px;
  box-sizing: border-box;
  cursor: default;
  border-right: none;
}
/* Floating vertical dividers (shorter than full cell height) */
.figma-stats .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 58%;
  min-height: 72px;
  max-height: 96px;
  background: #8c8f9c;
}
.figma-stats strong {
  display: block;
  font-size: 25px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1px;
  line-height: 1.6;
  transition:
    color 0.55s var(--reveal-ease),
    text-shadow 0.55s var(--reveal-ease);
}
.figma-stats span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--muted);
  line-height: 1.25;
  transition: color 0.55s var(--reveal-ease);
}
.figma-stats .stat:hover strong {
  color: var(--blue-bright);
  text-shadow:
    0 0 18px rgba(7, 78, 185, 0.45),
    0 0 36px rgba(0, 112, 171, 0.2);
}
.figma-stats .stat:hover span {
  color: var(--navy-deep);
}

/* Trust — light bar, 3 + 2 rows */
.figma-trust-bar {
  background: #eff2f9;
  padding: 48px clamp(1.5rem, 12vw, 200px);
}
.figma-trust-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.figma-trust-bar .trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.figma-trust-bar .trust-row--top {
  gap: 36px clamp(24px, 5vw, 72px);
}
.figma-trust-bar .trust-row--bottom {
  gap: 36px clamp(32px, 8vw, 100px);
}
.figma-trust-bar .trust-row--single {
  gap: clamp(16px, 3vw, 48px);
  max-width: 1120px;
  margin-inline: auto;
}
.figma-page--consumer .figma-hero--consumer {
  min-height: clamp(420px, 52vh, 520px);
}
.figma-trust-bar li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #434653;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  transition: transform 0.25s ease, color 0.25s ease;
}
.figma-trust-bar li:hover {
  transform: translateY(-2px);
  color: var(--navy-deep);
}
.trust-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.figma-trust-bar li:hover .trust-dot {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(7, 78, 185, 0.25);
}
.trust-dot img { width: 14px; height: 14px; }

/* Quality section */
.figma-quality {
  background: #fff;
  width: 100%;
  padding: 80px var(--pad-section);
  box-sizing: border-box;
}
.figma-quality-top {
  max-width: var(--max);
  margin: 0 auto 50px;
}
.figma-quality-top > .reveal-fade {
  text-align: center;
}
.figma-quality-top .figma-eyebrow-pill {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 18px;
  background: var(--lime);
  border-radius: 100px;
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.3;
  text-transform: uppercase;
}
.figma-quality-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 61px;
  box-sizing: border-box;
  overflow: visible;
}
.figma-cta-band-wrap {
  background: var(--blue);
  display: flex;
  justify-content: center;
}
.figma-cta-band {
  background: transparent;
}
.figma-eyebrow {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 9px;
}
.figma-quality h2 {
  text-align: center;
  margin: 0 auto 19px;
  max-width: 501px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--navy-deep);
  line-height: 1.2;
}
.figma-quality-intro {
  text-align: left;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.93;
  margin: 0 0 24px;
}
.figma-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 0;
  align-items: start;
}
.figma-cols h3 {
  margin: 0 0 11px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.35;
}
.figma-cols p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.figma-quality-cta {
  text-align: center;
  margin-top: 50px;
}
.figma-quality-cta .btn-gradient-md {
  display: inline-flex;
  width: auto;
  padding: 13px 36px;
}

.figma-banner-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  object-fit: cover;
  height: 242px;
}
.figma-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  overflow: visible;
}
.figma-feature-card {
  position: relative;
  z-index: 0;
  background: var(--surface);
  border-radius: 12px;
  padding: 20px 30px;
  transform-origin: center center;
  transition:
    transform 0.5s var(--reveal-ease),
    box-shadow 0.5s var(--reveal-ease),
    background 0.5s var(--reveal-ease);
}
.figma-feature-card:hover {
  z-index: 2;
  transform: scale(1.045);
  box-shadow:
    0 20px 48px rgba(7, 78, 185, 0.14),
    0 8px 20px rgba(30, 32, 51, 0.06);
  background: #fff;
}
html.aml-motion .reveal-stagger.is-visible .figma-feature-card.reveal-item:hover {
  transform: scale(1.045);
}
.feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img { width: 20px; height: 20px; }
.figma-feature-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
  transition: color 0.5s var(--reveal-ease);
}
.figma-feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  transition: color 0.5s var(--reveal-ease);
}
.figma-feature-card:hover h3 {
  color: var(--blue);
}
.figma-feature-card:hover p {
  color: var(--navy-deep);
}
.figma-feature-card .feature-icon {
  transition: transform 0.5s var(--reveal-ease), box-shadow 0.5s var(--reveal-ease);
}
.figma-feature-card:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(7, 78, 185, 0.25);
}

/* Data sources */
.figma-sources {
  background: var(--navy);
  color: var(--text-light);
  padding: 50px clamp(1.5rem, 8vw, 106px);
  text-align: center;
}
.figma-sources-inner {
  max-width: var(--max);
  margin-inline: auto;
}
.figma-sources-head { margin-bottom: 56px; }
.figma-sources .figma-eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 18px;
  background: var(--lime);
  border-radius: 100px;
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.3;
  text-transform: uppercase;
}
.figma-sources h2 {
  margin: 0 0 22px;
  font-size: 30px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.8px;
}
.figma-sources-head > p {
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.88;
  max-width: 100%;
}
.figma-sources-body {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.sources-callout {
  flex: 0 0 min(503px, 100%);
  margin: 0;
  padding: 20px 40px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  transform-origin: center center;
  transition:
    transform 0.5s var(--reveal-ease),
    box-shadow 0.5s var(--reveal-ease);
}
.sources-callout:hover {
  z-index: 2;
  transform: scale(1.04);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.28),
    0 10px 24px rgba(227, 25, 55, 0.2);
}
html.aml-motion .sources-callout.reveal-left.is-visible:hover {
  transform: scale(1.04);
}
.source-pills {
  flex: 1 1 520px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  align-items: stretch;
  width: 100%;
  max-width: 561px;
}
.source-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.source-pill img {
  flex-shrink: 0;
}
.source-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(7, 78, 185, 0.12);
  border-color: var(--blue);
}
.source-pill img { width: 18px; height: 18px; }

/* CTA band */
.figma-cta-band {
  padding: 44px var(--pad-section);
  width: 100%;
  box-sizing: border-box;
}
.figma-cta-band .figma-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 10vw, 153px);
  flex-wrap: wrap;
  max-width: 1120px;
  margin-inline: auto;
}
.figma-cta-band h2 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.28;
}
.figma-cta-band .figma-inner > div {
  flex: 0 1 587px;
  text-align: left;
}
.figma-cta-band p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
}

/* Form */
.figma-form-section {
  background: #f8faff;
  padding: 60px 1.5rem;
}
.figma-form-card {
  max-width: 812px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 38px 40px 40px;
  box-shadow: 0 8px 20px rgba(7, 78, 185, 0.07);
}
.figma-form-card h2 {
  margin: 0 0 0.5rem;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.5px;
}
.figma-form-card > p {
  margin: 0 0 1.5rem;
  font-size: 13px;
  color: var(--muted);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  font: 400 14px var(--font);
  color: var(--navy-deep);
  background: #fff;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(67, 70, 83, 0.4); }
.form-field textarea { min-height: 76px; resize: vertical; }
.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid select {
  border-color: #c80042;
  background: #fff8fa;
  box-shadow: 0 0 0 1px rgba(200, 0, 66, 0.12);
}
.form-field.is-invalid label {
  color: #9a0034;
}
.form-error {
  display: none;
  margin: 0.4rem 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #c80042;
}
.form-field.is-invalid .form-error {
  display: block;
}
.form-alert {
  display: none;
  margin: 0 0 1.25rem;
  padding: 12px 14px;
  border: 1px solid rgba(200, 0, 66, 0.25);
  border-radius: 8px;
  background: #fff8fa;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #9a0034;
}
.form-alert.is-visible {
  display: block;
}
.form-success {
  display: none;
  margin: 0 0 1.25rem;
  padding: 14px 16px;
  border: 1px solid rgba(129, 233, 47, 0.5);
  border-radius: 8px;
  background: #f4ffeb;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #1f4d12;
}
.form-success.is-visible {
  display: block;
}
.figma-form-card form.is-submitting .btn-submit {
  opacity: 0.75;
  cursor: wait;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 1rem 0 0;
  text-align: center;
}
.form-note a { font-weight: 700; color: var(--blue); }

/* 123FormBuilder 6958424 dentro de la misma card blanca del sitio */
.figma-form-card--embed iframe {
  display: block;
  width: 100%;
  margin: 0 auto;
  min-height: 420px;
  border: 0;
  background: transparent;
}
.figma-form-card--embed .form-note {
  margin-top: 1.25rem;
}
.figma-form-card--embed .form-note a {
  color: var(--navy-deep);
  font-weight: 700;
}
.figma-form-card--embed .form-note a:hover {
  color: var(--blue);
}

/* Footer */
.figma-footer {
  background: var(--navy-deep);
  color: var(--text-light);
  padding: 24px clamp(1.25rem, 5vw, 60px) 20px;
  text-align: center;
}
.figma-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 3rem;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(0px, 6vw, 75px);
  text-align: left;
}
.figma-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.figma-footer-logo {
  display: inline-block;
  line-height: 0;
}
.figma-footer-logo img {
  height: 32px;
  width: auto;
}
/* Social icons — debajo del logo, PNG en /icons */
.figma-footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.figma-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}
.figma-footer .figma-footer-social img {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  min-width: 22px;
  min-height: 22px;
  display: block;
  object-fit: contain;
  opacity: 1 !important;
}
.figma-footer-social a:hover img {
  opacity: 0.85 !important;
}
.figma-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.figma-footer-contact a {
  color: #c8d0e8;
  text-decoration: none;
}
.figma-footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}
.figma-footer-heading {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}
.figma-footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.figma-footer-nav a {
  color: #9da5c0;
  font-size: 14px;
  line-height: 1.35;
}
.figma-footer-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}
.figma-footer-nav a:hover {
  color: #fff;
  transform: translateX(4px);
}
.figma-footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 14px;
  color: #9da5c0;
  margin: 16px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: var(--max);
  padding-inline: clamp(0px, 6vw, 74px);
  text-align: left;
}
.figma-footer-copy a { color: #9da5c0; }
.figma-footer-copy a:hover { color: #fff; }

.menu-btn {
  display: none;
  border: none;
  background: var(--navy-deep);
  color: #fff;
  font: 600 0.85rem var(--font);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.menu-btn:hover { filter: brightness(1.15); }

/* Motion — scroll reveals & hero entrance (requires html.aml-motion from figma.js) */
@keyframes aml-fade-up {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html.aml-motion .figma-hero-content > * {
  opacity: 0;
  animation: aml-fade-up 1.75s var(--reveal-ease) forwards;
}
html.aml-motion .figma-hero-badge { animation-delay: 0.15s; }
html.aml-motion .figma-hero h1 { animation-delay: 0.38s; }
html.aml-motion .figma-hero-lead { animation-delay: 0.62s; }
html.aml-motion .figma-hero-lead-sub { animation-delay: 0.85s; }
html.aml-motion .figma-hero-actions { animation-delay: 1.1s; }

html.aml-motion .reveal,
html.aml-motion .reveal-left,
html.aml-motion .reveal-right,
html.aml-motion .reveal-down,
html.aml-motion .reveal-fade,
html.aml-motion .reveal-scale {
  opacity: 0;
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
}

html.aml-motion .reveal {
  transform: translateY(48px);
}
html.aml-motion .reveal-left {
  transform: translateX(-60px);
}
html.aml-motion .reveal-right {
  transform: translateX(60px);
}
html.aml-motion .reveal-down {
  transform: translateY(-28px);
}
html.aml-motion .reveal-fade {
  transform: none;
}
html.aml-motion .reveal-scale {
  transform: scale(0.9);
}

html.aml-motion .reveal.is-visible,
html.aml-motion .reveal-left.is-visible,
html.aml-motion .reveal-right.is-visible,
html.aml-motion .reveal-down.is-visible,
html.aml-motion .reveal-fade.is-visible,
html.aml-motion .reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

html.aml-motion .reveal-stagger .reveal-item {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--reveal-stagger-duration) var(--reveal-ease),
    transform var(--reveal-stagger-duration) var(--reveal-ease);
}
html.aml-motion .reveal-stagger.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(1) { transition-delay: 0.12s; }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(2) { transition-delay: calc(0.12s + var(--reveal-stagger-step)); }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(3) { transition-delay: calc(0.12s + var(--reveal-stagger-step) * 2); }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(4) { transition-delay: calc(0.12s + var(--reveal-stagger-step) * 3); }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(5) { transition-delay: calc(0.12s + var(--reveal-stagger-step) * 4); }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(6) { transition-delay: calc(0.12s + var(--reveal-stagger-step) * 5); }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(7) { transition-delay: calc(0.12s + var(--reveal-stagger-step) * 6); }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(8) { transition-delay: calc(0.12s + var(--reveal-stagger-step) * 7); }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(9) { transition-delay: calc(0.12s + var(--reveal-stagger-step) * 8); }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(10) { transition-delay: calc(0.12s + var(--reveal-stagger-step) * 9); }
html.aml-motion .reveal-stagger.is-visible .reveal-item:nth-child(n + 11) { transition-delay: calc(0.12s + var(--reveal-stagger-step) * 10); }

html.aml-motion .reveal.is-visible.reveal-delay-1,
html.aml-motion .reveal-left.is-visible.reveal-delay-1,
html.aml-motion .reveal-right.is-visible.reveal-delay-1 {
  transition-delay: 0.4s;
}
html.aml-motion .reveal.is-visible.reveal-delay-2,
html.aml-motion .reveal-left.is-visible.reveal-delay-2,
html.aml-motion .reveal-right.is-visible.reveal-delay-2 {
  transition-delay: 0.7s;
}

@media (prefers-reduced-motion: reduce) {
  .figma-feature-card:hover,
  .sources-callout:hover {
    transform: none;
  }
  .figma-feature-card:hover .feature-icon {
    transform: none;
  }
  html.aml-motion {
    --reveal-duration: 0.55s;
    --reveal-stagger-duration: 0.5s;
    --reveal-stagger-step: 0.08s;
  }
  html.aml-motion .figma-hero-content > * {
    animation-duration: 0.55s;
  }
  html.aml-motion .reveal {
    transform: translateY(14px);
  }
  html.aml-motion .reveal-left {
    transform: translateX(-20px);
  }
  html.aml-motion .reveal-right {
    transform: translateX(20px);
  }
  html.aml-motion .reveal-stagger .reveal-item {
    transform: translateY(12px);
  }
}

/* Home page (Figma frame home) */
.figma-page--home .figma-hero--home {
  min-height: clamp(380px, 48vh, 480px);
  padding-bottom: clamp(56px, 7vw, 72px);
}
.figma-hero-lead--single {
  margin-bottom: 32px;
}
.figma-search-band {
  background: var(--surface);
  padding: clamp(48px, 6vw, 72px) clamp(1.25rem, 5vw, 60px);
}
.figma-search-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.figma-search-head {
  max-width: 900px;
}
.figma-eyebrow-pill {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 18px;
  background: var(--blue-bright);
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.figma-search-head h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.figma-search-head p {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.7;
  color: var(--muted);
}
.figma-popular-lists {
  background: var(--navy);
  color: var(--text-light);
  padding: clamp(48px, 6vw, 64px) clamp(1.25rem, 5vw, 60px) clamp(56px, 7vw, 72px);
  text-align: center;
}
.figma-popular-lists h2 {
  margin: 0 auto clamp(28px, 4vw, 40px);
  font-size: clamp(1.25rem, 2.5vw, 22px);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-light);
}
.figma-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 28px;
  width: min(1121px, 100%);
  margin-inline: auto;
  text-align: left;
}
.figma-popular-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(239, 242, 249, 0.92);
}
.figma-popular-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--gradient);
}
.figma-popular-icon img {
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
}
.figma-popular-item a {
  color: inherit;
  text-decoration: none;
}
.figma-popular-item a:hover {
  text-decoration: underline;
}
.figma-hero--home .figma-hero-lead-sub {
  margin-top: 0.75rem;
}
.figma-form-section--info {
  padding-top: 56px;
  padding-bottom: 64px;
}
@media (max-width: 1024px) {
  .figma-header .figma-inner { flex-wrap: wrap; justify-content: space-between; }
  .figma-header nav { order: 3; width: 100%; }
  .figma-sources-body { flex-direction: column; align-items: stretch; }
  .sources-callout { flex: 1 1 auto; }
  .source-pills { max-width: none; }
  .figma-popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .source-pills { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .figma-quality { padding: 48px 1.5rem; }
  .figma-quality-bottom { padding: 0; }
  .figma-quality h2 { font-size: clamp(1.4rem, 4vw, 30px); }
  .figma-stats { grid-template-columns: repeat(2, 1fr); }
  .figma-stats .stat {
    min-height: 132px;
    padding: 28px clamp(12px, 3vw, 24px);
    border: none !important;
  }
  .figma-stats .stat:not(:last-child)::after {
    display: none;
  }
  .figma-cols,
  .figma-features { grid-template-columns: 1fr; }
  .figma-cta-band {
    padding: 28px 1.25rem;
  }
  .figma-cta-band .figma-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }
  .figma-cta-band .figma-inner > div {
    flex: 1 1 auto;
    text-align: center;
    max-width: 100%;
  }
  .figma-cta-band h2 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 0.5rem;
  }
  .figma-cta-band p {
    max-width: 20rem;
    margin-inline: auto;
  }
  .figma-cta-band .btn-light {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  html.aml-motion .figma-cta-band .reveal-left {
    transform: translateY(28px);
  }
  html.aml-motion .figma-cta-band .reveal-right {
    transform: translateY(28px);
  }
  html.aml-motion .figma-cta-band .reveal-left.is-visible,
  html.aml-motion .figma-cta-band .reveal-right.is-visible {
    transform: none;
  }
}
@media (max-width: 640px) {
  .menu-btn { display: block; }
  .figma-header .btn-gradient { display: none; }
  .figma-nav {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0.75rem 0;
  }
  .figma-nav.is-open { display: flex; }
  .figma-header { position: relative; }
  .figma-logo img { height: 40px; }
  .figma-hero-badge { font-size: 11px; padding: 6px 14px; white-space: normal; }
  .figma-banner-img { height: auto; min-height: 180px; }
  .form-row { grid-template-columns: 1fr; }
  .ph-strip {
    padding: 14px 1rem;
    min-height: auto;
  }
  .ph-strip .figma-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
  .ph-strip p {
    text-align: center;
    line-height: 1.45;
    max-width: 22rem;
  }
  .ph-strip a { font-size: 1.2rem; }
  .figma-stats { grid-template-columns: 1fr; }
  .figma-popular-grid { grid-template-columns: 1fr; }
  .figma-stats .stat {
    border: none !important;
    min-height: 108px;
    padding: 24px 1.25rem;
  }
  .figma-stats .stat:not(:last-child)::after {
    display: none;
  }
  .figma-footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .figma-footer-brand {
    align-items: center;
    width: 100%;
  }
  .figma-footer-brand {
    align-items: center;
  }
  .figma-footer-social {
    justify-content: center;
  }
  .figma-footer-links {
    width: 100%;
    text-align: center;
  }
  .figma-footer-nav {
    align-items: center;
  }
  .figma-footer-copy {
    justify-content: center;
    text-align: center;
  }
}
