:root {
  --bg: #f5f2ff;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #1f1930;
  --muted: #645d7e;
  --violet: #7028d7;
  --violet-deep: #4d1d9d;
  --indigo: #7884d7;
  --lavender: #efe9ff;
  --orange: #ff6f61;
  --blue: #7884d7;
  --whatsapp: #25d366;
  --whatsapp-deep: #128c4a;
  --shadow: 0 24px 60px rgba(77, 29, 157, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(112, 40, 215, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(120, 132, 215, 0.26), transparent 22%),
    radial-gradient(circle at bottom left, rgba(173, 142, 255, 0.18), transparent 18%),
    linear-gradient(180deg, #fcfaff 0%, #f2edff 100%);
  min-height: 100vh;
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(112, 40, 215, 0.16), rgba(120, 132, 215, 0.2));
  box-shadow: var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small,
.site-nav a,
.eyebrow,
.hero-text,
.section-tag,
.detail-list span {
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  gap: 20px;
  font-weight: 600;
}

.hero,
.initiated-section,
.bottom-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero {
  position: relative;
  padding: 30px;
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(240, 234, 255, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  z-index: 0;
}

.hero::before {
  width: 240px;
  height: 240px;
  right: -60px;
  top: -70px;
  background: rgba(112, 40, 215, 0.2);
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -90px;
  background: rgba(120, 132, 215, 0.16);
}

.hero-copy,
.hero-visual,
.info-card,
.initiated-copy,
.initiated-brand {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 9ch;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.hero-text,
.initiated-copy p,
.statement-card p,
.section-intro,
.guest-copy p,
.bottom-cta-copy p {
  max-width: 58ch;
  font-size: 1.04rem;
  line-height: 1.75;
}

.event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.event-pills span {
  border: 1px solid rgba(112, 40, 215, 0.14);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
}

.event-pills span {
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.countdown-card,
.info-card,
.initiated-copy,
.initiated-brand,
.bottom-cta {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(112, 40, 215, 0.12);
  box-shadow: var(--shadow);
}

.countdown-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.countdown-card p {
  margin: 0 0 18px;
  font-weight: 700;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.countdown div {
  padding: 16px 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(112, 40, 215, 0.14), rgba(120, 132, 215, 0.08));
  text-align: center;
}

.countdown strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-family: "Sora", sans-serif;
}

.countdown span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  color: #fff;
  box-shadow: 0 16px 30px rgba(112, 40, 215, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid rgba(21, 33, 13, 0.08);
}

.button-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff;
  box-shadow: 0 16px 30px rgba(18, 140, 74, 0.24);
}

.hero-visual {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.poster-frame {
  width: min(100%, 410px);
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(237, 233, 255, 0.94));
  box-shadow: var(--shadow);
}

.poster-frame img {
  width: 100%;
  border-radius: 24px;
}

.hero-tag-card {
  width: min(100%, 320px);
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 238, 255, 0.92));
  box-shadow: var(--shadow);
}

.hero-tag-card img {
  width: 100%;
  border-radius: 22px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin: 30px 0;
}

.guests-section {
  margin: 30px 0;
  padding: 30px;
  border-radius: 40px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(241, 236, 255, 0.96));
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 22px;
}

.section-intro {
  color: var(--muted);
  margin-top: 16px;
}

.guests-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.guest-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(112, 40, 215, 0.12);
  box-shadow: var(--shadow);
}

.guest-photo-frame {
  position: relative;
  padding: 14px;
  background:
    radial-gradient(circle at top right, rgba(112, 40, 215, 0.3), transparent 24%),
    radial-gradient(circle at bottom left, rgba(120, 132, 215, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(251, 250, 255, 1), rgba(236, 230, 255, 0.9));
}

.guest-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  background: #ece7ff;
  filter: saturate(1.03) contrast(1.02);
}

.guest-photo-left {
  object-position: center 18%;
}

.guest-copy {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 22px 22px 24px;
}

.guest-label {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-deep);
}

.guest-copy h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.guest-copy p {
  margin: 0;
}

.guest-copy p:last-child {
  color: var(--muted);
}

.info-card,
.initiated-copy,
.initiated-brand {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.detail-list {
  list-style: none;
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 24px 0 0;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(21, 33, 13, 0.08);
}

.detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list strong {
  text-align: right;
}

.initiated-section {
  margin: 30px 0;
  align-items: stretch;
}

.initiated-copy {
  height: 100%;
}

.initiated-brand {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(31, 25, 48, 0.96), rgba(79, 61, 132, 0.9));
}

.initiated-brand img {
  width: min(100%, 520px);
  height: auto;
}

.bottom-cta {
  margin-top: 30px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(238, 232, 255, 0.96));
}

.bottom-cta-copy h2 {
  margin-bottom: 14px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(112, 40, 215, 0.12);
}

.qr-image-link {
  display: inline-flex;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.qr-image {
  width: min(280px, 100%);
  height: auto;
  border-radius: 12px;
}

.qr-link {
  font-weight: 700;
  color: var(--violet-deep);
  word-break: break-all;
}

@media (max-width: 920px) {

  .hero,
  .info-grid,
  .guests-grid,
  .initiated-section,
  .bottom-cta {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    justify-content: start;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .hero {
    padding: 22px;
  }

  .guests-section {
    padding: 22px;
  }

  .hero-visual {
    order: -1;
  }

  .bottom-cta {
    justify-items: start;
  }

  .qr-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-list li {
    flex-direction: column;
  }

  .detail-list strong {
    text-align: left;
  }

  .guest-photo {
    height: 280px;
  }
}
