:root {
  --bl-graphite: #14130f;
  --bl-graphite-deep: #0d0d0b;
  --bl-ivory: #f7f3eb;
  --bl-muted: #cbc5b9;
  --bl-faint: #a9a398;
  --bl-champagne: #dfc18b;
  --bl-champagne-ink: #21190e;
  --bl-line: rgba(247, 243, 235, 0.15);
  --bl-line-strong: rgba(223, 193, 139, 0.5);
  --bl-measure: 1320px;
  --bl-gutter: clamp(20px, 5vw, 72px);
  --bl-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { background: var(--bl-graphite-deep); }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bl-graphite-deep);
  color: var(--bl-ivory);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible {
  outline: 3px solid var(--bl-champagne);
  outline-offset: 4px;
}

.bl-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--bl-ivory);
  color: var(--bl-champagne-ink);
  transform: translateY(-150%);
}

.bl-skip-link:focus { transform: translateY(0); }

.bl-page {
  overflow: clip;
  background:
    radial-gradient(88% 58% at 77% 4%, rgba(223, 193, 139, 0.14), transparent 57%),
    radial-gradient(50% 40% at 6% 30%, rgba(255, 255, 255, 0.035), transparent 68%),
    linear-gradient(180deg, #171510 0%, var(--bl-graphite-deep) 72%);
}

.bl-header {
  display: flex;
  min-height: 72px;
  max-width: var(--bl-measure);
  margin: 0 auto;
  padding: 12px var(--bl-gutter);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bl-line);
}

.bl-brand,
.bl-header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.bl-brand { gap: 11px; font-size: 16px; font-weight: 650; letter-spacing: -0.02em; }
.bl-brand picture { display: block; width: 34px; height: 34px; }
.bl-brand img { display: block; width: 34px; height: 34px; border-radius: 10px; }

.bl-header-action {
  min-width: 104px;
  padding: 0 16px;
  border: 1px solid var(--bl-line-strong);
  border-radius: 999px;
  color: var(--bl-champagne);
  font-size: 14px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.bl-header-action:hover { background: var(--bl-champagne); color: var(--bl-champagne-ink); transform: translateY(-1px); }

.bl-hero,
.bl-section {
  width: min(100%, var(--bl-measure));
  margin: 0 auto;
  padding-left: var(--bl-gutter);
  padding-right: var(--bl-gutter);
}

.bl-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  min-height: calc(100svh - 72px);
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  padding-top: clamp(52px, 7vw, 114px);
  padding-bottom: clamp(48px, 6vw, 92px);
}

.bl-hero-copy { position: relative; z-index: 2; max-width: 620px; }

.bl-kicker {
  margin: 0;
  color: var(--bl-champagne);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }

h1,
h2 {
  color: var(--bl-ivory);
  font-weight: 620;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 {
  max-width: 710px;
  margin: 18px 0 0;
  font-size: clamp(48px, 5.8vw, 88px);
  line-height: 0.96;
}

.bl-lead {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--bl-muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}

.bl-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.bl-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.bl-button:hover { transform: translateY(-2px); }
.bl-button-primary { background: var(--bl-champagne); color: var(--bl-champagne-ink); }
.bl-button-primary:hover { background: #f0d7a5; }
.bl-button-secondary { border-color: var(--bl-line); color: var(--bl-ivory); background: rgba(255, 255, 255, 0.025); }
.bl-button-secondary:hover { border-color: var(--bl-line-strong); background: rgba(255, 255, 255, 0.08); }

.bl-desktop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
  color: var(--bl-faint);
  font-size: 13px;
  line-height: 1.45;
}

.bl-desktop-links a { min-height: 44px; display: inline-flex; align-items: center; gap: 4px; text-decoration: underline; text-decoration-color: rgba(203, 197, 185, 0.35); text-underline-offset: 4px; }
.bl-desktop-links a:hover { color: var(--bl-ivory); }

.bl-hero-product {
  position: relative;
  min-height: 480px;
  isolation: isolate;
  transform: translateY(var(--bl-product-shift, 0px));
  transition: transform 120ms linear;
}

.bl-product-glow {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: 1%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 193, 139, 0.25), rgba(223, 193, 139, 0) 69%);
  filter: blur(10px);
}

