:root {
  --offer-navy: #0b103b;
  --offer-navy-soft: #171a4a;
  --offer-purple: #6c3bff;
  --offer-purple-dark: #5523d6;
  --offer-purple-soft: #8b5cf6;
  --offer-lilac: #f5f1ff;
  --offer-lilac-2: #faf8ff;
  --offer-line: #e6ddfb;
  --offer-muted: #6b708a;
  --offer-success: #1f9d68;
  --offer-warning: #bd6c1f;
  --offer-danger: #d33f5f;
  --offer-white: #fff;
  --offer-shadow-lg: 0 30px 90px rgba(67, 36, 150, .18);
  --offer-shadow-md: 0 18px 50px rgba(53, 31, 118, .12);
  --offer-shadow-sm: 0 10px 28px rgba(47, 27, 103, .09);
}

.home {
  background: #fff;
}

.home .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(230, 221, 251, .76);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px) saturate(140%);
  transition: min-height .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.home .site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 36px rgba(17, 21, 54, .08);
}

.home .header-inner {
  min-height: 78px;
  transition: min-height .25s ease;
}

.home .site-header.is-scrolled .header-inner {
  min-height: 68px;
}

.home .brand {
  position: relative;
  font-size: 1.38rem;
  letter-spacing: -.055em;
}

.home .brand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--offer-purple), transparent);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.home .brand:hover::after {
  transform: scaleX(1);
}

.home .site-nav a {
  position: relative;
  color: #41445e;
  font-weight: 750;
  transition: color .2s ease;
}

.home .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--offer-purple);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.home .site-nav a:hover {
  color: var(--offer-purple-dark);
}

.home .site-nav a:hover::after {
  transform: scaleX(1);
}

.home .store-link {
  border-color: #d8c9ff;
  box-shadow: 0 8px 20px rgba(108, 59, 255, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home .store-link:hover {
  transform: translateY(-2px);
  border-color: #bda7ff;
  box-shadow: 0 14px 28px rgba(108, 59, 255, .15);
}

.offer-home {
  position: relative;
  overflow: clip;
  color: var(--offer-navy);
}

.offer-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: 3px;
  pointer-events: none;
}

.offer-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #8d63ff, var(--offer-purple), #b998ff);
  box-shadow: 0 0 18px rgba(108, 59, 255, .5);
}

.offer-home svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.offer-hero {
  position: relative;
  isolation: isolate;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 20% 18%, rgba(126, 83, 255, .17), transparent 31%),
    radial-gradient(circle at 84% 70%, rgba(162, 124, 255, .16), transparent 34%),
    linear-gradient(135deg, #fbf9ff 0%, #f3eeff 49%, #fbfaff 100%);
}

.offer-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .38;
  background-image:
    linear-gradient(rgba(108, 59, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 59, 255, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), transparent 88%);
}

.offer-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.offer-orb-one {
  width: 390px;
  height: 390px;
  left: -170px;
  top: 38px;
  border: 1px solid rgba(108, 59, 255, .22);
  background: radial-gradient(circle at 65% 40%, rgba(255, 255, 255, .8), rgba(132, 91, 255, .13) 58%, transparent 72%);
  animation: offer-orbit 14s ease-in-out infinite alternate;
}

.offer-orb-two {
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: -190px;
  border: 1px solid rgba(108, 59, 255, .18);
  background: radial-gradient(circle at 32% 33%, rgba(255, 255, 255, .75), rgba(167, 128, 255, .16) 56%, transparent 72%);
  animation: offer-orbit 18s ease-in-out -4s infinite alternate-reverse;
}

.offer-float {
  position: absolute;
  z-index: -1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(108, 59, 255, .14);
  border-radius: 18px;
  color: var(--offer-purple);
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 20px 42px rgba(65, 36, 137, .13);
  backdrop-filter: blur(10px);
  pointer-events: none;
  animation: offer-float 6s ease-in-out infinite;
}

