/* Shreeshta landing – mobile-first luxury */

.landing-page {
  --maroon: #7A0026;
  --burgundy: #5B001D;
  --deep: #3D0014;
  --gold: #D6A53A;
  --light-gold: #F4D47A;
  --ivory: #FFF9ED;
  --dark: #2B1A1E;
  --muted: #6B4E55;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: Inter, system-ui, sans-serif;
  background: #1a050c;
  color: var(--dark);
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

.landing-page .wrap {
  width: min(980px, calc(100% - 1.5rem));
  margin-inline: auto;
}

.landing-page .wrap.narrow {
  width: min(520px, calc(100% - 1.5rem));
}

/* ——— Full-bleed hero ——— */
.hero-full {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ivory);
  background: radial-gradient(120% 80% at 50% 0%, #9a1438 0%, var(--burgundy) 42%, var(--deep) 100%);
}

.hero-silk {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0 10px,
      rgba(244, 212, 122, 0.07) 10px 11px
    ),
    repeating-linear-gradient(
      -115deg,
      transparent 0 14px,
      rgba(255, 249, 237, 0.04) 14px 15px
    );
  animation: silkDrift 18s linear infinite;
}

.hero-glow {
  position: absolute;
  width: 140%;
  height: 60%;
  left: -20%;
  top: -10%;
  background: radial-gradient(ellipse at center, rgba(244, 212, 122, 0.28), transparent 65%);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite alternate;
}

.hero-frame {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 1.5rem));
  margin: 1.25rem auto;
  padding: clamp(1.4rem, 5vw, 2.4rem) clamp(1.1rem, 4vw, 2rem);
  border: 1px solid rgba(244, 212, 122, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(214, 165, 58, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.35);
  background: linear-gradient(165deg, rgba(91, 0, 29, 0.35), rgba(26, 5, 12, 0.55));
  backdrop-filter: blur(2px);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--light-gold);
  border-style: solid;
  opacity: 0.85;
}

.hero-frame::before {
  top: 8px;
  left: 8px;
  border-width: 2px 0 0 2px;
}

.hero-frame::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 2px 2px 0;
}

.hero-content {
  text-align: center;
  position: relative;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-place {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 249, 237, 0.72);
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0.85rem 0 0.55rem;
}

.gold-divider span {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider i {
  width: 7px;
  height: 7px;
  background: var(--light-gold);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(244, 212, 122, 0.55);
}

.hero-from {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--light-gold);
}

.hero-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 6.4vw, 2.35rem);
  line-height: 1.18;
  color: var(--ivory);
}

.hero-title em {
  font-style: normal;
  color: var(--light-gold);
  font-size: 1.12em;
}

.hero-copy {
  margin: 0 auto 1.2rem;
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 249, 237, 0.82);
}

.hero-offer {
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1rem;
  max-width: 280px;
  border: 1px solid rgba(244, 212, 122, 0.4);
  background: rgba(255, 249, 237, 0.06);
}

.hero-offer-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--light-gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-offer-min {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: rgba(255, 249, 237, 0.85);
}

.btn-xl {
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  font-size: 1.02rem;
  width: 100%;
  max-width: 340px;
  border-radius: 999px;
}

.hero-content .btn-xl {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.hero-trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 249, 237, 0.65);
}

.hero-trust li {
  position: relative;
}

.hero-trust li:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -0.55rem;
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 42px;
  border: 1.5px solid rgba(244, 212, 122, 0.55);
  border-radius: 16px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--light-gold);
  animation: scrollDot 1.6s ease-in-out infinite;
}

