/* ============================================
   HEAVENXENT — LANDING PAGE
   landing.css  (separate from styles.css)
   ============================================ */

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

:root {
  --cream: #faf7f2;
  --warm-white: #fffef9;
  --parchment: #f2ede4;
  --soft: #e8ddd4;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #9a7a45;
  --ink: #1a1714;
  --ink-soft: #3d3830;
  --ink-muted: #7a7268;
  --border: rgba(201, 169, 110, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

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

/* ── NAV ── */
.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.l-nav__brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
}

.l-nav__brand img {
  height: 50px;
  width: auto;
  display: block;
}

.l-nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.l-nav__links a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.l-nav__links a:hover {
  color: var(--gold-dark);
}

.l-nav__cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 9px 22px !important;
  transition: background 0.25s !important;
}

.l-nav__cta:hover {
  background: var(--gold-dark) !important;
  color: var(--cream) !important;
}

/* ── HERO ── */
.l-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.l-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px;
  position: relative;
}

.l-hero__left::after {
  content: '';
  position: absolute;
  top: 12%;
  right: 0;
  width: 1px;
  height: 76%;
  background: linear-gradient(to bottom, transparent, var(--border) 40%, var(--border) 60%, transparent);
}

.l-overline {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.l-overline::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.l-hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 24px;
}

.l-hero__headline em {
  font-style: italic;
  color: var(--gold-dark);
  display: block;
  font-size: 0.9em;
}

.l-hero__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-muted);
  margin-bottom: 44px;
}

.l-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.l-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 36px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s, gap 0.3s;
}

.l-btn-primary:hover {
  background: var(--gold-dark);
  gap: 18px;
}

.l-btn-primary--lg {
  font-size: 11px;
  padding: 17px 48px;
}

.l-btn-ghost {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.l-btn-ghost:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.l-hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.l-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
}

.l-stat__label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-top: 5px;
}

/* ── HERO RIGHT ── */
.l-hero__right {
  background-color: #f2ede4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 60px;
  position: relative;
  gap: 18px;
  /* replaces the individual margins */
}

.l-tag-wrap {
  position: relative;
  /* removed margin-bottom since gap handles spacing now */
}

.l-hero__right::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.l-demo-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.l-demo__actions {
  display: flex;      /* Changed from block */
  justify-content: center;  /* Horizontal centering */
  align-items: center;      /* Vertical centering (needs container height) */
  margin-top: 28px;
  /* Add height if needed, e.g., height: 100px; */
}

.l-demo__actions a {
  font-size: 10px;
  padding: 12px;
}

@keyframes tagCursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.tag-cursor {
  display: inline-block;
  width: 1.5px;
  height: 0.85em;
  background: #3a2a1e;
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: tagCursorBlink 0.7s step-end infinite;
}

.bounce-text {
  animation: soft-bounce 4s infinite;
  display: inline-block;
}

@keyframes soft-bounce {

  0%,
  10%,
  20%,
  100% {
    transform: translateY(0);
  }

  5% {
    transform: translateY(-5px);
  }

  15% {
    transform: translateY(-2px);
  }
}

@keyframes tagPulse {
  0% {
    box-shadow: 0 20px 60px rgba(242, 237, 228, 1);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(201, 169, 110, 0.25), 0 20px 60px rgba(242, 237, 228, 1);
  }

  100% {
    box-shadow: 0 20px 60px rgba(242, 237, 228, 1);
  }
}

.l-tag-card--pulse {
  animation: tagPulse 0.5s ease-out;
}

/* ── TAG CARD ── */
.l-tag-wrap {
  position: relative;
  margin-bottom: 28px;
}

.l-tag-card {
  width: 220px;
  height: 423px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(242, 237, 228, 1), 0 0 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 110px;
}



.l-tag-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 12px;
  display: block;
}

.l-tag-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 16px;
}

.l-tag-card__names {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 400;
  color: #3a2e28;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

.l-tag-card__amp {
  font-style: italic;
  color: var(--gold-dark);
}

.l-tag-card__divider {
  width: 30px;
  height: 0.5px;
  background: rgba(140, 110, 80, 0.3);
  margin: 6px auto;
}

.l-tag-card__date {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 3px;
}

.l-tag-card__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 10px;
  color: var(--ink-soft);
}

/* ── DEMO INPUTS ── */
.l-demo-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 260px;
}

.l-demo-inputs__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
}

.l-demo-inputs__amp {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-dark);
  text-align: center;
}

.l-demo-input {
  width: 100%;
  background: white;
  border: 1px solid var(--soft);
  border-radius: 6px;
  padding: 8px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.l-demo-input::placeholder {
  color: #c5b8af;
}

.l-demo-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.l-demo-hint {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-align: center;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── MARQUEE ── */
.l-marquee {
  background-color: var(--ink);
  overflow: hidden;
  padding: 13px 0;
}

.l-marquee__track {
  display: flex;
  white-space: nowrap;
  animation: lMarquee 28s linear infinite;
}

.l-marquee__item {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 44px;
  display: inline-flex;
  align-items: center;
  gap: 44px;
}

.l-marquee__dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes lMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── PROOF ── */
.l-proof {
  background-color: var(--warm-white);
  padding: 120px 72px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.l-proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.l-proof__left {
  padding-right: 72px;
  border-right: 1px solid var(--border);
}

.l-proof__right {
  padding-left: 72px;
}

.l-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.l-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.l-proof__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 22px;
}

.l-proof__headline em {
  font-style: italic;
  color: var(--gold-dark);
  font-size: 0.9em;
}

.l-proof__body {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-muted);
}

.l-features {
  list-style: none;
}

.l-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.l-feature:last-child {
  border-bottom: none;
}

.l-feature__num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  width: 22px;
  flex-shrink: 0;
  padding-top: 1px;
}