.offer-float svg {
  width: 22px;
  height: 22px;
}

.offer-float-heart {
  left: 5.5%;
  top: 33%;
}

.offer-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  align-items: center;
  gap: clamp(52px, 7vw, 108px);
}

.offer-hero-copy {
  max-width: 690px;
}

.offer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(108, 59, 255, .17);
  border-radius: 999px;
  color: var(--offer-purple-dark);
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 8px 22px rgba(70, 39, 143, .08);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.offer-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--offer-purple);
  box-shadow: 0 0 0 5px rgba(108, 59, 255, .11);
  animation: offer-pulse-dot 2.1s ease-in-out infinite;
}

.offer-hero h1 {
  max-width: 770px;
  margin: 24px 0 22px;
  color: var(--offer-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.45rem, 5.5vw, 6.15rem);
  line-height: .95;
  letter-spacing: -.066em;
}

.offer-hero h1 span {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(105deg, #7e48ff 0%, #5d2be2 56%, #a476ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.offer-hero h1 span::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: .05em;
  height: .09em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(108, 59, 255, .15), rgba(108, 59, 255, .55), rgba(108, 59, 255, .08));
  transform: scaleX(.18);
  transform-origin: left;
  animation: offer-underline 1.1s .35s cubic-bezier(.2, .8, .2, 1) forwards;
}

.offer-hero-text {
  max-width: 620px;
  margin: 0;
  color: var(--offer-muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.offer-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.offer-proof-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 86px;
  padding: 15px 14px;
  border: 1px solid rgba(108, 59, 255, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--offer-shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.offer-proof-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -65% 34%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 59, 255, .13), transparent 67%);
  transition: transform .3s ease;
}

.offer-proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 59, 255, .28);
  box-shadow: 0 16px 34px rgba(55, 30, 120, .14);
}

.offer-proof-card:hover::after {
  transform: translate(-18px, -10px) scale(1.16);
}

.offer-proof-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--offer-purple);
  background: linear-gradient(145deg, #f5efff, #ebe1ff);
}

.offer-proof-icon svg {
  width: 20px;
  height: 20px;
}

.offer-proof-card > span:last-child {
  position: relative;
  z-index: 1;
}

.offer-proof-card strong,
.offer-proof-card small {
  display: block;
}

.offer-proof-card strong {
  color: var(--offer-navy);
  font-size: .83rem;
  line-height: 1.25;
}

.offer-proof-card small {
  margin-top: 4px;
  color: var(--offer-muted);
  font-size: .68rem;
}

.offer-security-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: #555a73;
}

.offer-security-note > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--offer-success);
  background: rgba(31, 157, 104, .1);
}

.offer-security-note svg {
  width: 18px;
  height: 18px;
}

.offer-security-note p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.55;
}

.offer-claim-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(108, 59, 255, .16);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--offer-shadow-lg);
  backdrop-filter: blur(18px);
}

.offer-claim-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 255, 255, .92), rgba(108, 59, 255, .2), rgba(255, 255, 255, .7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.offer-card-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -130px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 74, 255, .18), transparent 68%);
  pointer-events: none;
  animation: offer-glow 5s ease-in-out infinite alternate;
}

.offer-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.offer-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.offer-card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  color: var(--offer-purple);
  background: linear-gradient(145deg, #f6f0ff, #e9ddff);
  box-shadow: inset 0 0 0 1px rgba(108, 59, 255, .1);
}

.offer-card-icon svg {
  width: 24px;
  height: 24px;
}

.offer-kicker {
  margin: 0 0 5px;
  color: var(--offer-purple);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-card-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.offer-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(108, 59, 255, .15);
  border-radius: 999px;
  color: #676b82;
  background: #faf8ff;
  font-size: .68rem;
  font-weight: 850;
  white-space: nowrap;
}

.offer-availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ba0b4;
}