/* ——— Sections ——— */
.landing-page .section {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.section-claim,
.section-benefits,
.section-cats,
.section-terms {
  background:
    linear-gradient(180deg, #FFF9ED 0%, #FFF4E0 100%);
}

.section-store,
.section-sarees {
  background:
    linear-gradient(180deg, #5B001D 0%, #3D0014 100%);
  color: var(--ivory);
}

.section-location {
  background:
    linear-gradient(180deg, #FFF4E0 0%, #F8E8C8 100%);
}

.sec-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sec-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.sec-head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5.5vw, 2.1rem);
  color: var(--maroon);
  line-height: 1.2;
}

.section-store .sec-head h2,
.section-sarees .sec-head h2 {
  color: var(--light-gold);
}

.sec-head p {
  margin: 0 auto;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-store .sec-head p,
.section-sarees .sec-head p {
  color: rgba(255, 249, 237, 0.72);
}

/* Form */
.form-lux {
  background: #fff;
  border: 1px solid rgba(214, 165, 58, 0.45);
  border-radius: 22px;
  padding: 1.25rem 1.1rem 1.4rem;
  box-shadow: 0 18px 50px rgba(91, 0, 29, 0.1);
}

.form-progress {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.fp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  color: #9a7a82;
  font-weight: 600;
}

.fp-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3e8ea;
  color: #6B4E55;
  font-size: 0.85rem;
}

.fp-step.on span,
.fp-step.done span {
  background: linear-gradient(180deg, #9A1638, #5B001D);
  color: #fff;
}

.fp-step.on { color: #7A0026; }

.fp-line {
  height: 2px;
  background: #ead7db;
  margin-bottom: 1.1rem;
}

.form-step[hidden] { display: none !important; }

.step-title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--maroon);
}

.step-help {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.field {
  margin-bottom: 1rem;
}

.field.is-valid .input,
.field.is-valid .select {
  border-color: #1F6B3A;
  box-shadow: 0 0 0 3px rgba(31, 107, 58, 0.12);
}

.field.is-invalid .input,
.field.is-invalid .select {
  border-color: #9B1C1C;
  box-shadow: 0 0 0 3px rgba(155, 28, 28, 0.1);
}

.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #8a6f76;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.digit-count {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #8a6f76;
  font-weight: 600;
}

.digit-count.ok { color: #1F6B3A; }

.landing-page .label {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
}

.landing-page .input,
.landing-page .select {
  min-height: 56px;
  font-size: 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(122, 0, 38, 0.16);
  background: #FFFDF8;
}

.landing-page select.select[size] {
  min-height: 160px;
  padding: 0.4rem;
  height: auto;
}

.landing-page select.select[size] option {
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  margin-bottom: 2px;
}

.phone-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.5rem;
}

.phone-cc {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, #FFF4D4, #F4D47A);
  color: var(--burgundy);
  font-weight: 700;
  border: 1px solid rgba(214, 165, 58, 0.5);
  font-size: 1rem;
}

.locked-pill {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-radius: 14px;
  background: #f7eef0;
  color: #5B001D;
  font-weight: 700;
  border: 1.5px dashed rgba(122, 0, 38, 0.2);
}

.step-nav {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.step-nav .btn-xl,
.form-step .btn-xl {
  min-height: 54px;
}

.review-card {
  background: #FFF8EC;
  border: 1px solid rgba(214, 165, 58, 0.4);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  display: grid;
  gap: 0.55rem;
}

.review-card div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.review-card span { color: #8a6f76; }
.review-card strong { color: #2B1A1E; text-align: right; }

.consent-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1.5px solid rgba(122, 0, 38, 0.18);
  background: #fff;
  margin-bottom: 0.85rem;
  cursor: pointer;
}

.consent-card:has(input:checked) {
  border-color: var(--gold);
  background: #FFF8EC;
}

.consent-card input {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--maroon);
}

.consent-card strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.consent-card small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
}

.trust-row span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1F6B3A;
  background: #eaf7ef;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.form-note {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.landing-page .field-error {
  min-height: 1.1em;
}

/* Benefits */
.benefit-rail {
  display: grid;
  gap: 0.85rem;
}

.benefit-tile {
  background: #fff;
  border: 1px solid rgba(214, 165, 58, 0.35);
  border-radius: 18px;
  padding: 1.15rem 1rem;
  text-align: left;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  box-shadow: 0 10px 28px rgba(91, 0, 29, 0.06);
  animation-delay: var(--d, 0s);
}

.benefit-ico {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(244, 212, 122, 0.55), rgba(214, 165, 58, 0.2));
  border: 1px solid rgba(214, 165, 58, 0.4);
  position: relative;
}

.benefit-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  background: var(--maroon);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.benefit-ico[data-ico="wa"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 11.5a8.5 8.5 0 01-12.7 7.4L3 20l1.2-5.1A8.5 8.5 0 1121 11.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 11.5a8.5 8.5 0 01-12.7 7.4L3 20l1.2-5.1A8.5 8.5 0 1121 11.5z'/%3E%3C/svg%3E");
}