.bl-browser-shot,
.bl-phone-shot { margin: 0; overflow: hidden; background: #15161c; }

.bl-browser-shot {
  position: absolute;
  top: 5%;
  right: 4%;
  width: min(79%, 580px);
  aspect-ratio: 1.06;
  border: 1px solid rgba(247, 243, 235, 0.23);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.bl-browser-shot::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 22px;
  content: "";
  background: linear-gradient(90deg, rgba(247, 243, 235, 0.24) 0 4px, transparent 4px 10px, rgba(247, 243, 235, 0.24) 10px 14px, transparent 14px 20px, rgba(247, 243, 235, 0.24) 20px 24px, transparent 24px) 20px center / 38px 4px no-repeat, rgba(18, 18, 19, 0.9);
}

.bl-browser-shot img,
.bl-phone-shot img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bl-browser-shot img { object-position: center 10%; }

.bl-phone-shot {
  position: absolute;
  bottom: 2%;
  left: 1%;
  width: min(34%, 226px);
  aspect-ratio: 0.46;
  padding: 7px;
  border: 1px solid rgba(247, 243, 235, 0.3);
  border-radius: 34px;
  background: #242425;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.48);
  transform: rotate(-7deg);
}

.bl-phone-shot img { border-radius: 27px; object-position: center top; }
.bl-product-caption { position: absolute; right: 1%; bottom: -2px; margin: 0; color: var(--bl-faint); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

.bl-section { padding-top: clamp(76px, 11vw, 152px); padding-bottom: clamp(76px, 11vw, 152px); }
.bl-section-heading { max-width: 780px; }
h2 { margin: 16px 0 0; font-size: clamp(36px, 4.25vw, 66px); line-height: 1.01; }

.bl-proof { border-top: 1px solid var(--bl-line); }
.bl-anchor-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 4vw, 62px); margin: clamp(44px, 7vw, 84px) 0 0; padding: 0; list-style: none; }
.bl-anchor-list li { display: grid; gap: 14px; padding-top: 18px; border-top: 1px solid var(--bl-line); }
.bl-anchor-list strong { color: var(--bl-champagne); font-size: 20px; letter-spacing: -0.03em; }
.bl-anchor-list span { max-width: 290px; color: var(--bl-muted); font-size: 16px; line-height: 1.55; }