.offer-availability[data-state="available"] {
  color: #177d55;
  border-color: rgba(31, 157, 104, .18);
  background: rgba(31, 157, 104, .08);
}

.offer-availability[data-state="available"] .offer-availability-dot {
  background: var(--offer-success);
  box-shadow: 0 0 0 5px rgba(31, 157, 104, .1);
}

.offer-availability[data-state="cooldown"] {
  color: #965214;
  border-color: rgba(189, 108, 31, .18);
  background: rgba(189, 108, 31, .08);
}

.offer-availability[data-state="cooldown"] .offer-availability-dot {
  background: var(--offer-warning);
}

.offer-availability[data-state="checking"] .offer-availability-dot {
  animation: offer-pulse-dot 1.4s ease-in-out infinite;
}

.offer-form {
  position: relative;
  z-index: 1;
}

.offer-field-group {
  display: block;
}

.offer-field-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.offer-field-heading label {
  color: var(--offer-navy);
  font-size: .82rem;
  font-weight: 850;
}

.offer-field-heading span {
  color: #888ca1;
  font-size: .68rem;
  font-weight: 750;
}

.offer-input-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 14px 0 16px;
  border: 1px solid #dcd4eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(22, 16, 54, .03);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.offer-input-shell:hover {
  border-color: #c9b9ef;
}

.offer-input-shell:focus-within {
  border-color: var(--offer-purple);
  box-shadow: 0 0 0 5px rgba(108, 59, 255, .1), 0 12px 30px rgba(61, 35, 126, .08);
  transform: translateY(-1px);
}

.offer-input-shell.has-error {
  border-color: var(--offer-danger);
  box-shadow: 0 0 0 5px rgba(211, 63, 95, .08);
}

.offer-instagram-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 11px;
  color: var(--offer-purple);
  background: linear-gradient(145deg, #f4edff, #ece2ff);
}

.offer-instagram-icon svg {
  width: 19px;
  height: 19px;
}

.offer-instagram-icon .fill-dot {
  fill: currentColor;
  stroke: none;
}

.offer-input-shell input {
  min-width: 0;
  width: 100%;
  height: 58px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--offer-navy);
  background: transparent;
  font: inherit;
  font-size: .87rem;
}

.offer-input-shell input::placeholder {
  color: #a1a4b5;
}

.offer-input-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: #70688a;
  background: #f6f3fb;
  font-size: .62rem;
  font-weight: 850;
  white-space: nowrap;
}

.offer-field-help,
.offer-field-error {
  margin: 7px 2px 0;
  font-size: .7rem;
  line-height: 1.45;
}

.offer-field-help {
  color: #85899c;
}

.offer-field-error {
  min-height: 1.1em;
  color: var(--offer-danger);
  font-weight: 750;
}

.offer-verification {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, 1.2fr);
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #e3dcf2;
  border-radius: 18px;
  background: linear-gradient(145deg, #fcfbff, #f7f4fc);
}

.offer-verification-copy {
  display: flex;
  align-items: center;
  gap: 11px;
}

.offer-verification-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--offer-purple);
  background: #eee6ff;
}

.offer-verification-icon svg {
  width: 19px;
  height: 19px;
}

.offer-verification-copy strong,
.offer-verification-copy small {
  display: block;
}

.offer-verification-copy strong {
  color: var(--offer-navy);
  font-size: .77rem;
}

.offer-verification-copy small {
  margin-top: 3px;
  color: var(--offer-muted);
  font-size: .65rem;
  line-height: 1.35;
}

.offer-turnstile-wrap {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
}

.offer-turnstile-wrap .cf-turnstile {
  max-width: 100%;
}

.offer-basic-check {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid #ddd7e8;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.offer-basic-check input {
  position: absolute;
  opacity: 0;
}

.offer-check-box {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 2px solid #bdb8c9;
  border-radius: 6px;
  transition: background-color .2s ease, border-color .2s ease;
}

