:root {
  --ink: #17152b;
  --ink-soft: #514d68;
  --muted: #706b82;
  --navy: #1a1740;
  --violet: #6f3de0;
  --violet-dark: #5326bb;
  --lavender: #efe9ff;
  --coral: #ff4f78;
  --coral-dark: #e73460;
  --pink-soft: #fff0f5;
  --aqua: #19c8bd;
  --aqua-dark: #087f7c;
  --aqua-soft: #e9fbf8;
  --sun: #ffd84a;
  --sun-dark: #edb915;
  --cream: #fffaf0;
  --canvas: #f8f6ff;
  --white: #fff;
  --line: #e7e1f0;
  --green: #11a96a;
  --shadow: 0 25px 65px rgba(50, 31, 104, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.flash {
  position: fixed;
  z-index: 90;
  top: 118px;
  left: 50%;
  max-width: min(680px, calc(100vw - 32px));
  padding: 15px 20px;
  transform: translateX(-50%);
  border: 1px solid;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-weight: 750;
  transition: opacity .2s ease, transform .2s ease;
}
.flash-success { color: #087745; border-color: #8ad7b0; background: #effbf5; }
.flash-error { color: #9f1f2f; border-color: #ebaab2; background: #fff4f5; }
.flash-hide { opacity: 0; transform: translate(-50%, -8px); pointer-events: none; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, summary:focus-visible { outline: 3px solid rgba(255, 79, 120, .34); outline-offset: 4px; border-radius: 10px; }

.club-strip {
  min-height: 38px;
  padding: 8px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #3b2800;
  background: var(--sun);
  font-size: 12px;
  letter-spacing: .01em;
}
.club-strip b { font-weight: 850; }
.strip-copy { opacity: .75; }

.site-header {
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: minmax(215px, 1fr) auto minmax(215px, 1fr);
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 222, 242, .82);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
}
.logo-link { justify-self: start; }
.brand { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 48% 52%;
  color: white;
  background: linear-gradient(145deg, var(--coral), #ff7a57);
  box-shadow: 0 8px 18px rgba(255,79,120,.3);
  transform: rotate(-7deg);
}
.brand-mark span { display: block; font-size: 21px; transform: rotate(7deg); }
.brand-name { font-size: 25px; font-weight: 900; letter-spacing: -.055em; }
.brand-name span { color: var(--violet); }
nav { display: flex; align-items: center; gap: clamp(22px, 2.8vw, 42px); font-size: 14px; font-weight: 720; white-space: nowrap; }
nav a { position: relative; padding: 12px 1px; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 3px; border-radius: 4px; background: var(--coral); transition: right .18s ease; }
nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }
.login-link { color: var(--ink-soft); font-size: 14px; font-weight: 750; }
.login-link:hover { color: var(--violet); }
.mobile-menu { display: none; }

.button {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-3px); }
.button-small { min-height: 46px; padding-inline: 21px; font-size: 13px; }
.button-large { min-height: 61px; padding-inline: 29px; font-size: 16px; }
.button-wide { width: 100%; min-height: 61px; }
.button-coral { color: white; background: var(--coral); box-shadow: 0 11px 26px rgba(255,79,120,.28); }
.button-coral:hover { background: var(--coral-dark); box-shadow: 0 15px 32px rgba(255,79,120,.34); }
.button-sun { color: #362400; background: var(--sun); box-shadow: 0 12px 29px rgba(64,31,0,.2); }
.button-sun:hover { background: #ffe26b; box-shadow: 0 16px 35px rgba(64,31,0,.26); }
.arrow { font-size: 22px; line-height: .7; transition: transform .18s ease; }
.button:hover .arrow, .text-cta:hover .arrow { transform: translateX(4px); }

.hero {
  min-height: 730px;
  padding: clamp(64px, 6vw, 92px) max(24px, calc((100vw - 1380px) / 2)) clamp(76px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(470px, .92fr) minmax(570px, 1.08fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  position: relative;
  color: white;
  background:
    radial-gradient(circle at 18% 84%, rgba(255,216,74,.22), transparent 22%),
    linear-gradient(125deg, #4520a4 0%, #6e39d8 45%, #e54183 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle, #fff 1.3px, transparent 1.5px); background-size: 35px 35px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-burst { position: absolute; border-radius: 50%; pointer-events: none; }
.burst-one { width: 340px; height: 340px; left: -190px; top: 80px; border: 58px solid rgba(255,216,74,.11); }
.burst-two { width: 190px; height: 190px; left: 45%; bottom: -125px; background: rgba(25,200,189,.19); }
.hero-copy, .hero-picture { position: relative; z-index: 2; }
.hero-copy { max-width: 650px; animation: rise .52s ease both; }
.club-badge {
  margin: 0 0 21px;
  padding: 10px 15px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: #fff4bd;
  background: rgba(255,255,255,.1);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .065em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.club-badge span { color: var(--sun); }
h1 { margin: 0; font-family: ui-rounded, "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(56px, 5.3vw, 82px); line-height: .98; letter-spacing: -.065em; font-weight: 900; }
h1 em { color: var(--sun); font-style: normal; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: #eee8ff; font-size: clamp(18px, 1.45vw, 21px); line-height: 1.62; }
.hero-lead strong { color: white; }
.hero-offer { margin-top: 34px; display: flex; align-items: center; gap: 24px; }
.hero-price { display: flex; align-items: center; gap: 10px; }
.hero-price b { font-size: 28px; letter-spacing: -.04em; }
.hero-price span { color: #dcd1f3; font-size: 10px; line-height: 1.45; }
.micro-trust { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 10px 20px; color: #ebe5fa; font-size: 11px; font-weight: 700; }
.guarantee-link { margin-top: 11px; display: inline-block; color: rgba(255,255,255,.68); font-size: 9px; text-decoration: underline; text-underline-offset: 3px; }
.guarantee-link:hover { color: white; }

.hero-picture {
  min-height: 570px;
  overflow: visible;
  border: 8px solid rgba(255,255,255,.92);
  border-radius: 44% 24px 40% 22px;
  background: #f6cde0;
  box-shadow: 0 35px 80px rgba(27,9,63,.35);
  animation: rise .6s .08s ease both;
}
.hero-picture > img { width: 100%; height: 100%; min-height: 554px; position: absolute; inset: 0; object-fit: cover; object-position: 62% center; border-radius: inherit; }
.hero-picture::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 -90px 100px rgba(28,10,52,.18); pointer-events: none; }
.prize-bubble { position: absolute; z-index: 3; padding: 11px 15px; border: 3px solid white; border-radius: 999px; color: var(--ink); background: white; box-shadow: 0 12px 32px rgba(45,16,84,.22); font-size: 12px; font-weight: 850; }
.bubble-auto { left: -34px; top: 70px; transform: rotate(-4deg); }
.bubble-travel { right: -28px; top: 42px; transform: rotate(4deg); background: var(--sun); }
.bubble-tech { right: -20px; bottom: 123px; transform: rotate(-3deg); background: #b7fff3; }
.hero-ticket {
  position: absolute;
  z-index: 4;
  left: -42px;
  bottom: 29px;
  min-width: 315px;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 19px;
  color: var(--ink);
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 45px rgba(42,15,83,.26);
  backdrop-filter: blur(12px);
}
.hero-ticket > span { width: 45px; height: 45px; flex: 0 0 45px; display: grid; place-items: center; border-radius: 50%; color: #402300; background: var(--sun); font-size: 20px; }
.hero-ticket div { display: grid; gap: 3px; }
.hero-ticket small { color: var(--coral); font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.hero-ticket b { font-size: 15px; line-height: 1.25; }
.symbol-label { position: absolute; z-index: 4; right: 13px; bottom: 10px; color: rgba(255,255,255,.82); font-size: 9px; }

.chance-ribbon {
  min-height: 76px;
  padding: 16px max(24px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  color: #3a2700;
  background: var(--sun);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.chance-ribbon i { width: 5px; height: 5px; flex: 0 0 5px; border-radius: 50%; background: rgba(58,39,0,.32); }

.section { padding: clamp(88px, 8.5vw, 128px) max(24px, calc((100vw - 1380px) / 2)); }
.section-heading { max-width: 850px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.eyebrow { margin: 0 0 17px; font-size: 12px; font-weight: 900; letter-spacing: .095em; text-transform: uppercase; }
.eyebrow.coral { color: var(--coral); }
.eyebrow.violet { color: var(--violet); }
.eyebrow.green { color: var(--green); }
.eyebrow.sunshine { color: #7a5500; }
.eyebrow.light { color: #cbbfff; }
.section h2, .final-cta h2 { margin: 0; font-family: ui-rounded, "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(42px, 4.5vw, 66px); line-height: 1.05; letter-spacing: -.055em; font-weight: 900; }
.section h2 span { color: var(--violet); }
.section-heading > p:not(.eyebrow) { max-width: 700px; margin: 22px auto 0; color: var(--muted); font-size: 18px; line-height: 1.65; }

.dream-section { background: var(--cream); }
.world-grid { margin-top: 56px; display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, minmax(260px, 1fr)); gap: 18px; }
.world-card { min-height: 280px; position: relative; overflow: hidden; border-radius: 27px; color: white; box-shadow: 0 20px 45px rgba(50,31,104,.13); }
.world-card-wide { grid-row: 1 / 3; min-height: 580px; }
.world-card > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .65s ease; }
.world-card:hover > img { transform: scale(1.045); }
.world-card-wide > img { object-position: 58% center; }
.world-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,11,46,.88) 0%, rgba(20,11,46,.1) 68%); }
.world-card:not(.world-card-wide) .world-shade { background: linear-gradient(90deg, rgba(20,11,46,.82), rgba(20,11,46,.1)); }
.world-copy { max-width: 580px; padding: 34px; position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; }
.world-card:not(.world-card-wide) .world-copy { max-width: 390px; padding: 27px; }
.world-icon { width: 47px; height: 47px; margin-bottom: 15px; display: grid; place-items: center; border-radius: 15px; background: rgba(255,255,255,.92); font-size: 24px; box-shadow: 0 8px 24px rgba(0,0,0,.13); }
.world-coral .world-icon { background: #ffd5df; }
.world-turquoise .world-icon { background: #bffdf6; }
.world-violet .world-icon { background: #e3d8ff; }
.world-copy p { margin: 0 0 8px; color: #fff0b0; font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.world-copy h3 { margin: 0; font-size: clamp(27px, 3vw, 44px); line-height: 1.07; letter-spacing: -.045em; }
.world-card:not(.world-card-wide) .world-copy h3 { font-size: 27px; }
.world-text { max-width: 520px; margin-top: 12px; display: block; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.55; }
.world-card:not(.world-card-wide) .world-text { font-size: 12px; }
.legal-note { margin: 19px 0 0; color: #918b83; font-size: 10px; text-align: center; }

.sales-story { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 9vw, 135px); align-items: center; background: white; }
.story-copy h2 span { color: var(--coral); }
.story-lead { margin: 28px 0 0; color: var(--ink-soft); font-size: 19px; line-height: 1.7; }
.story-punch { margin: 19px 0 0; padding-left: 20px; border-left: 5px solid var(--sun); color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.story-punch b { color: var(--ink); }
.text-cta { margin-top: 29px; display: inline-flex; align-items: center; gap: 10px; color: var(--violet); font-size: 15px; font-weight: 850; }
.story-cards { display: grid; gap: 14px; }
.story-card { min-height: 132px; padding: 25px 27px; display: grid; grid-template-columns: 92px 1fr; gap: 22px; align-items: center; border: 1px solid rgba(70,45,123,.1); border-radius: 23px; box-shadow: 0 14px 38px rgba(50,31,104,.09); transform: rotate(-1deg); }
.story-card:nth-child(2) { margin-left: 35px; transform: rotate(1.2deg); }
.story-card:nth-child(3) { margin-right: 22px; transform: rotate(-.6deg); }
.story-card > span { font-size: 43px; font-weight: 950; letter-spacing: -.06em; text-align: center; }
.story-card b { font-size: 20px; letter-spacing: -.025em; }
.story-card p { margin: 7px 0 0; color: rgba(23,21,43,.68); font-size: 13px; line-height: 1.5; }
.card-yellow { background: #fff0a9; }
.card-pink { background: #ffdbe8; }
.card-green { background: #c9f8e5; }

.how-section { color: white; text-align: center; background: radial-gradient(circle at 10% 5%, rgba(255,79,120,.25), transparent 26%), radial-gradient(circle at 90% 90%, rgba(25,200,189,.2), transparent 28%), var(--navy); }
.how-heading { max-width: 900px; margin-inline: auto; }
.how-heading h2 span { color: var(--sun); }
.steps { margin: 58px auto 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article { min-height: 330px; padding: 36px 30px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 27px; background: rgba(255,255,255,.075); text-align: left; backdrop-filter: blur(10px); }
.steps article::after { content: ""; width: 130px; height: 130px; position: absolute; right: -55px; bottom: -70px; border: 26px solid rgba(255,255,255,.045); border-radius: 50%; }
.step-number { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 22px; color: var(--ink); font-size: 27px; font-weight: 950; transform: rotate(-5deg); }
.step-one { background: var(--sun); }
.step-two { background: #ff91ae; }
.step-three { background: #70e8d7; }
.steps h3 { margin: 34px 0 13px; font-size: 25px; line-height: 1.12; letter-spacing: -.035em; }
.steps p { margin: 0; color: #c4bfd7; font-size: 15px; line-height: 1.65; }

.moments-section { background: var(--canvas); }
.moments-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.moments-heading > p { margin: 0 0 3px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.moments-heading h2 span { color: var(--coral); }
.moments-grid { margin-top: 58px; display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: repeat(2, 280px); gap: 16px; }
.moment { margin: 0; position: relative; overflow: hidden; border-radius: 26px; background: #e6dff5; box-shadow: var(--shadow); }
.moment-main { grid-row: 1 / 3; }
.moment img { width: 100%; height: 100%; object-fit: cover; }
.moment-main img { object-position: 62% center; }
.moment figcaption { padding: 21px 23px; display: flex; align-items: end; justify-content: space-between; gap: 18px; position: absolute; left: 12px; right: 12px; bottom: 12px; border: 1px solid rgba(255,255,255,.35); border-radius: 17px; color: white; background: rgba(28,18,53,.7); backdrop-filter: blur(9px); }
.moment figcaption b { max-width: 430px; font-size: 17px; line-height: 1.3; }
.moment figcaption span { flex: 0 0 auto; color: rgba(255,255,255,.66); font-size: 9px; }
.moment:not(.moment-main) figcaption { padding: 15px 16px; }
.moment:not(.moment-main) figcaption b { font-size: 13px; }

.success-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(65px, 9vw, 130px); align-items: center; background: #e9fbf8; }
.success-copy h2 span { color: var(--aqua-dark); }
.success-copy > p:not(.eyebrow) { margin: 25px 0 0; color: #4f6e6a; font-size: 17px; line-height: 1.7; }
.success-promise { margin-top: 27px; padding: 19px; display: flex; align-items: center; gap: 15px; border: 1px solid #b9e9df; border-radius: 17px; background: rgba(255,255,255,.72); }
.success-promise > span { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: 20px; font-weight: 900; }
.success-promise p { margin: 0; color: #52736c; font-size: 13px; line-height: 1.45; }
.success-promise b { color: var(--ink); font-size: 14px; }
.success-stack { padding: 27px; border: 1px solid #c8e9e2; border-radius: 27px; background: white; box-shadow: 0 27px 70px rgba(23,83,75,.14); transform: rotate(1deg); }
.stack-head { padding: 0 4px 19px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid #e3f0ed; }
.stack-head span { color: #70877f; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.stack-head b { padding: 8px 11px; border-radius: 999px; color: #08764d; background: #e5faef; font-size: 10px; }
.success-stack article { min-height: 88px; padding: 16px 4px; display: grid; grid-template-columns: 52px 1fr 33px; gap: 15px; align-items: center; border-bottom: 1px solid #e7f1ef; }
.success-icon { width: 51px; height: 51px; display: grid; place-items: center; border-radius: 16px; background: #f2f8f7; font-size: 25px; }
.success-stack article div { display: grid; gap: 5px; }
.success-stack article small { color: #799089; font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.success-stack article b { font-size: 14px; }
.success-check { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: 13px; font-weight: 900; }
.example-label { display: block; margin-top: 15px; color: #8da19c; font-size: 9px; text-align: center; }

.membership { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 10vw, 145px); align-items: center; color: white; background: radial-gradient(circle at 12% 18%, rgba(255,79,120,.28), transparent 27%), linear-gradient(135deg, #2b185d, #5a2bb9 74%, #6c36d5); }
.membership-copy h2 span { color: var(--sun); }
.membership-copy > p:not(.eyebrow) { margin: 26px 0 0; color: #ddd3f6; font-size: 18px; line-height: 1.7; }
.membership-seal { margin-top: 31px; display: flex; align-items: center; gap: 14px; }
.membership-seal > span { width: 55px; height: 55px; flex: 0 0 55px; display: grid; place-items: center; border-radius: 50%; color: #412900; background: var(--sun); font-size: 23px; transform: rotate(-7deg); }
.membership-seal div { display: grid; gap: 4px; }
.membership-seal b { font-size: 16px; }
.membership-seal small { color: #bdb0dc; font-size: 11px; }
.price-card { max-width: 590px; padding: clamp(31px, 4vw, 48px); position: relative; border: 5px solid var(--sun); border-radius: 31px; color: var(--ink); background: white; box-shadow: 0 35px 85px rgba(21,8,52,.38); }
.popular-label { padding: 10px 18px; position: absolute; top: -22px; left: 50%; border-radius: 999px; color: #3c2800; background: var(--sun); box-shadow: 0 7px 18px rgba(42,26,0,.16); font-size: 10px; font-weight: 950; letter-spacing: .09em; white-space: nowrap; transform: translateX(-50%); }
.price-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.price-title span { color: var(--violet); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-title b { padding: 8px 11px; border-radius: 999px; color: #08764d; background: #e6faef; font-size: 10px; }
.price { margin-top: 25px; display: flex; align-items: center; gap: 16px; }
.price strong { font-size: clamp(54px, 5vw, 72px); line-height: .95; letter-spacing: -.07em; }
.price span { color: var(--muted); font-size: 11px; line-height: 1.45; }
.price-sub { margin: 18px 0 0; color: var(--ink-soft); font-size: 15px; }
.monthly-guarantee { margin-top: 20px; padding: 15px 17px; display: flex; align-items: center; gap: 15px; border: 1px solid #f1cf42; border-radius: 16px; color: #3c2800; background: #fff8d5; }
.monthly-guarantee > strong { font-size: 38px; line-height: 1; letter-spacing: -.06em; }
.monthly-guarantee > span { display: grid; gap: 3px; }
.monthly-guarantee b { font-size: 13px; }
.monthly-guarantee small { color: #765d1a; font-size: 10px; }
.price-card > ul { margin: 25px 0; padding: 23px 0; display: grid; gap: 13px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.price-card > ul li { display: flex; align-items: center; gap: 11px; color: #4c4961; font-size: 13px; }
.price-card > ul span { width: 22px; height: 22px; flex: 0 0 22px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: 11px; font-weight: 900; }
.annual { margin-top: 14px; padding: 13px 15px; display: flex; justify-content: space-between; gap: 16px; border-radius: 13px; color: var(--ink-soft); background: var(--lavender); font-size: 11px; }
.annual b { color: var(--violet); }
.price-card > small { display: block; margin-top: 14px; color: #8b879a; font-size: 9px; line-height: 1.45; text-align: center; }

.faq { background: var(--cream); }
.faq-list { max-width: 940px; margin: 50px auto 0; border-top: 1px solid #e7dfcf; }
.faq details { border-bottom: 1px solid #e7dfcf; }
.faq summary { min-height: 82px; padding: 20px 4px; display: flex; align-items: center; justify-content: space-between; gap: 25px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: 50%; color: var(--coral); background: #ffe6ed; font-size: 25px; font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details > p { max-width: 790px; margin: -3px 0 28px; padding: 0 48px 0 4px; color: var(--muted); font-size: 15px; line-height: 1.72; }

.final-cta { padding: 88px 24px; color: white; text-align: center; background: radial-gradient(circle at 20% 20%, rgba(255,216,74,.24), transparent 22%), linear-gradient(120deg, var(--coral), #f0417c 48%, var(--violet)); }
.final-stars { margin-bottom: 17px; color: var(--sun); font-size: 22px; letter-spacing: 14px; }
.final-cta > p { margin: 0 0 13px; color: #ffe5ed; font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.final-cta h2 { font-size: clamp(45px, 5.2vw, 72px); }
.final-cta .button { margin-top: 31px; }
.final-cta > small { margin-top: 17px; display: block; color: #f7dce8; font-size: 10px; }

footer { padding: 72px max(24px, calc((100vw - 1380px) / 2)) 29px; display: grid; grid-template-columns: 1.55fr repeat(3, .75fr); gap: 48px; background: white; }
.footer-brand p { max-width: 370px; margin: 19px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; color: #6a657b; font-size: 12px; }
.footer-links b { margin-bottom: 4px; color: var(--ink); font-size: 13px; }
.footer-links a:hover { color: var(--coral); }
.footer-bottom { grid-column: 1 / -1; margin-top: 22px; padding-top: 24px; display: flex; justify-content: space-between; gap: 28px; border-top: 1px solid var(--line); color: #938fa0; font-size: 10px; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 1160px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-header nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { width: 44px; min-height: 44px; padding: 11px; display: grid; align-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 20px; height: 2px; display: block; border-radius: 2px; background: var(--ink); transform-origin: center; transition: transform .18s ease, opacity .18s ease; }
  .mobile-menu[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
  .mobile-menu[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu > div { width: 250px; padding: 12px; position: absolute; z-index: 5; top: 53px; right: 0; display: grid; border: 1px solid var(--line); border-radius: 17px; background: white; box-shadow: var(--shadow); }
  .mobile-menu > div a { padding: 12px 13px; border-radius: 10px; font-size: 13px; font-weight: 750; }
  .mobile-menu > div a:hover, .mobile-menu > div a:focus-visible { color: var(--violet); background: var(--lavender); }
  .hero { grid-template-columns: minmax(420px, .9fr) minmax(480px, 1.1fr); gap: 42px; }
  .hero-picture { min-height: 520px; }
  .hero-picture > img { min-height: 504px; }
  .prize-bubble { font-size: 10px; }
  .world-grid { grid-template-columns: 1fr 1fr; }
  .story-card:nth-child(2) { margin-left: 18px; }
  .moments-grid { grid-template-rows: repeat(2, 250px); }
}

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-picture { width: min(760px, 100%); min-height: 590px; }
  .hero-picture > img { min-height: 574px; }
  .chance-ribbon span:nth-of-type(even), .chance-ribbon i:nth-of-type(even) { display: none; }
  .sales-story, .success-section, .membership { grid-template-columns: 1fr; }
  .story-copy, .success-copy, .membership-copy { max-width: 760px; }
  .story-cards { max-width: 720px; }
  .steps { grid-template-columns: 1fr; max-width: 760px; }
  .steps article { min-height: auto; }
  .moments-heading { grid-template-columns: 1fr; gap: 22px; }
  .moments-heading > p { max-width: 720px; }
  .success-stack { max-width: 730px; }
  .price-card { max-width: 630px; }
  footer { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 720px) {
  .club-strip { min-height: 34px; font-size: 10px; }
  .strip-copy { display: none; }
  .site-header { min-height: 70px; padding: 10px 18px; grid-template-columns: 1fr auto auto; gap: 11px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-mark span { font-size: 17px; }
  .brand-name { font-size: 21px; }
  .header-actions .login-link { display: none; }
  .header-actions .button { min-height: 40px; padding-inline: 14px; font-size: 11px; }
  .mobile-menu summary { width: 40px; min-height: 40px; padding: 10px; gap: 4px; }
  .mobile-menu summary span { width: 18px; }
  .mobile-menu[open] summary span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu[open] summary span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu > div { width: 236px; top: 49px; }
  .hero { min-height: auto; padding: 57px 20px 72px; gap: 52px; }
  .club-badge { font-size: 10px; }
  h1 { font-size: clamp(48px, 14.5vw, 66px); }
  .hero-lead { margin-top: 22px; font-size: 17px; }
  .hero-offer { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-offer .button { width: 100%; }
  .micro-trust { gap: 9px 14px; font-size: 10px; }
  .hero-picture { min-height: 455px; border-width: 5px; border-radius: 90px 18px 80px 18px; }
  .hero-picture > img { min-height: 445px; }
  .bubble-auto { left: -8px; top: 35px; }
  .bubble-travel { right: -7px; top: 20px; }
  .bubble-tech { right: -7px; bottom: 96px; }
  .hero-ticket { left: 12px; right: 12px; bottom: 17px; min-width: 0; padding: 13px; }
  .hero-ticket > span { width: 39px; height: 39px; flex-basis: 39px; }
  .hero-ticket b { font-size: 13px; }
  .symbol-label { display: none; }
  .chance-ribbon { min-height: 63px; padding-inline: 20px; font-size: 11px; }
  .section { padding: 80px 20px; }
  .section h2, .final-cta h2 { font-size: clamp(39px, 11.2vw, 53px); }
  .section-heading > p:not(.eyebrow) { font-size: 16px; }
  .world-grid { margin-top: 40px; grid-template-columns: 1fr; grid-template-rows: none; }
  .world-card, .world-card-wide { min-height: 390px; grid-row: auto; }
  .world-card:not(.world-card-wide) .world-shade { background: linear-gradient(to top, rgba(20,11,46,.88), rgba(20,11,46,.08)); }
  .world-card:not(.world-card-wide) .world-copy { max-width: none; padding: 27px; }
  .world-card:not(.world-card-wide) .world-copy h3 { font-size: 29px; }
  .world-card:not(.world-card-wide) .world-text { font-size: 13px; }
  .sales-story { gap: 48px; }
  .story-lead { font-size: 17px; }
  .story-card, .story-card:nth-child(2), .story-card:nth-child(3) { margin: 0; padding: 21px; grid-template-columns: 70px 1fr; gap: 16px; transform: none; }
  .story-card > span { font-size: 34px; }
  .story-card b { font-size: 17px; }
  .how-section { text-align: left; }
  .steps { margin-top: 42px; }
  .how-section > .button { width: 100%; }
  .moments-grid { margin-top: 42px; grid-template-columns: 1fr; grid-template-rows: 420px repeat(2, 310px); }
  .moment-main { grid-row: auto; }
  .moment figcaption { padding: 16px; }
  .moment figcaption b { font-size: 14px; }
  .success-section, .membership { gap: 48px; }
  .success-stack { padding: 19px 14px; transform: none; }
  .stack-head { align-items: flex-start; flex-direction: column; gap: 9px; }
  .success-stack article { grid-template-columns: 45px 1fr 29px; gap: 11px; }
  .success-icon { width: 44px; height: 44px; font-size: 21px; }
  .price-card { padding: 34px 22px 26px; border-width: 4px; border-radius: 25px; }
  .price-title { align-items: flex-start; flex-direction: column; gap: 10px; }
  .price strong { font-size: 56px; }
  .annual { align-items: flex-start; flex-direction: column; gap: 5px; }
  .faq-list { margin-top: 40px; }
  .faq summary { min-height: 74px; font-size: 16px; }
  .faq details > p { padding-right: 8px; }
  .final-cta { padding: 72px 20px; }
  .final-cta .button { width: 100%; }
  footer { padding: 58px 20px 25px; grid-template-columns: 1fr 1fr; gap: 37px 23px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links:nth-of-type(4) { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 430px) {
  .header-actions .button { display: none; }
  .hero-picture { min-height: 400px; }
  .hero-picture > img { min-height: 390px; }
  .prize-bubble { padding: 9px 11px; border-width: 2px; font-size: 9px; }
  .bubble-tech { bottom: 88px; }
  .world-card, .world-card-wide { min-height: 350px; }
  .moments-grid { grid-template-rows: 360px repeat(2, 285px); }
  .moment figcaption { left: 8px; right: 8px; bottom: 8px; }
  .moment figcaption span { display: none; }
  footer { grid-template-columns: 1fr; }
  .footer-brand, .footer-links:nth-of-type(4) { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
