:root {
  --ink: #140a18;
  --ink-2: #1f1424;
  --ink-3: #2c1e32;
  --rose: #e91e63;
  --rose-deep: #b40858;
  --rose-soft: rgba(233, 30, 99, 0.14);
  --gold: #c9a15b;
  --gold-soft: rgba(201, 161, 91, 0.16);
  --cream: #f6efe7;
  --paper: #fffaf6;
  --muted: #6e5f68;
  --line: rgba(20, 10, 24, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);
  --whatsapp: #1fad4f;
  --ok: #2e7d32;
  --shadow: 0 24px 60px rgba(20, 10, 24, 0.18);
  --radius: 22px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 2000;
}

.skip:focus {
  left: 8px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, .display {
  font-family: Fraunces, Georgia, serif;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: 600 0.95rem Outfit, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 10px 24px rgba(233, 30, 99, 0.28);
}

.btn-rose:hover {
  background: var(--rose-deep);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line-light);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  display: none;
  place-items: center;
  cursor: pointer;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 10, 24, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn {
  padding: 10px 16px;
  font-size: 0.86rem;
}

/* Hero */
.hero {
  background:
    radial-gradient(900px 420px at 80% 10%, rgba(233, 30, 99, 0.28), transparent 55%),
    radial-gradient(700px 380px at 10% 90%, rgba(201, 161, 91, 0.16), transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, #221326 100%);
  color: #fff;
  padding: 72px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: end;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 16px 0 18px;
  max-width: 12ch;
}

.hero .lede {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
  padding-bottom: 56px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-points strong {
  color: #fff;
  display: block;
  font-size: 1.05rem;
}

.stage {
  position: relative;
  min-height: 560px;
}

.phone {
  width: 270px;
  background: #09060b;
  border: 3px solid #3c2c42;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  position: absolute;
}

.phone img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  background: #1a0e1f;
}

.phone-main {
  right: 18px;
  bottom: 0;
  z-index: 2;
}

.phone-back {
  right: 168px;
  bottom: 48px;
  transform: rotate(-8deg);
  opacity: 0.92;
  z-index: 1;
}

.float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  min-width: 170px;
}

.float-card.yes {
  left: 8px;
  top: 86px;
}

.float-card.scan {
  right: 0;
  top: 36px;
}

.float-card .kicker {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.float-card .value {
  font-family: Fraunces, serif;
  font-size: 1.35rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

.pill-ok {
  background: #e8f5e9;
  color: var(--ok);
}

.pill-rose {
  background: var(--rose-soft);
  color: var(--rose-deep);
}

/* Occasions strip */
.strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.strip-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.strip-row span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.strip-row strong {
  color: var(--ink);
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section,
#home,
#how,
#product,
#features,
#faq,
#contact {
  scroll-margin-top: 88px;
}

#faq {
  padding-bottom: 72px;
}

#contact {
  padding: 56px 0 104px;
  background: var(--paper);
}

.section.cream {
  background: var(--cream);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin: 10px 0 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 220px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.showcase.reverse {
  direction: rtl;
}

.showcase.reverse > * {
  direction: ltr;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: var(--muted);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

.shot {
  background:
    radial-gradient(circle at 20% 0%, rgba(233, 30, 99, 0.2), transparent 40%),
    var(--ink-2);
  border-radius: 32px;
  padding: 28px 28px 0;
  display: grid;
  place-items: end center;
  min-height: 460px;
  overflow: hidden;
}

.shot img {
  width: min(300px, 100%);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  font-size: 1.3rem;
  margin: 12px 0 8px;
}

.card p {
  color: rgba(255, 255, 255, 0.68);
}

.mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--rose-soft);
  color: #ffb3cb;
  font-size: 1.15rem;
}

.occasions {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 16px;
}

.occasion {
  border-radius: var(--radius);
  padding: 28px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.occasion h3 {
  font-size: 1.8rem;
}

.occasion p {
  opacity: 0.82;
  max-width: 28ch;
}

.occasion.wedding {
  background: linear-gradient(160deg, #8a0644, #e91e63 70%, #c9a15b);
}

.occasion.sendoff {
  background: linear-gradient(160deg, #2a1f2e, #5b2b6e);
}

.occasion.birthday {
  background: linear-gradient(160deg, #1f3d2a, #2e7d32);
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

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

.faq summary::after {
  content: "+";
  color: var(--rose);
  font-size: 1.3rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  color: var(--muted);
  margin-top: 10px;
}

.cta-band {
  background:
    radial-gradient(600px 240px at 90% 0%, rgba(201, 161, 91, 0.2), transparent),
    linear-gradient(135deg, var(--rose-deep), #6d0f45);
  color: #fff;
  border-radius: 32px;
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 14ch;
  margin-bottom: 8px;
}

.cta-band p {
  opacity: 0.88;
  max-width: 36ch;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 28px;
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 12px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links,
.contact-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink-3);
  display: grid;
  place-items: center;
  color: #fff;
}

.socials a:hover {
  background: var(--rose);
  color: #fff;
}

.legal {
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(31, 173, 79, 0.4);
  z-index: 60;
}

.nav-links.open {
  display: flex;
}

@media (max-width: 960px) {
  .hero-grid,
  .showcase,
  .showcase.reverse,
  .feature-grid,
  .occasions,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .brand {
    order: 1;
  }

  .nav-cta {
    order: 2;
    margin-left: auto;
  }

  .icon-btn {
    display: grid;
    order: 3;
  }

  .nav-links {
    display: none;
    order: 4;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: var(--ink);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line-light);
  }

  .nav-cta .btn-ghost {
    display: none;
  }

  .stage {
    min-height: 520px;
    margin: 0 auto 24px;
    width: min(360px, 100%);
  }

  .phone-main {
    right: 20px;
  }

  .phone-back {
    right: 110px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    padding-top: 40px;
  }

  .phone {
    width: 220px;
  }

  .phone img {
    height: 430px;
  }

  .phone-back {
    display: none;
  }

  .phone-main {
    position: relative;
    right: auto;
    margin: 0 auto;
  }

  .stage {
    min-height: 0;
    width: auto;
  }

  .float-card.scan {
    display: none;
  }

  .float-card.yes {
    left: 0;
    top: 24px;
  }

  .section {
    padding: 64px 0;
  }

  #faq {
    padding-bottom: 48px;
  }

  #contact {
    padding: 36px 0 80px;
  }

  .site-footer {
    padding-top: 64px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