.offer-basic-check input:checked + .offer-check-box {
  border-color: var(--offer-purple);
  background: var(--offer-purple);
  box-shadow: inset 0 0 0 5px #fff;
}

.offer-basic-check strong,
.offer-basic-check small {
  display: block;
}

.offer-basic-check strong {
  font-size: .78rem;
}

.offer-basic-check small {
  margin-top: 2px;
  color: var(--offer-muted);
  font-size: .64rem;
}

.offer-submit {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 58px;
  margin-top: 18px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(105deg, #5924da, #6c3bff 54%, #8d5fff);
  box-shadow: 0 15px 34px rgba(108, 59, 255, .28);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.offer-submit::before {
  content: "";
  position: absolute;
  inset: -120% auto -120% -35%;
  width: 30%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
  transition: left .55s ease;
}

.offer-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(108, 59, 255, .34);
  filter: saturate(1.06);
}

.offer-submit:hover::before {
  left: 118%;
}

.offer-submit:active {
  transform: translateY(-1px) scale(.995);
}

.offer-submit:disabled {
  cursor: not-allowed;
  opacity: .6;
  transform: none;
  box-shadow: 0 10px 24px rgba(108, 59, 255, .16);
}

.offer-submit[aria-busy="true"] {
  animation: offer-button-breathe 1.2s ease-in-out infinite;
}

.offer-submit-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .14);
}

.offer-submit-icon svg {
  width: 16px;
  height: 16px;
}

.offer-submit-copy {
  text-align: center;
}

.offer-submit-arrow {
  font-size: 1.2rem;
}

.offer-mini-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 13px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #6d7187;
  background: #f8f6fc;
  font-size: .68rem;
}

.offer-mini-status strong {
  color: var(--offer-navy);
  font-size: .72rem;
}

.offer-form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 13px;
}

.offer-form-trust p {
  margin: 0;
  color: #71758a;
  font-size: .63rem;
  font-weight: 700;
}

.offer-form-trust p span {
  color: var(--offer-purple);
}

.offer-process,
.offer-overview,
.offer-important {
  background: #fff;
}

.offer-process {
  padding-top: 86px;
  padding-bottom: 82px;
}

.offer-section-heading {
  max-width: 730px;
  margin: 0 auto 38px;
  text-align: center;
}

.offer-section-heading > p {
  margin: 0 0 8px;
  color: var(--offer-purple);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.offer-section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.offer-section-heading > span {
  display: block;
  max-width: 610px;
  margin: 13px auto 0;
  color: var(--offer-muted);
  font-size: .92rem;
  line-height: 1.65;
}

.offer-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.offer-process-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 59, 255, .28), transparent);
  pointer-events: none;
}

.offer-process-card {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(108, 59, 255, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--offer-shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.offer-process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(108, 59, 255, .28);
  box-shadow: 0 24px 48px rgba(48, 28, 103, .14);
}

.offer-step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(108, 59, 255, .26);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -.05em;
}

.offer-step-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: var(--offer-purple);
  background: linear-gradient(145deg, #f3ecff, #e8ddff);
  box-shadow: inset 0 0 0 1px rgba(108, 59, 255, .1);
}

.offer-step-icon svg {
  width: 24px;
  height: 24px;
}

.offer-process-card h3 {
  margin: 24px 0 9px;
  font-size: 1.05rem;
}

.offer-process-card p {
  margin: 0;
  color: var(--offer-muted);
  font-size: .82rem;
  line-height: 1.65;
}

.offer-dashboard {
  position: relative;
  padding-top: 42px;
  padding-bottom: 88px;
  background: linear-gradient(180deg, #fff 0%, #f8f5ff 100%);
}

.offer-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 24px;
}

.offer-status-card,
.offer-growth-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(108, 59, 255, .13);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--offer-shadow-md);
}

.offer-status-card {
  padding: 28px;
}