.l-feature__title {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.l-feature__desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink-muted);
}

/* ── PROCESS ── */
.l-process {
  background-color: var(--cream);
  padding: 120px 72px;
}

.l-process__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.l-process__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin-top: 12px;
}

.l-process__title em {
  font-style: italic;
  color: var(--gold-dark);
}

.l-process__link {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: border-color 0.25s;
}

.l-process__link:hover {
  border-color: var(--gold);
}

.l-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.l-step {
  background-color: var(--cream);
  padding: 44px 32px;
  transition: background-color 0.3s;
}

.l-step:hover {
  background-color: var(--warm-white);
}

.l-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 20px;
}

.l-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.l-step__desc {
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-muted);
}

/* ── PRODUCTS ── */
.l-products {
  background-color: var(--warm-white);
  padding: 120px 72px;
  border-top: 1px solid var(--border);
}

.l-products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.l-products__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin-top: 12px;
}

.l-products__title em {
  font-style: italic;
  color: var(--gold-dark);
}

.l-products__count {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.l-products__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--border);
}

.l-product {
  background-color: var(--cream);
  padding: 44px 36px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background-color 0.3s;
  position: relative;
  overflow: hidden;
}

.l-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.l-product:hover {
  background-color: var(--warm-white);
}

.l-product:hover::before {
  transform: scaleX(1);
}

.l-product--featured {
  padding: 52px 44px;
}

.l-product--dim {
  opacity: 0.65;
  cursor: default;
}

.l-product--dim:hover {
  background-color: var(--cream);
}

.l-product--dim:hover::before {
  transform: scaleX(0);
}

.l-product__badge {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 4px 11px;
  display: inline-block;
  margin-bottom: 28px;
}

.l-product__badge--soon {
  color: var(--ink-muted);
  background: var(--soft);
}

.l-product__name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}

.l-product--dim .l-product__name {
  font-size: 21px;
  color: var(--ink-soft);
}

.l-product__desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-muted);
  margin-bottom: 36px;
}

.l-product__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap 0.25s;
}

.l-product:hover .l-product__cta {
  gap: 16px;
}

.l-product__cta--dim {
  color: var(--ink-muted);
}

/* ── FINAL CTA ── */
.l-cta {
  background-color: var(--ink);
  padding: 120px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.l-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.l-cta__eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.l-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.07;
  color: var(--cream);
  margin-bottom: 40px;
}

.l-cta__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.l-cta__sub {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 56px;
}

.l-cta .l-btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.l-cta .l-btn-primary:hover {
  background: var(--gold-light);
}

/* ── FOOTER ── */
.l-footer {
  background-color: var(--parchment);
  border-top: 1px solid var(--border);
  padding: 44px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
}

.l-footer__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.l-footer__links a {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.l-footer__links a:hover {
  color: var(--gold-dark);
}

.l-footer__copy {
  font-size: 10px;
  font-weight: 300;
  color: var(--ink-muted);
  opacity: 0.55;
  letter-spacing: 0.06em;
}

.l-demo-input[type="search"]::-webkit-search-decoration,
.l-demo-input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.l-demo-input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .l-nav {
    padding: 18px 20px;
  }

  .l-nav__links li:not(:last-child) {
    display: none;
  }

  .l-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .l-hero__left {
    padding: 110px 24px 56px;
  }

  .l-hero__left::after {
    display: none;
  }

  .l-hero__right {
    padding: 56px 24px 64px;
  }

  .l-hero__stats {
    gap: 24px;
    margin-top: 40px;
  }

  .l-proof {
    padding: 72px 24px;
  }

  .l-proof__grid {
    grid-template-columns: 1fr;
  }

  .l-proof__left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 52px;
    margin-bottom: 52px;
  }

  .l-proof__right {
    padding-left: 0;
  }

  .l-process {
    padding: 72px 24px;
  }

  .l-process__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 40px;
  }

  .l-steps {
    grid-template-columns: 1fr 1fr;
  }

  .l-products {
    padding: 72px 24px;
  }

  .l-products__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 36px;
  }

  .l-products__grid {
    grid-template-columns: 1fr;
  }

  .l-cta {
    padding: 88px 24px;
  }

  .l-footer {
    padding: 36px 24px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .l-footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* Increase small text for mobile readability */
  .l-nav__links a {
    font-size: 12px;
  }

  .l-overline {
    font-size: 10px;
  }

  .l-demo-label {
    font-size: 10px;
  }

  .l-demo-hint {
    font-size: 10px;
  }

  .l-marquee__item {
    font-size: 11px;
  }

  .l-eyebrow {
    font-size: 10px;
  }

  .l-product__badge {
    font-size: 9px;
  }

  .l-products__count {
    font-size: 10px;
  }

  .l-hero__body {
    font-size: 15px;
  }

  .l-proof__body {
    font-size: 14px;
  }

  .l-feature__desc {
    font-size: 13px;
  }

  .l-step__desc {
    font-size: 13px;
  }

  .l-product__desc {
    font-size: 14px;
  }

  .l-cta__sub {
    font-size: 15px;
  }

  .l-demo-input {
    font-size: 16px;
  }

  .l-demo-input:focus {
    scroll-margin-top: 80px;
  }

  .l-tag-card {
    width: 160px;
    height: 308px;
    padding-bottom: 80px;
  }

  .l-tag-card__names {
    font-size: 11px;
  }

  .l-tag-card__date {
    font-size: 7.5px;
  }

  .l-tag-card__tagline {
    font-size: 8px;
  }
}