.benefit-ico[data-ico="gift"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='8' width='18' height='13' rx='1'/%3E%3Cpath d='M12 8v13M3 12h18M7.5 8a2.5 2.5 0 010-5C9.5 3 12 8 12 8s2.5-5 4.5-5a2.5 2.5 0 010 5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='8' width='18' height='13' rx='1'/%3E%3Cpath d='M12 8v13M3 12h18M7.5 8a2.5 2.5 0 010-5C9.5 3 12 8 12 8s2.5-5 4.5-5a2.5 2.5 0 010 5'/%3E%3C/svg%3E");
}

.benefit-ico[data-ico="cal"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");
}

.benefit-ico[data-ico="lock"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 118 0v3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 118 0v3'/%3E%3C/svg%3E");
}

.benefit-tile h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--maroon);
}

.benefit-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  grid-column: 2;
}

/* Store stats */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat-tile {
  text-align: center;
  padding: 1.15rem 0.7rem;
  border: 1px solid rgba(244, 212, 122, 0.35);
  background: rgba(255, 249, 237, 0.05);
  border-radius: 16px;
}

.stat-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 1.9rem);
  color: var(--light-gold);
  line-height: 1.1;
}

.stat-tile span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: rgba(255, 249, 237, 0.75);
  line-height: 1.35;
}

.store-points {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.store-points li {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 249, 237, 0.06);
  font-size: 0.95rem;
  color: rgba(255, 249, 237, 0.9);
}

/* Horizontal swipe rails */
.swipe-rail {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.25rem 1rem 0.85rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.swipe-rail::-webkit-scrollbar { display: none; }

.swipe-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 148px;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(214, 165, 58, 0.4);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--burgundy);
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(91, 0, 29, 0.08);
}

.swipe-rail.dark .swipe-pill.gold {
  background: rgba(255, 249, 237, 0.06);
  border-color: rgba(244, 212, 122, 0.4);
  color: var(--light-gold);
  box-shadow: none;
}

/* Location */
.loc-panel {
  text-align: center;
  padding: 1.5rem 1.15rem;
  border-radius: 22px;
  background: linear-gradient(160deg, var(--maroon), var(--deep));
  color: var(--ivory);
  border: 1px solid rgba(244, 212, 122, 0.4);
  box-shadow: 0 20px 50px rgba(91, 0, 29, 0.2);
}

.loc-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--light-gold);
}

.loc-addr,
.loc-time {
  margin: 0.4rem 0 0;
  color: rgba(255, 249, 237, 0.8);
  font-size: 0.92rem;
}

.loc-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(244, 212, 122, 0.55);
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  text-align: center;
}

/* Terms accordion */
.terms-acc {
  background: #fff;
  border: 1px solid rgba(214, 165, 58, 0.35);
  border-radius: 16px;
  padding: 0.2rem 1rem;
}

.terms-acc summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--maroon);
  font-weight: 600;
}

.terms-acc summary::-webkit-details-marker { display: none; }

.terms-acc summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 400;
}

.terms-acc[open] summary::after { content: "–"; }

.terms-acc ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.terms-acc li { margin-bottom: 0.4rem; }

/* Footer */
.site-foot {
  background: #1a050c;
  color: rgba(255, 249, 237, 0.7);
  text-align: center;
  padding: 2.2rem 0 1.5rem;
}

.foot-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
}

.foot-sub {
  margin: 0.25rem 0 1rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
}

.site-foot .legal-links a {
  color: rgba(255, 249, 237, 0.8);
}

.foot-copy {
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(26, 5, 12, 0), rgba(26, 5, 12, 0.92) 28%, #1a050c);
}

.mobile-cta .btn {
  box-shadow: 0 10px 30px rgba(214, 165, 58, 0.35);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes silkDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-20px, 12px, 0); }
}

@keyframes glowPulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(214, 165, 58, 0.35); }
  50% { box-shadow: 0 12px 36px rgba(244, 212, 122, 0.55); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* Desktop polish */
@media (min-width: 768px) {
  .landing-page {
    padding-bottom: 0;
  }

  .mobile-cta {
    display: none !important;
  }

  .hero-frame {
    padding: 2.6rem 2.4rem;
  }

  .btn-xl {
    width: auto;
  }

  .benefit-rail {
    grid-template-columns: 1fr 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .swipe-rail {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-silk,
  .hero-glow,
  .hero-content .btn-xl,
  .hero-scroll span {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