.offer-status-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.offer-status-header h2,
.offer-growth-card h2,
.offer-overview-copy h2,
.offer-important h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.04em;
}

.offer-status-header h2 {
  font-size: 2rem;
}

.offer-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #5f647b;
  background: #f6f3fb;
  font-size: .66rem;
  font-weight: 800;
}

.offer-live-pill > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--offer-success);
  box-shadow: 0 0 0 4px rgba(31, 157, 104, .1);
}

.offer-status-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 26px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, #faf8ff, #f3eeff);
}

.offer-status-copy {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.offer-status-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--offer-purple);
  background: #fff;
  box-shadow: 0 10px 24px rgba(62, 34, 130, .1);
}

.offer-status-icon svg {
  width: 22px;
  height: 22px;
}

.offer-status-copy h3 {
  margin: 1px 0 7px;
  font-size: 1rem;
}

.offer-status-copy p {
  margin: 0;
  max-width: 440px;
  color: var(--offer-muted);
  font-size: .78rem;
  line-height: 1.55;
}

.offer-countdown-wrap {
  min-width: 242px;
  text-align: right;
}

.offer-countdown-wrap small {
  color: #777b90;
  font-size: .67rem;
  font-weight: 750;
}

.offer-countdown {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 8px;
}

.offer-countdown div {
  min-width: 55px;
  text-align: center;
}

.offer-countdown strong,
.offer-countdown span {
  display: block;
}

.offer-countdown strong {
  color: var(--offer-purple-dark);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .02em;
}

.offer-countdown span {
  margin-top: 5px;
  color: #878b9d;
  font-size: .55rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-countdown b {
  margin-top: 1px;
  color: rgba(108, 59, 255, .44);
  font-size: 1.65rem;
}

.offer-status-card[data-state="available"] .offer-status-icon {
  color: var(--offer-success);
}

.offer-status-card[data-state="available"] .offer-countdown strong {
  color: var(--offer-success);
}

.offer-status-card[data-state="cooldown"] .offer-status-icon {
  color: var(--offer-warning);
}

.offer-status-card[data-state="cooldown"] .offer-countdown strong {
  color: var(--offer-warning);
}

.offer-growth-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  align-items: center;
  min-height: 100%;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 40%, rgba(130, 82, 255, .18), transparent 36%),
    linear-gradient(145deg, #fbf9ff, #f2ecff);
}

.offer-growth-card h2 {
  max-width: 390px;
  font-size: 2rem;
  line-height: 1.12;
}

.offer-growth-card p:not(.offer-kicker) {
  max-width: 420px;
  margin: 13px 0 20px;
  color: var(--offer-muted);
  font-size: .82rem;
  line-height: 1.65;
}

.offer-growth-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--offer-purple);
  box-shadow: 0 12px 26px rgba(108, 59, 255, .23);
  font-size: .76rem;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease;
}

.offer-growth-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(108, 59, 255, .29);
}

.offer-growth-art {
  position: relative;
  min-height: 190px;
}

.offer-growth-phone,
.offer-growth-like {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--offer-purple);
}

.offer-growth-phone {
  width: 92px;
  height: 146px;
  right: 10px;
  top: 18px;
  border: 1px solid rgba(108, 59, 255, .18);
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, #e9ddff);
  box-shadow: 0 24px 42px rgba(61, 34, 129, .19);
  transform: rotate(8deg);
}

.offer-growth-phone svg {
  width: 48px;
  height: 70px;
}

.offer-growth-like {
  width: 54px;
  height: 54px;
  left: 4px;
  bottom: 10px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #8d5fff, #5a27dc);
  box-shadow: 0 16px 30px rgba(108, 59, 255, .3);
  animation: offer-float 5s ease-in-out -1.5s infinite;
}

.offer-growth-like svg {
  width: 24px;
  height: 24px;
}

.offer-overview {
  padding-top: 90px;
  padding-bottom: 90px;
}

