:root {
  color-scheme: light;
  --lr-cream: #f9f6f1;
  --lr-cream-deep: #f3efe8;
  --lr-surface: #fffcf7;
  --lr-ink: #0a0a0a;
  --lr-muted: rgba(10, 10, 10, 0.58);
  --lr-line: rgba(10, 10, 10, 0.1);
  --lr-accent: #ffbf3f;
  --lr-accent-dark: #e0a020;
  --lr-font-display: "Sora", system-ui, sans-serif;
  --lr-font-body: "Inter", system-ui, sans-serif;
  --lr-radius: 20px;
  --lr-radius-lg: 28px;
  --lr-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --lr-shadow-soft: 0 14px 40px rgba(17, 17, 17, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--lr-font-body);
  background: var(--lr-cream);
  color: var(--lr-ink);
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.lr-wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.lr-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0 0.5rem;
}

.lr-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.lr-brand img {
  display: block;
  height: 36px;
  width: auto;
}

.lr-brand__fallback {
  font-family: var(--lr-font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.lr-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.35rem 1.75rem;
}

.lr-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lr-muted);
}

.lr-menu a:hover {
  color: var(--lr-ink);
}

.lr-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lr-lang {
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--lr-line);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--lr-ink);
}

.lr-lang:hover {
  border-color: rgba(10, 10, 10, 0.18);
}

.lr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.lr-btn:hover {
  transform: translateY(-1px);
}

.lr-btn--primary {
  background: linear-gradient(135deg, #ffd078 0%, var(--lr-accent) 52%, var(--lr-accent-dark) 100%);
  color: #111;
  box-shadow: 0 14px 34px rgba(255, 191, 63, 0.35);
}

.lr-btn--ghost {
  border-color: var(--lr-line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--lr-ink);
}

.lr-hero {
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.lr-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.35rem;
}

.lr-avatars span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 3px solid var(--lr-cream);
  margin-left: -14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.12);
}

.lr-avatars span:first-child {
  margin-left: 0;
}

.lr-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lr-muted);
}

.lr-hero h1 {
  margin: 0 auto;
  max-width: 14ch;
  font-family: var(--lr-font-display);
  font-weight: 800;
  font-size: clamp(2.65rem, 7.5vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--lr-ink);
}

.lr-hero__line {
  display: block;
}

.lr-hero__accent {
  color: var(--lr-ink);
  background: linear-gradient(120deg, var(--lr-accent), #ffe6a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lr-hero__sub {
  margin: 1.35rem auto 0;
  max-width: 38rem;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--lr-muted);
}

.lr-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

/* App mockup: no card frame — sits on page background */
.lr-hero-float {
  margin: clamp(2rem, 5vw, 3.25rem) auto 0;
  max-width: min(980px, 100%);
  padding-inline: clamp(0.25rem, 2vw, 0.75rem);
}

.lr-hero-float img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 28px 48px rgba(17, 17, 17, 0.14));
}

/* Mockup sits under first feature triplet inside #lr-product */
.lr-product__mockup.lr-hero-float {
  margin-bottom: 0;
}

.lr-hero-stock {
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(0.75rem, 2vw, 1.5rem);
}

.lr-hero-stock .lr-hero-shot {
  margin-top: 0;
}

.lr-hero-shot {
  margin: clamp(2rem, 5vw, 3.25rem) auto 0;
  max-width: 980px;
  border-radius: var(--lr-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lr-line);
  background: var(--lr-surface);
  box-shadow: var(--lr-shadow);
}

.lr-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.lr-hero-shot figcaption {
  padding: 0.85rem 1.15rem;
  font-size: 0.85rem;
  color: var(--lr-muted);
  border-top: 1px solid var(--lr-line);
  background: rgba(255, 255, 255, 0.75);
}

@media (max-width: 820px) {
  .lr-nav {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .lr-menu {
    justify-content: flex-start;
  }

  .lr-nav__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .lr-btn {
    flex: 1;
    min-width: 140px;
  }
}
