/* ══════════════════════════════════════════════
   ClawTech — Warm Noir Concierge
   ══════════════════════════════════════════════ */

:root {
  /* Palette */
  --bg-deep:    #08080a;
  --bg-base:    #0e0e11;
  --bg-raised:  #161619;
  --bg-card:    #1a1a1e;

  --amber:      #e8a838;
  --amber-dim:  #c48a28;
  --amber-glow: rgba(232, 168, 56, 0.15);
  --amber-soft: rgba(232, 168, 56, 0.08);

  --text-primary:   #f0ece6;
  --text-secondary:  #9a9590;
  --text-muted:      #5a5550;

  --border:     rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 8rem);
  --container:  min(72rem, 90vw);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 600; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── Section Primitives ── */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--amber);
}

.section-title--left { text-align: left; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto 3rem;
}

section:not(.hero) {
  padding: var(--section-py) 0;
}

section:not(.hero) .section-tag,
section:not(.hero) .section-title,
section:not(.hero) .section-sub {
  text-align: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber);
  color: var(--bg-deep);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: #f0b848;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 56, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-hover);
}
.btn--ghost:hover {
  border-color: var(--amber-dim);
  color: var(--amber);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-hover);
  width: 100%;
}
.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--amber-soft);
}

.btn--large {
  padding: 1.1rem 2.75rem;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}
.nav__logo-icon {
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links .nav__cta {
  background: var(--amber);
  color: var(--bg-deep);
  padding: 0.55rem 1.25rem;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}
.nav__links .nav__cta:hover {
  background: #f0b848;
  transform: translateY(-1px);
}

/* Mobile nav */
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-out);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.nav__mobile a {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}
.nav__mobile a:hover { color: var(--amber); }

.nav__mobile--open { display: flex; }

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

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
  gap: 4rem;
}

.hero__glow {
  position: absolute;
  top: 15%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

.hero__grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  flex: 1;
  max-width: 38rem;
  position: relative;
  z-index: 1;
}

.hero__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero__title-accent {
  color: var(--amber);
  font-style: italic;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 32rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__proof-item { text-align: center; }
.hero__proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.hero__proof-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__proof-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Phone Mockup ── */
.hero__visual {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero__phone {
  width: 280px;
  background: var(--bg-raised);
  border-radius: 32px;
  border: 2px solid var(--border-hover);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 80px var(--amber-glow);
  position: relative;
}

.hero__phone-notch {
  width: 100px;
  height: 26px;
  background: var(--bg-deep);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
}

.hero__phone-screen {
  background: var(--bg-deep);
  border-radius: 20px;
  padding: 16px 12px;
  min-height: 380px;
}

.hero__chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__chat-bubble {
  max-width: 90%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.5;
  position: relative;
}

.hero__chat-bubble p { margin-bottom: 2px; }

.hero__chat-time {
  font-size: 0.6rem;
  color: var(--text-muted);
  display: block;
  text-align: right;
}

.hero__chat-bubble--user {
  background: var(--amber);
  color: var(--bg-deep);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  opacity: 0;
  animation: chatIn 0.5s var(--ease-spring) 1.2s forwards;
}
.hero__chat-bubble--user .hero__chat-time { color: rgba(0,0,0,0.4); }

.hero__chat-bubble--ai {
  background: var(--bg-card);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
  opacity: 0;
}

.hero__chat-bubble--ai:nth-child(2) { animation: chatIn 0.5s var(--ease-spring) 1.7s forwards; }
.hero__chat-bubble--user:nth-child(3) { animation: chatIn 0.5s var(--ease-spring) 2.5s forwards; }
.hero__chat-bubble--ai:nth-child(4) { animation: chatIn 0.5s var(--ease-spring) 3.0s forwards; }

@keyframes chatIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ══════════════════════════════════════════════
   PAIN POINTS
   ══════════════════════════════════════════════ */
.pain {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pain__card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: all 0.4s var(--ease-out);
}
.pain__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pain__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pain__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

.pain__card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   STEPS / HOW IT WORKS
   ══════════════════════════════════════════════ */
.steps__timeline {
  max-width: 40rem;
  margin: 3rem auto 0;
  position: relative;
}

.steps__line {
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border), var(--amber-dim), var(--border));
}