.offer-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
}

.offer-overview-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.08;
}

.offer-overview-copy p:not(.offer-kicker) {
  margin: 0 0 16px;
  color: #5f647a;
  font-size: .9rem;
  line-height: 1.78;
}

.offer-overview-copy a {
  color: var(--offer-purple-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(108, 59, 255, .28);
  text-underline-offset: 3px;
}

.offer-overview-card {
  position: sticky;
  top: 105px;
  padding: 28px;
  border: 1px solid rgba(108, 59, 255, .16);
  border-radius: 24px;
  background: linear-gradient(145deg, #fbf9ff, #f3edff);
  box-shadow: var(--offer-shadow-md);
}

.offer-overview-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.offer-overview-card-top > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--offer-purple);
  background: #fff;
}

.offer-overview-card-top svg {
  width: 21px;
  height: 21px;
}

.offer-overview-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.offer-overview-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.offer-overview-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5e6379;
  font-size: .78rem;
  line-height: 1.5;
}

.offer-overview-card li span {
  color: var(--offer-purple);
  font-weight: 900;
}

.offer-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--offer-purple-dark);
  font-size: .77rem;
  font-weight: 850;
}

.offer-text-link span {
  transition: transform .2s ease;
}

.offer-text-link:hover span {
  transform: translateX(4px);
}

.offer-faq {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, #faf8ff, #f5f1ff);
}

.offer-faq-grid {
  max-width: 920px;
  margin: 0 auto;
}

.offer-faq-item {
  margin-bottom: 12px;
  border: 1px solid rgba(108, 59, 255, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 26px rgba(49, 28, 105, .07);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.offer-faq-item[open] {
  border-color: rgba(108, 59, 255, .3);
  box-shadow: 0 18px 34px rgba(49, 28, 105, .11);
  transform: translateY(-2px);
}

.offer-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 0 22px;
  color: var(--offer-navy);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 850;
  list-style: none;
}

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

.offer-faq-toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--offer-purple);
  background: #f2ecff;
  transition: transform .2s ease, background-color .2s ease;
}

.offer-faq-toggle svg {
  width: 17px;
  height: 17px;
}

.offer-faq-item[open] .offer-faq-toggle {
  transform: rotate(180deg);
  background: #e9deff;
}

.offer-faq-answer {
  padding: 0 22px 22px;
}

.offer-faq-answer p {
  margin: 0;
  color: var(--offer-muted);
  font-size: .82rem;
  line-height: 1.68;
}

.offer-faq-more {
  margin: 24px 0 0;
  text-align: center;
}

.offer-important {
  padding-top: 54px;
  padding-bottom: 70px;
}

.offer-important-inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 30px;
  padding: 26px 30px;
  border: 1px solid rgba(108, 59, 255, .13);
  border-radius: 24px;
  background: linear-gradient(145deg, #fbf9ff, #f5efff);
}

.offer-important-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.offer-important-title > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: var(--offer-purple);
  background: #fff;
}

.offer-important-title svg {
  width: 21px;
  height: 21px;
}

.offer-important h2 {
  font-size: 1.7rem;
}

.offer-important ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-important li {
  position: relative;
  padding-left: 18px;
  color: #62677d;
  font-size: .76rem;
  line-height: 1.5;
}

.offer-important li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--offer-purple);
  box-shadow: 0 0 0 4px rgba(108, 59, 255, .09);
}

.offer-mobile-claim {
  display: none;
}

.offer-home [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}

.offer-home [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.offer-home .ad-section[hidden] {
  display: none !important;
}

@keyframes offer-orbit {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(32px, -18px, 0) scale(1.05); }
}

@keyframes offer-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes offer-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.72); }
}

@keyframes offer-underline {
  to { transform: scaleX(1); }
}

@keyframes offer-glow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-24px, 22px, 0) scale(1.14); }
}

@keyframes offer-button-breathe {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}

