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

:root {
  --brand-blue: #4f7beb;
  --brand-steel: #5e81ac;
  --brand-dark: #2e3a59;
  --brand-deep: #1a2540;
  --water-light: #e8f1fb;
  --water-mid: #b5d0f0;
  --text-primary: #1a2540;
  --text-secondary: #4a5872;
  --text-muted: #7a8ba8;
  --surface: #ffffff;
  --surface-alt: #f4f7fc;
  --border: #dce5f5;
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-primary);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 34px;
  width: auto;
}
.nav-logo-brand {
  font-size: 1.125rem;
  font-weight: 600;
  color: #4c566a;
}
.nav-logo-subbrand {
  font-size: 1.125rem;
  color: rgba(76, 86, 106, 0.6);
  font-weight: 100;
  padding-left: 0.125rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--brand-blue);
}
.nav-cta {
  margin-left: 1rem;
  background: var(--brand-blue);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 5rem) clamp(1.5rem, 6vw, 5rem) 5rem;
  background: var(--brand-deep);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(79, 123, 235, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 15% 80%,
      rgba(94, 129, 172, 0.12) 0%,
      transparent 60%
    );
}
.hero-waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
}
.hero-waves svg {
  width: 100%;
  height: 100%;
}

.hero-text {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(79, 123, 235, 0.12);
  border: 1px solid rgba(79, 123, 235, 0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  flex-shrink: 0;
}

h1 {
  font-family: "Outfit", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
h1 em {
  font-style: italic;
  color: var(--brand-blue);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  background: #3a66d4;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  z-index: 1;
}
.screenshot-frame {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
.screenshot-bar {
  background: #e8ecf0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.d-r {
  background: #ff5f57;
}
.d-y {
  background: #ffbd2e;
}
.d-g {
  background: #28c840;
}
.url-bar {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: #666;
  margin-left: 8px;
}

/* ── SECTION WRAPPER ── */
section {
  padding: 5rem clamp(1.5rem, 6vw, 5rem);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}
h2 {
  font-family: "Outfit", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
h2 em {
  font-style: italic;
  color: var(--brand-blue);
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── PROBLEM BAND ── */
.problem {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}
.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--water-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── AUDIENCES ── */
.audiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
.audience-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}
.audience-card.featured {
  border-color: var(--brand-blue);
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-blue);
  opacity: 0;
  transition: opacity 0.3s;
}
.audience-card.featured::before {
  opacity: 1;
}
.audience-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--water-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.audience-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.audience-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.audience-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.audience-card li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.audience-card li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--brand-blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* ── FEATURES ── */
.features {
  background: var(--brand-deep);
}
.features .section-label {
  color: var(--brand-steel);
}
.features h2 {
  color: #fff;
}
.features .section-intro {
  color: rgba(255, 255, 255, 0.6);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.75rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 123, 235, 0.4);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(79, 123, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ── SCREENCAST / DEMO SECTION ── */
.demo {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.demo-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.demo-step:hover,
.demo-step.active {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(79, 123, 235, 0.08);
}
.demo-step.active .step-num {
  background: var(--brand-blue);
  color: #fff;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--water-light);
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.demo-step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.demo-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.demo-visual-frame {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(79, 123, 235, 0.1);
}
.loom-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #dce8f7 0%, #c5d8f2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  cursor: pointer;
}
.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(79, 123, 235, 0.4);
  transition: transform 0.2s;
}
.play-btn:hover {
  transform: scale(1.08);
}
.play-btn svg {
  margin-left: 3px;
}
.loom-placeholder span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── BEFORE/AFTER ── */
.compare {
  overflow-x: auto;
}
.compare-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.compare-table th:last-child {
  color: var(--brand-blue);
}
.compare-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
}
.compare-table td:nth-child(2) {
  color: var(--text-muted);
}
.compare-table td:last-child {
  color: var(--text-primary);
  font-weight: 500;
}
.check-cell {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.check-cell::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--brand-blue);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E")
    center/10px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E")
    center/10px no-repeat;
}

/* ── ROADMAP ── */
.roadmap {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}
.roadmap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.chip {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chip.soon {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--water-light);
}
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ── ONBOARDING ── */
.onboard-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
}
.onboard-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.67% + 12px);
  right: calc(16.67% + 12px);
  height: 1px;
  background: var(--border);
  pointer-events: none;
}
.onboard-step {
  text-align: center;
}
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--water-light);
  color: var(--brand-blue);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--brand-blue);
}
.onboard-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.onboard-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── DESIGN PARTNER ── */
.design-partner {
  background: var(--brand-deep);
  position: relative;
  overflow: hidden;
}
.design-partner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 80% 50%,
    rgba(79, 123, 235, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.design-partner .section-label {
  color: var(--brand-steel);
}
.design-partner h2 {
  color: #fff;
}
.design-partner .section-intro {
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin-bottom: 0;
}
.partner-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.partner-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-steel);
  margin-bottom: 1rem;
}
.partner-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.partner-col li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.partner-col li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--brand-blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* ── TEAM ── */
.team-card {
  max-width: 680px;
  margin: 2.5rem auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--water-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-blue);
  flex-shrink: 0;
  border: 3px solid var(--brand-blue);
}
.team-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.team-card .title {
  font-size: 13px;
  color: var(--brand-blue);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.team-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.team-tag {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 6px;
}

/* ── CONTACT / CTA ── */
.contact {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}
.contact h2 {
  margin-bottom: 0.75rem;
}
.contact .section-intro {
  margin: 0 auto 2.5rem;
  max-width: 520px;
}
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-blue);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  background: var(--brand-blue);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.15s;
}
.contact-form button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── FOOTER ── */
footer {
  background: var(--brand-deep);
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer-logo svg {
  height: 28px;
  width: auto;
}
footer .footer-links {
  display: flex;
  gap: 1.5rem;
}
footer .footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
footer .footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── ASSET NOTICE ── */
.asset-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(79, 123, 235, 0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .audiences-grid {
    grid-template-columns: 1fr;
  }
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .onboard-steps {
    grid-template-columns: 1fr;
  }
  .onboard-steps::before {
    display: none;
  }
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
