:root {
  color-scheme: light;
  --navy: #050b3a;
  --ink: #101738;
  --muted: #626a83;
  --paper: #fbfaf8;
  --white: #ffffff;
  --line: #dedfea;
  --grape: #7441f5;
  --grape-deep: #5a31d6;
  --lavender: #eee9ff;
  --coral: #d96559;
  --coral-soft: #fff0ec;
  --blue: #285f9d;
  --blue-soft: #eaf2fb;
  --green: #168361;
  --gold: #c5902b;
  --slate: #59656e;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
}

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

a:focus-visible {
  outline: 3px solid #2878f0;
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 248, 0.96);
  border-bottom: 1px solid rgba(222, 223, 234, 0.78);
  display: flex;
  height: 72px;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  position: relative;
  z-index: 20;
}

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

.compact-brand img {
  display: block;
  height: 38px;
  width: 38px;
}

.compact-brand span {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 850;
}

.header-link {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero {
  isolation: isolate;
  min-height: calc(100svh - 100px);
  overflow: clip;
  padding: clamp(28px, 5vw, 68px) clamp(20px, 7vw, 104px) clamp(36px, 5vw, 64px);
  position: relative;
}

.hero::before {
  border-left: 1px solid rgba(116, 65, 245, 0.11);
  border-right: 1px solid rgba(116, 65, 245, 0.11);
  content: "";
  inset: 0 16% 0 auto;
  position: absolute;
  width: 34%;
  z-index: -2;
}

.hero-copy {
  align-items: start;
  display: grid;
  gap: 15px;
  max-width: 650px;
  position: relative;
  z-index: 5;
}

.hero-brand {
  align-items: center;
  display: flex;
  gap: 3px;
  margin: -22px 0 -20px -26px;
}

.hero-brand img {
  display: block;
  height: 116px;
  object-fit: contain;
  width: 116px;
}

.hero-brand strong {
  color: var(--navy);
  font-size: 2rem;
  font-weight: 850;
}

.status {
  align-items: center;
  color: var(--grape-deep);
  display: flex;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status span {
  background: var(--grape);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

h1 {
  color: var(--navy);
  font-size: clamp(3.25rem, 7vw, 6.6rem);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.94;
  max-width: 690px;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  max-width: 560px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 7px;
}

.primary-action {
  align-items: center;
  background: var(--grape);
  border-radius: 6px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.93rem;
  font-weight: 800;
  gap: 18px;
  justify-content: center;
  min-height: 48px;
  padding: 13px 17px;
}

.primary-action:hover {
  background: var(--grape-deep);
}

.email-note {
  color: var(--muted);
  font-size: 0.83rem;
}

.email-note small {
  color: #7b8194;
  display: block;
  font-size: 0.68rem;
  margin-top: 2px;
}

.member-note {
  color: #70768b;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 440px;
}

.phone-stage {
  height: min(570px, 72vw);
  max-height: 570px;
  min-height: 430px;
  pointer-events: none;
  position: absolute;
  right: clamp(-36px, 1vw, 18px);
  top: clamp(28px, 4vw, 54px);
  width: min(53vw, 680px);
  z-index: 2;
}

.phone {
  --theme: var(--grape);
  --theme-soft: var(--lavender);
  background: var(--white);
  border: 7px solid var(--navy);
  border-radius: 34px;
  box-shadow: 0 25px 58px rgba(5, 11, 58, 0.18);
  color: var(--ink);
  display: grid;
  gap: 12px;
  height: 480px;
  overflow: hidden;
  padding: 16px 17px 14px;
  position: absolute;
  width: 250px;
}

.phone-coral {
  --theme: var(--coral);
  --theme-soft: var(--coral-soft);
  right: 48px;
  top: 10px;
  transform: rotate(6deg);
  z-index: 1;
}

.phone-grape {
  --theme: var(--grape);
  --theme-soft: var(--lavender);
  right: 300px;
  top: 68px;
  transform: rotate(-7deg);
  z-index: 2;
}

.phone-topline,
.business-header,
.phone nav,
.theme-key {
  align-items: center;
  display: flex;
}

.phone-topline {
  color: #5f6578;
  font-size: 0.62rem;
  justify-content: space-between;
}

.phone-topline b {
  color: var(--grape);
  font-size: 0.7rem;
}

.business-header {
  gap: 9px;
}

.business-logo {
  border-radius: 50%;
  display: block;
  flex: 0 0 34px;
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.business-header > span:last-child {
  display: grid;
  min-width: 0;
}

.business-header b {
  color: var(--navy);
  font-size: 0.79rem;
}

.business-header small {
  color: #73798c;
  font-size: 0.58rem;
}

.promo-image {
  align-items: end;
  background-color: var(--theme-soft);
  border-radius: 16px;
  display: flex;
  height: 145px;
  overflow: hidden;
  padding: 13px;
  position: relative;
}

.promo-image img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.promo-cafe img {
  object-position: 50% 58%;
}

.promo-nails img {
  object-position: 58% 62%;
}

.reward-copy {
  display: grid;
  gap: 3px;
}

.reward-copy strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.08;
}

.reward-copy span {
  color: #70758a;
  font-size: 0.66rem;
  font-weight: 750;
}

.reward-progress {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.reward-progress b {
  background: var(--theme-soft);
  border-radius: 999px;
  color: var(--theme);
  font-size: 0.58rem;
  line-height: 1;
  padding: 4px 6px;
}

.progress {
  background: #ececf2;
  border-radius: 99px;
  height: 7px;
  overflow: hidden;
}

.progress i {
  background: var(--theme);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 78%;
}

.phone-grape .progress i {
  width: 75%;
}

.phone > p {
  color: #676d80;
  font-size: 0.67rem;
  line-height: 1.4;
}

.phone nav {
  align-self: end;
  border-top: 1px solid #e7e7ee;
  font-size: 0.6rem;
  justify-content: space-between;
  padding-top: 12px;
}

.phone nav b {
  color: var(--theme);
}

.phone nav span {
  color: #74798b;
}

.theme-key {
  background: var(--navy);
  border-radius: 999px;
  bottom: 6px;
  color: var(--white);
  gap: 7px;
  max-width: 360px;
  padding: 10px 14px;
  position: absolute;
  right: 95px;
  z-index: 4;
}

.theme-key > span:not(:last-child) {
  border: 2px solid var(--white);
  border-radius: 50%;
  flex: 0 0 15px;
  height: 15px;
}

.theme-key > span:last-child {
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}

.coral-dot,
.theme-coral { background: var(--coral); }
.blue-dot,
.theme-blue { background: var(--blue); }
.green-dot,
.theme-green { background: var(--green); }
.theme-grape { background: var(--grape); }
.theme-gold { background: var(--gold); }
.theme-slate { background: var(--slate); }

.customisation {
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: clamp(34px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 7vw, 104px);
}

.customisation-heading {
  align-self: start;
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.eyebrow {
  color: #bca8ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
}

.customisation-points {
  display: grid;
  gap: 0;
}

.customisation-points article {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  display: grid;
  gap: 10px;
  grid-template-columns: 40px 150px 1fr;
  padding: 22px 0;
}

.customisation-points article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.customisation-points span {
  color: #a99fc9;
  font-size: 0.72rem;
  font-weight: 800;
}

.customisation-points h3 {
  color: var(--white);
  font-size: 1rem;
}

.customisation-points p {
  color: #c7c8d8;
  font-size: 0.86rem;
  line-height: 1.55;
}

.theme-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  grid-column: 1 / -1;
}

.theme-row span {
  align-items: center;
  color: #d9dae6;
  display: inline-flex;
  font-size: 0.72rem;
  gap: 7px;
}

.theme-row i {
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  display: block;
  height: 14px;
  width: 14px;
}

footer {
  align-items: center;
  background: #03072a;
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 112px;
  padding: 24px clamp(20px, 7vw, 104px);
}

.footer-brand span,
footer p,
footer nav a {
  color: #dfe0ea;
}

.footer-brand img {
  height: 30px;
  width: 30px;
}

footer p,
footer nav a {
  font-size: 0.76rem;
}

footer nav {
  display: flex;
  gap: 20px;
  justify-content: end;
}

.privacy-main {
  padding: clamp(42px, 7vw, 88px) clamp(20px, 7vw, 104px) clamp(64px, 9vw, 112px);
}

.privacy-copy {
  margin: 0 auto;
  max-width: 800px;
}

.privacy-copy,
.privacy-meta,
.privacy-copy section,
.privacy-copy h1,
.privacy-copy section h2 {
  content-visibility: visible;
  visibility: visible;
}

.privacy-copy > .eyebrow {
  color: var(--grape-deep);
  margin-bottom: 14px;
}

.privacy-copy h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 22px;
}

.privacy-intro {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  max-width: 700px;
}

.privacy-meta {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 22px;
  padding-bottom: 28px;
}

.privacy-copy section {
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.privacy-copy section h2 {
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: 13px;
}

.privacy-copy section p,
.privacy-copy section li {
  color: #4e566f;
  font-size: 0.94rem;
  line-height: 1.7;
}

.privacy-copy section p + p,
.privacy-copy section ul + p {
  margin-top: 13px;
}

.privacy-copy ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.privacy-copy section a {
  color: var(--grape-deep);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-back {
  margin-top: 34px;
}

.privacy-back .primary-action {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-copy {
    max-width: 54%;
  }

  .phone-stage {
    right: -100px;
    width: 590px;
  }

  .phone-grape {
    right: 290px;
  }

  .phone-coral {
    right: 55px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 62px;
    padding: 0 18px;
  }

  .compact-brand img {
    height: 33px;
    width: 33px;
  }

  .compact-brand span {
    font-size: 1rem;
  }

  .header-link {
    font-size: 0.76rem;
  }

  .hero {
    min-height: calc(100svh - 82px);
    padding: 20px 18px 34px;
  }

  .hero::before {
    inset: 0 19% 0 auto;
    width: 42%;
  }

  .hero-copy {
    gap: 11px;
    max-width: none;
  }

  .hero-brand {
    margin: -17px 0 -18px -20px;
  }

  .hero-brand img {
    height: 90px;
    width: 90px;
  }

  .hero-brand strong {
    font-size: 1.55rem;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    max-width: 350px;
  }

  .hero-lead {
    font-size: 0.9rem;
    line-height: 1.48;
    max-width: 355px;
  }

  .hero-actions {
    margin-top: 3px;
  }

  .primary-action {
    min-height: 44px;
    padding: 10px 14px;
  }

  .email-note {
    font-size: 0.72rem;
  }

  .member-note {
    display: none;
  }

  .phone-stage {
    bottom: 10px;
    height: 305px;
    left: 0;
    min-height: 0;
    right: auto;
    top: auto;
    width: 100%;
  }

  .phone {
    border-width: 5px;
    border-radius: 25px;
    gap: 8px;
    height: 278px;
    padding: 10px 11px 9px;
    width: 148px;
  }

  .phone-coral {
    right: calc(50% - 148px);
    top: 6px;
    transform: rotate(5deg);
  }

  .phone-grape {
    left: calc(50% - 160px);
    right: auto;
    top: 25px;
    transform: rotate(-6deg);
  }

  .phone-topline {
    font-size: 0.43rem;
  }

  .phone-topline b {
    font-size: 0.48rem;
  }

  .business-header {
    gap: 5px;
  }

  .business-logo {
    flex-basis: 24px;
    height: 24px;
    width: 24px;
  }

  .business-header b {
    font-size: 0.55rem;
  }

  .business-header small {
    font-size: 0.4rem;
  }

  .promo-image {
    border-radius: 10px;
    height: 80px;
    padding: 7px;
  }

  .reward-copy strong {
    font-size: 0.68rem;
  }

  .reward-copy span,
  .phone > p,
  .phone nav {
    font-size: 0.45rem;
  }

  .reward-progress b {
    font-size: 0.4rem;
    padding: 3px 4px;
  }

  .progress {
    height: 5px;
  }

  .phone nav {
    padding-top: 7px;
  }

  .theme-key {
    bottom: 0;
    left: 50%;
    max-width: 310px;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 42px);
  }

  .theme-key > span:last-child {
    font-size: 0.56rem;
  }

  .customisation {
    gap: 34px;
    grid-template-columns: 1fr;
    padding: 58px 20px 64px;
  }

  .customisation-points article {
    gap: 8px;
    grid-template-columns: 32px 1fr;
    padding: 18px 0;
  }

  .customisation-points p {
    grid-column: 2;
    font-size: 0.79rem;
  }

  .theme-row {
    gap: 10px 14px;
  }

  footer {
    gap: 12px;
    grid-template-columns: 1fr auto;
    padding: 22px 20px;
  }

  footer p {
    display: none;
  }

  .privacy-main {
    padding: 34px 18px 64px;
  }

  .privacy-copy section {
    padding: 25px 0;
  }

  .privacy-copy section p,
  .privacy-copy section li {
    font-size: 0.9rem;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: calc(100svh - 74px);
  }

  .hero-brand img {
    height: 82px;
    width: 82px;
  }

  .hero-brand strong {
    font-size: 1.45rem;
  }

  .status {
    font-size: 0.68rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-lead {
    font-size: 0.84rem;
  }

  .primary-action {
    font-size: 0.84rem;
  }

  .phone-stage {
    height: 286px;
  }

  .phone {
    height: 260px;
    width: 140px;
  }

  .phone-coral {
    right: calc(50% - 140px);
  }

  .phone-grape {
    left: calc(50% - 151px);
  }
}

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