/* ── Landing Page ────────────────────────────────────────────────────────── */

:root {
  --lp-orange:      #FF5722;
  --lp-orange-dark: #BF360C;
  --lp-orange-mid:  #E64A19;
  --lp-bg:          #FFFBF7;
  --lp-text:        #1A1208;
  --lp-muted:       #7A6658;
  --lp-border:      #EDE8E3;
  --lp-surface:     #FFFFFF;
  --lp-radius:      20px;
  --lp-shadow:      0 8px 40px rgba(26,18,8,.10);
  --lp-shadow-lg:   0 24px 80px rgba(26,18,8,.14);
}

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

.landing-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Logo ────────────────────────────────────────────────────────────────── */
.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.lp-logo__icon { font-size: 28px; line-height: 1; }
.lp-logo__name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
}
.lp-logo--sm .lp-logo__name { color: var(--lp-orange); }
.lp-logo--sm .lp-logo__icon { font-size: 24px; }
.lp-logo--sm { margin-bottom: 16px; }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #C62828 0%, var(--lp-orange-mid) 40%, #FF8A65 100%);
}

/* Animated blobs */
.lp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lp-blob {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
  filter: blur(60px);
  animation: blobFloat 8s ease-in-out infinite;
}
.lp-blob--1 {
  width: 420px; height: 420px;
  background: #FF9800;
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.lp-blob--2 {
  width: 320px; height: 320px;
  background: #fff;
  bottom: 0; right: -80px;
  animation-delay: -3s;
}
.lp-blob--3 {
  width: 240px; height: 240px;
  background: #FFEB3B;
  top: 40%; left: 50%;
  animation-delay: -5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.06); }
  66%       { transform: translate(-12px, 16px) scale(.96); }
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.lp-hero__content {
  text-align: center;
  max-width: 580px;
}

.lp-hero__title {
  font-size: clamp(38px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 20px;
}
.lp-hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.lp-hero__title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 4px;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
}

.lp-hero__sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CTA buttons ─────────────────────────────────────────────────────────── */
.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  letter-spacing: -.2px;
  white-space: nowrap;
}
.lp-cta svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .2s; }
.lp-cta:hover svg { transform: translateX(3px); }

.lp-cta--hero {
  background: #fff;
  color: var(--lp-orange-mid);
  padding: 16px 32px;
  border-radius: 99px;
  font-size: 17px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.lp-cta--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

.lp-cta--form {
  width: 100%;
  justify-content: center;
  background: var(--lp-orange);
  color: #fff;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(255,87,34,.35);
  margin-top: 4px;
}
.lp-cta--form:hover {
  background: var(--lp-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,87,34,.4);
}

/* ── Scroll hint ─────────────────────────────────────────────────────────── */
.lp-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
.lp-scroll-hint svg { width: 28px; height: 28px; display: block; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── CSS Mockup Cards ────────────────────────────────────────────────────── */
.lp-hero__visual {
  width: 100%;
  max-width: 380px;
  display: flex;
  justify-content: center;
}

.mock-stack {
  position: relative;
  width: 220px;
  height: 300px;
}

.mock-card {
  position: absolute;
  width: 180px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}

.mock-card--back {
  transform: rotate(-8deg) translate(-30px, 10px);
  z-index: 1;
  opacity: .85;
}
.mock-card--mid {
  transform: rotate(3deg) translate(28px, -8px);
  z-index: 2;
  opacity: .92;
}
.mock-card--front {
  transform: rotate(-2deg) translate(4px, 30px);
  z-index: 3;
}

.mock-card__img {
  height: 100px;
  position: relative;
}
.mock-card__img--green  { background: linear-gradient(135deg, #43A047, #66BB6A); }
.mock-card__img--amber  { background: linear-gradient(135deg, #F57C00, #FFA726); }
.mock-card__img--red    { background: linear-gradient(135deg, #E53935, #EF5350); }

.mock-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(255,255,255,.9);
  color: #E53935;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
}

.mock-card__body { padding: 10px 12px 12px; }

.mock-line {
  background: #E5E5EA;
  border-radius: 4px;
  margin-bottom: 6px;
}
.mock-line--sm   { height: 8px;  width: 50%; }
.mock-line--md   { height: 8px;  width: 70%; }
.mock-line--lg   { height: 12px; width: 90%; }
.mock-line--cat  { background: rgba(255,87,34,.25); width: 40%; }

.mock-fav {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}
.mock-fav__heart {
  width: 18px; height: 18px;
  background: #FFCDD2;
  border-radius: 50%;
}

.mock-author {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.mock-avatar {
  width: 16px; height: 16px;
  background: #FFCCBC;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FEATURES ────────────────────────────────────────────────────────────── */
.lp-features {
  background: var(--lp-surface);
  padding: 72px 24px;
}
.lp-features__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.lp-feature {
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.lp-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow);
}
.lp-feature__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.lp-feature__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.2px;
  margin-bottom: 10px;
  color: var(--lp-text);
}
.lp-feature__text {
  font-size: 15px;
  color: var(--lp-muted);
  line-height: 1.65;
}

/* ── QUOTE ───────────────────────────────────────────────────────────────── */
.lp-quote {
  background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
  padding: 64px 24px;
}
.lp-quote__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.lp-quote__text {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  font-style: normal;
  letter-spacing: -.3px;
  margin-bottom: 20px;
}
.lp-quote__cite {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  font-style: normal;
  font-weight: 500;
}

/* ── BOTTOM CTA ──────────────────────────────────────────────────────────── */
.lp-bottom-cta {
  background: var(--lp-bg);
  padding: 80px 24px;
  text-align: center;
}
.lp-bottom-cta__inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lp-bottom-cta__title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 900;
  letter-spacing: -.5px;
  color: var(--lp-text);
}
.lp-bottom-cta__sub {
  font-size: 16px;
  color: var(--lp-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
.lp-cta--dark {
  background: var(--lp-text);
  color: #fff;
  padding: 16px 36px;
  border-radius: 99px;
  font-size: 17px;
  box-shadow: 0 8px 32px rgba(26,18,8,.2);
}
.lp-cta--dark:hover {
  background: #2D1A0A;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(26,18,8,.28);
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.lp-footer {
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: var(--lp-muted);
  border-top: 1px solid var(--lp-border);
  background: var(--lp-surface);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .lp-hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .lp-hero__content { text-align: left; }
  .lp-hero__sub { margin-left: 0; margin-right: 0; }
  .lp-logo { justify-content: flex-start; }

  .lp-features__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .mock-stack {
    width: 280px;
    height: 340px;
  }
  .mock-card { width: 200px; }
  .mock-card__img { height: 120px; }
}

@media (min-width: 1024px) {
  .lp-hero__content { max-width: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-blob, .lp-scroll-hint { animation: none; }
}