@media (max-width: 1120px) {
  .offer-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
    gap: 42px;
  }

  .offer-hero h1 {
    font-size: clamp(3.5rem, 6vw, 5rem);
  }

  .offer-proof-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .offer-proof-card {
    min-height: 72px;
  }

  .offer-verification {
    grid-template-columns: 1fr;
  }

  .offer-turnstile-wrap {
    justify-content: flex-start;
  }

  .offer-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home .site-nav {
    display: none;
  }

  .offer-hero {
    padding: 70px 0 72px;
  }

  .offer-hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .offer-hero-copy {
    max-width: 760px;
  }

  .offer-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .offer-process-grid {
    grid-template-columns: 1fr;
  }

  .offer-process-grid::before {
    display: none;
  }

  .offer-process-card {
    min-height: 0;
  }

  .offer-overview-grid {
    grid-template-columns: 1fr;
  }

  .offer-overview-card {
    position: relative;
    top: auto;
  }

  .offer-important-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home .header-inner {
    min-height: 66px;
  }

  .home .brand {
    font-size: 1.16rem;
  }

  .home .store-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: .76rem;
  }

  .offer-hero {
    padding: 54px 0 58px;
  }

  .offer-hero h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .offer-hero-text {
    font-size: .96rem;
  }

  .offer-proof-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-proof-card {
    min-height: 70px;
  }

  .offer-security-note {
    align-items: flex-start;
  }

  .offer-claim-card {
    padding: 22px;
    border-radius: 24px;
  }

  .offer-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-availability {
    align-self: stretch;
    justify-content: center;
  }

  .offer-field-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .offer-input-shell {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 58px;
  }

  .offer-input-badge {
    display: none;
  }

  .offer-turnstile-wrap {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .offer-form-trust {
    justify-content: flex-start;
  }

  .offer-process,
  .offer-overview,
  .offer-faq {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .offer-section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .offer-section-heading > span {
    margin-left: 0;
  }

  .offer-status-card,
  .offer-growth-card {
    border-radius: 22px;
  }

  .offer-status-card {
    padding: 22px;
  }

  .offer-status-header,
  .offer-status-body {
    display: block;
  }

  .offer-live-pill {
    margin-top: 14px;
  }

  .offer-countdown-wrap {
    min-width: 0;
    margin-top: 24px;
    text-align: left;
  }

  .offer-countdown {
    justify-content: flex-start;
  }

  .offer-growth-card {
    grid-template-columns: 1fr;
  }

  .offer-growth-art {
    min-height: 150px;
    margin-top: 10px;
  }

  .offer-growth-phone {
    right: 22%;
  }

  .offer-growth-like {
    left: 32%;
  }

  .offer-overview-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .offer-important ul {
    grid-template-columns: 1fr;
  }

  .offer-mobile-claim {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(105deg, #5924da, #6c3bff 58%, #8d5fff);
    box-shadow: 0 20px 38px rgba(46, 23, 108, .34);
    font-size: .84rem;
    font-weight: 900;
    transition: opacity .2s ease, transform .2s ease;
  }

  .offer-mobile-claim.is-hidden {
    opacity: 0;
    transform: translateY(80px);
    pointer-events: none;
  }

  .home .site-footer {
    padding-bottom: 78px;
  }
}

@media (max-width: 420px) {
  .offer-hero h1 {
    font-size: 2.75rem;
  }

  .offer-card-heading {
    align-items: flex-start;
  }

  .offer-card-icon {
    width: 46px;
    height: 46px;
  }

  .offer-input-shell {
    padding-left: 12px;
  }

  .offer-instagram-icon {
    width: 32px;
    height: 32px;
  }

  .offer-verification {
    padding: 13px;
  }

  .offer-countdown div {
    min-width: 48px;
  }

  .offer-countdown strong {
    font-size: 1.75rem;
  }
}

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

  .offer-home [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