.bl-workflow { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.54fr); gap: clamp(48px, 12vw, 188px); align-items: center; border-top: 1px solid var(--bl-line); }
.bl-workflow-copy { max-width: 650px; }
.bl-workflow-copy > p:not(.bl-kicker) { max-width: 560px; margin: 26px 0 0; color: var(--bl-muted); font-size: 18px; line-height: 1.6; }
.bl-text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; margin-top: 30px; color: var(--bl-champagne); font-size: 15px; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
.bl-text-link:hover { color: #f0d7a5; }

.bl-workflow-media { position: relative; width: min(100%, 360px); margin: 0 auto; padding: 9px; border: 1px solid var(--bl-line); border-radius: 34px; background: #e4e4e6; }
.bl-workflow-media img { display: block; width: 100%; height: auto; border-radius: 26px; }
.bl-workflow-media figcaption { margin: 15px 2px 0; color: var(--bl-faint); font-size: 12px; line-height: 1.45; }

.bl-platforms { border-top: 1px solid var(--bl-line); }
.bl-platform-actions { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(42px, 6vw, 76px); border-top: 1px solid var(--bl-line); border-bottom: 1px solid var(--bl-line); }
.bl-platform-actions a { display: grid; min-height: 202px; padding: 22px 22px 20px; align-content: start; border-right: 1px solid var(--bl-line); transition: background 180ms ease, color 180ms ease; }
.bl-platform-actions a:last-child { border-right: 0; }
.bl-platform-actions a:hover { background: rgba(223, 193, 139, 0.1); }
.bl-platform-actions span { font-size: 22px; font-weight: 650; letter-spacing: -0.035em; }
.bl-platform-actions small { margin-top: 8px; color: var(--bl-muted); font-size: 14px; }
.bl-platform-actions b { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 30px; color: var(--bl-champagne); font-size: 14px; }

.bl-footer { display: flex; width: min(100%, var(--bl-measure)); min-height: 104px; margin: 0 auto; padding: 24px var(--bl-gutter); align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--bl-line); color: var(--bl-faint); font-size: 13px; }
.bl-footer p { margin: 0; }
.bl-footer nav { display: flex; flex-wrap: wrap; gap: 16px 26px; }
.bl-footer a { display: inline-flex; min-height: 44px; align-items: center; text-decoration: underline; text-decoration-color: rgba(203, 197, 185, 0.35); text-underline-offset: 4px; }
.bl-footer a:hover { color: var(--bl-ivory); }

@media (prefers-reduced-motion: no-preference) {
  .bl-hero-copy > * { animation: bl-enter 620ms var(--bl-ease) both; }
  .bl-hero-copy > :nth-child(2) { animation-delay: 80ms; }
  .bl-hero-copy > :nth-child(3) { animation-delay: 150ms; }
  .bl-hero-copy > :nth-child(4) { animation-delay: 220ms; }
  .bl-hero-copy > :nth-child(5) { animation-delay: 280ms; }
  .bl-hero-product { animation: bl-product-in 700ms 130ms var(--bl-ease) both; }
}

@keyframes bl-enter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bl-product-in { from { opacity: 0; transform: translateY(28px) scale(0.98); } to { opacity: 1; transform: translateY(var(--bl-product-shift, 0px)) scale(1); } }

@media (max-width: 899px) {
  .bl-hero { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); gap: 24px; }
  .bl-hero-product { min-height: 390px; }
  .bl-browser-shot { width: 84%; right: 0; }
  .bl-phone-shot { width: 37%; }
}

@media (max-width: 699px) {
  .bl-header { min-height: 68px; padding-top: 10px; padding-bottom: 10px; }
  .bl-header-action { min-width: 98px; }
  .bl-hero { display: block; min-height: calc(100svh - 68px); padding-top: 28px; padding-bottom: 30px; }
  h1 { margin-top: 16px; font-size: clamp(40px, 11vw, 52px); line-height: 0.98; }
  .bl-lead { margin-top: 18px; font-size: 16px; line-height: 1.48; }
  .bl-hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
  .bl-button { width: 100%; min-height: 48px; }
  .bl-desktop-links { margin-top: 15px; font-size: 12px; }
  .bl-hero-product { min-height: 278px; margin-top: 18px; }
  .bl-browser-shot { top: 3%; right: 2%; width: 79%; border-radius: 21px; }
  .bl-phone-shot { bottom: 1%; left: 2%; width: 31%; padding: 5px; border-radius: 23px; transform: rotate(-6deg); }
  .bl-phone-shot img { border-radius: 18px; }
  .bl-product-caption { right: 1%; bottom: 0; font-size: 9px; }
  .bl-section { padding-top: 72px; padding-bottom: 72px; }
  h2 { font-size: clamp(34px, 9.6vw, 45px); }
  .bl-anchor-list { grid-template-columns: 1fr; gap: 28px; margin-top: 42px; }
  .bl-anchor-list li { gap: 9px; }
  .bl-workflow { grid-template-columns: 1fr; gap: 42px; }
  .bl-workflow-copy > p:not(.bl-kicker) { font-size: 16px; }
  .bl-workflow-media { width: min(72vw, 300px); }
  .bl-platform-actions { grid-template-columns: 1fr; }
  .bl-platform-actions a { min-height: 146px; border-right: 0; border-bottom: 1px solid var(--bl-line); }
  .bl-platform-actions a:last-child { border-bottom: 0; }
  .bl-platform-actions b { padding-top: 20px; }
  .bl-footer { display: block; padding-top: 24px; padding-bottom: 24px; }
  .bl-footer nav { margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .bl-hero-product { transform: none !important; }
}