.steps__item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.steps__item:last-child { padding-bottom: 0; }

.steps__marker {
  flex: 0 0 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.steps__marker span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
}

.steps__body {
  padding-top: 0.5rem;
}

.steps__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.steps__body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing__card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.pricing__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.pricing__card--featured {
  border-color: var(--amber-dim);
  background: linear-gradient(170deg, var(--bg-card), var(--bg-raised));
  box-shadow: 0 0 60px var(--amber-glow);
}
.pricing__card--featured:hover {
  border-color: var(--amber);
  box-shadow: 0 0 80px var(--amber-glow), 0 16px 50px rgba(0,0,0,0.3);
}

.pricing__card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.pricing__card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing__tier {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pricing__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.pricing__price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.pricing__features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing__features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.45rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.8rem;
}

.pricing__features li:first-child::before { content: none; }
.pricing__features li:first-child {
  padding-left: 0;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.85rem;
}

.pricing__features-save {
  color: var(--amber) !important;
  font-weight: 500;
}

.pricing__delivery {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  text-align: center;
}

/* Add-ons */
.pricing__addons {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.pricing__addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}

.pricing__addon h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.pricing__addon p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pricing__addon-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
}

.pricing__addon-price small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ══════════════════════════════════════════════
   BYOK
   ══════════════════════════════════════════════ */
.byok__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.byok__text { flex: 1; }

.byok__text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.byok__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.byok__benefits li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.byok__benefits li span {
  color: var(--amber);
  font-weight: 600;
}

.byok__visual {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.byok__key-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s var(--ease-out);
}
.byok__key-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.byok__key-card--channel { margin-left: 2rem; }

.byok__key-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.byok__key-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.byok__key-dot--green { background: #4ade80; }
.byok__key-dot--blue  { background: #60a5fa; }

.byok__key-card code {
  display: block;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.byok__key-owner {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.byok__key-owner strong { color: var(--amber); }

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq__list {
  max-width: 44rem;
  margin: 3rem auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.3s var(--ease-out);
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--amber); }

.faq__toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: all 0.3s var(--ease-out);
}
.faq__toggle::before {
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__toggle::after {
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

details[open] .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
details[open] .faq__toggle::before {
  background: var(--amber);
}

.faq__answer {
  padding-bottom: 1.25rem;
}

.faq__answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 36rem;
}

/* ══════════════════════════════════════════════
   CONTACT / CTA
   ══════════════════════════════════════════════ */
.contact {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
}

.contact__inner {
  text-align: center;
  position: relative;
  padding: 4rem 2rem;
  border-radius: 20px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.contact__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 30rem;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.contact__options { position: relative; z-index: 1; }

.contact__or {
  margin: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact__channels {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact__channel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}
.contact__channel:hover {
  border-color: var(--amber-dim);
  color: var(--amber);
  background: var(--amber-soft);
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--amber); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__bottom a {
  color: var(--amber-dim);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--amber); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
    min-height: auto;
  }

  .hero__sub { margin-left: auto; margin-right: auto; }

  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__proof { justify-content: center; }

  .hero__visual { order: -1; }
  .hero__phone { width: 240px; }
  .hero__phone-screen { min-height: 320px; }

  .byok__inner { flex-direction: column; }
  .byok__visual { flex: none; width: 100%; }
  .byok__key-card--channel { margin-left: 0; }

  .byok__text .section-title,
  .byok__text .section-tag {
    text-align: center;
  }
  .byok__text p { margin-left: auto; margin-right: auto; }

  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__links { gap: 3rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__proof { flex-direction: column; gap: 1rem; }
  .hero__proof-divider { width: 40px; height: 1px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .contact__channels { flex-direction: column; align-items: center; }
}
