/* PoundCake — sweetheart pink boi storefront */
:root {
  --pink: #ff4d8d;
  --pink-deep: #e01870;
  --pink-hot: #ff2d7b;
  --pink-soft: #ffd6e6;
  --pink-wash: #ffe9f1;
  --blush: #fff4f8;
  --cream: #fffafb;
  --ink: #3a2030;
  --muted: #7a5464;
  --line: #f3c6d6;
  --gold: #c9899c;
  --white: #ffffff;
  --ok: #2a8a5a;
  --warn-bg: #fff6d8;
  --warn-ink: #5a4710;
  --warn-line: #e6c96a;
  --shadow: 0 10px 30px rgba(255, 77, 141, 0.12);
  --radius: 22px;
  --max: 1080px;
  --font: "Nunito", "Avenir Next", "Segoe UI", sans-serif;
  --display: "Quicksand", "Nunito", sans-serif;
  --script: "Pacifico", "Segoe Script", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #ffd0e4 0%, transparent 55%),
    radial-gradient(900px 400px at 110% 0%, #ffc1d8 0%, transparent 50%),
    var(--blush);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 12% 18%, #ff4d8d22 0 2px, transparent 3px),
    radial-gradient(circle at 82% 28%, #ff4d8d1a 0 2px, transparent 3px),
    radial-gradient(circle at 64% 78%, #ff4d8d18 0 2px, transparent 3px);
  z-index: 0;
}

a { color: var(--pink-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--pink-hot); }
img { max-width: 100%; }
code, .mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.92em;
  word-break: break-all;
}

.wrap { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; position: relative; z-index: 1; }
.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 10000; }

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(800px 400px at 50% 0%, #ffb3d0 0%, transparent 60%),
    #2a1520ee;
  color: #fff;
}
html.age-ok .age-gate { display: none; }
.age-card {
  width: min(480px, 100%);
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 36px 32px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}
.age-card .script { font-size: 2.2rem; color: var(--pink); margin: 0 0 8px; line-height: 1.1; }
.age-card h1 { font-family: var(--display); font-size: 1.55rem; margin: 0 0 10px; }
.age-card p { color: var(--muted); margin: 0 0 16px; }
.age-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }
.age-denied { display: none; }
.age-gate.is-denied .age-ask { display: none; }
.age-gate.is-denied .age-denied { display: block; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,250,251,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0 8px; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
}
.brand-mark {
  width: 38px; height: 38px; flex: none;
}
.brand-name {
  font-family: var(--script);
  font-size: 1.55rem;
  color: var(--pink);
  line-height: 1;
}
.brand-tag {
  display: block;
  font-family: var(--font);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  list-style: none; margin: 0; padding: 0;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--pink-deep); }
.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px #ff4d8d44;
}
.nav-cta:hover { background: var(--pink-deep); }

/* Banner */
.legal-banner {
  background: var(--warn-bg);
  color: var(--warn-ink);
  border: 1px solid var(--warn-line);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 20px 0;
  font-size: 0.95rem;
}
.legal-banner strong { display: block; margin-bottom: 4px; }

.notice {
  background: #fff;
  border: 1px dashed var(--pink);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 16px 0;
}

/* Hero */
.hero {
  padding: 48px 0 24px;
  text-align: center;
}
.kicker {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.script { font-family: var(--script); color: var(--pink); font-weight: 400; }
.hero h1 {
  font-family: var(--script);
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  color: var(--pink);
  margin: 0 0 8px;
  line-height: 1.05;
  font-weight: 400;
}
.hero .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 22px;
}
.hero-actions, .btn-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--pink); color: #fff !important; box-shadow: 0 8px 20px #ff4d8d40; }
.btn-primary:hover { background: var(--pink-deep); }
.btn-ghost {
  background: #fff;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink-deep) !important; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* Cards / grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.card h2, .card h3 { margin-top: 0; font-family: var(--display); }
.card p:last-child { margin-bottom: 0; }

.section { padding: 12px 0 36px; }
.section h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin: 0 0 10px;
}
.section > p.intro { color: var(--muted); margin-top: 0; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 16px 0 24px; border-radius: 16px; box-shadow: var(--shadow); }
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 560px;
}
th, td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--pink-wash);
  vertical-align: top;
}
th {
  background: var(--pink);
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
tr:last-child td { border-bottom: 0; }
.price { font-weight: 800; color: var(--pink-deep); white-space: nowrap; }

/* Lists */
.checklist { padding-left: 1.1rem; }
.checklist li { margin: 0.4rem 0; }
.hard-nos { columns: 1; }
@media (min-width: 720px) { .hard-nos { columns: 1; } }

ol.steps { padding-left: 1.2rem; }
ol.steps li { margin: 0.55rem 0; }

/* Pay boxes */
.pay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.pay-box {
  background: #2a1520;
  color: #fff;
  border-radius: 18px;
  padding: 18px;
}
.pay-box h3 { margin: 0 0 6px; color: #ffb6d0; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.pay-box .addr {
  background: #3d2230;
  padding: 10px 12px;
  border-radius: 10px;
  margin: 10px 0;
}
.pay-box .hint { color: #f3c6d6; font-size: 0.88rem; }
.copy-btn {
  background: var(--pink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  cursor: pointer;
}

/* Wheel */
.wheel-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin: 12px 0 28px;
}
@media (min-width: 860px) {
  .wheel-stage { grid-template-columns: 1fr 1fr; }
}
.wheel-wrap {
  position: relative;
  width: min(360px, 86vw);
  height: min(360px, 86vw);
}
.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: 0 0 0 6px var(--pink), var(--shadow);
  background: conic-gradient(
    #ff4d8d 0 60deg,
    #ffb6d0 60deg 120deg,
    #ff7eae 120deg 180deg,
    #ffe0ec 180deg 240deg,
    #e01870 240deg 300deg,
    #ffc1d8 300deg 360deg
  );
  transition: transform 4.2s cubic-bezier(0.12, 0.7, 0.16, 1);
  position: relative;
}
.wheel span {
  position: absolute;
  left: 50%; top: 50%;
  width: 50%;
  transform-origin: 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: #3a2030;
  text-align: center;
  pointer-events: none;
}
.pointer {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 26px solid var(--ink);
  z-index: 2;
  filter: drop-shadow(0 2px 0 #fff);
}
.hub {
  position: absolute;
  inset: 38%;
  background: #fff;
  border-radius: 50%;
  border: 4px solid var(--pink);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  z-index: 1;
}
.result-card {
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: var(--shadow);
  min-height: 240px;
}
.result-card .tier { color: var(--pink-deep); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }
.claim-code {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--pink-wash);
  padding: 10px 12px;
  border-radius: 12px;
  display: inline-block;
}

form.claim label { display: block; font-weight: 700; margin: 12px 0 4px; }
form.claim input, form.claim select, form.claim textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}
form.claim .checks { margin: 14px 0; }
form.claim .checks label { font-weight: 600; display: flex; gap: 8px; align-items: flex-start; }

/* Legal prose */
.prose h2 { font-family: var(--display); margin-top: 1.8em; }
.prose h3 { margin-top: 1.2em; }
.prose p, .prose li { max-width: 72ch; }
.muted { color: var(--muted); }
.tiny { font-size: 0.88rem; color: var(--muted); }

/* Footer */
.site-footer {
  margin-top: 40px;
  background: #2a1520;
  color: #f8dce6;
  padding: 36px 0 24px;
  position: relative;
  z-index: 1;
}
.site-footer a { color: #ffb6d0; }
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.site-footer h2 {
  font-family: var(--script);
  color: #ff4d8d;
  font-size: 1.8rem;
  margin: 0 0 8px;
  font-weight: 400;
}
.site-footer h3 { margin: 0 0 8px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: #ffb6d0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 6px 0; }
.fineprint {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #5a3040;
  font-size: 0.82rem;
  color: #d7aebc;
}

/* 404 */
.notfound { text-align: center; padding: 80px 0; }
.notfound h1 { font-family: var(--script); font-size: 4rem; color: var(--pink); margin: 0; }

@media (max-width: 720px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .nav-links { justify-content: flex-start; }
  .hero { padding-top: 28px; }
}

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

/* ===== Mock A partner landing ===== */
body.partner-landing {
  background:
    radial-gradient(circle at 18% 40%, #5a1a33 0%, transparent 42%),
    radial-gradient(circle at 78% 70%, #2a0a18 0%, transparent 45%),
    #3b1021;
  color: #f8e8ef;
  min-height: 100vh;
}
body.partner-landing::before {
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 12% 22%, #ffb6d033 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 48% 58%, #ffb6d022 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 82% 34%, #ffb6d028 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 30% 80%, #ffb6d01a 0 1.5px, transparent 2.5px);
}
body.partner-landing .site-header {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  position: relative;
}
body.partner-landing .brand-name { color: #ffd0e0; }
body.partner-landing .brand-tag { color: #c98aa3; }
body.partner-landing .nav-links a { color: #f3d5e2; }
body.partner-landing .nav-links a:hover,
body.partner-landing .nav-links a[aria-current="page"] { color: #fff; }
body.partner-landing .nav-cta {
  background: #fff3e8;
  color: #5a2040 !important;
  box-shadow: 0 6px 16px #1a061044;
}
body.partner-landing .nav-cta:hover { background: #ffe0ec; }
body.partner-landing .site-footer {
  background: #230a14;
  margin-top: 0;
}

.icing-drip {
  position: relative;
  z-index: 2;
  height: 72px;
  margin: 0;
  background:
    radial-gradient(ellipse 28px 36px at 8% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 34px 48px at 18% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 22px 30px at 28% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 36px 52px at 40% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 24px 34px at 52% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 40px 56px at 64% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 26px 38px at 76% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 32px 46px at 88% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 20px 28px at 96% 0, #fff8f0 70%, transparent 71%),
    linear-gradient(#fff8f0, #fff8f0) top / 100% 28px no-repeat;
  pointer-events: none;
}
.icing-drip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, #ff6b9d 0 2.5px, transparent 3px),
    radial-gradient(circle, #ff8fb8 0 2px, transparent 2.5px),
    radial-gradient(circle, #e83d6e 0 2px, transparent 2.5px),
    radial-gradient(circle, #ffb3cc 0 1.8px, transparent 2.3px);
  background-size: 90px 40px, 70px 36px, 110px 42px, 60px 30px;
  background-position: 12% 18%, 38% 40%, 62% 22%, 84% 48%;
  background-repeat: no-repeat;
  opacity: 0.95;
}

.partner-stage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: 28px 0 64px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.partner-brand {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: clamp(8px, 2vw, 16px) 0;
  box-shadow: none;
  min-height: 320px;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.partner-brand .cake-hero {
  width: min(420px, 58vw);
  max-width: none;
  height: auto;
  flex: none;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  aspect-ratio: auto;
  box-shadow: none;
  filter: drop-shadow(0 22px 36px #12040ccc);
  /* break out of the stage / column so it floats */
  margin: -48px -36px -56px -72px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.pound-mark {
  font-family: "Quicksand", "Nunito", sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow:
    0 0 0 #ff4d8d,
    3px 3px 0 #c2185b,
    5px 5px 0 #6b1438,
    0 8px 18px #12040c88;
  margin: 0;
}
.pound-sub {
  margin: 10px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffc1d8;
  font-weight: 700;
}

.partner-card {
  position: relative;
  background: linear-gradient(180deg, #fffaf3 0%, #fff3e8 100%);
  color: #5a2040;
  border-radius: 28px;
  padding: 42px 28px 28px;
  box-shadow: 0 22px 50px #12040c55;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.partner-card .card-icing {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 54px;
  background:
    radial-gradient(ellipse 22px 28px at 10% 0, #fff 70%, transparent 71%),
    radial-gradient(ellipse 28px 36px at 24% 0, #fff 70%, transparent 71%),
    radial-gradient(ellipse 18px 24px at 38% 0, #fff 70%, transparent 71%),
    radial-gradient(ellipse 30px 40px at 54% 0, #fff 70%, transparent 71%),
    radial-gradient(ellipse 20px 26px at 70% 0, #fff 70%, transparent 71%),
    radial-gradient(ellipse 26px 34px at 86% 0, #fff 70%, transparent 71%),
    linear-gradient(#fff, #fff) top / 100% 18px no-repeat;
  pointer-events: none;
}
.partner-card .card-icing::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, #ff6b9d 0 2px, transparent 2.5px),
    radial-gradient(circle, #e83d6e 0 1.8px, transparent 2.3px),
    radial-gradient(circle, #ff8fb8 0 2px, transparent 2.5px);
  background-size: 70px 28px, 90px 30px, 55px 26px;
  background-position: 18% 30%, 48% 45%, 78% 28%;
  background-repeat: no-repeat;
}
.partner-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  color: #6b2444;
  margin: 18px 0 0;
  text-align: center;
}
.partner-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(280px, 80%);
  color: #d48aa8;
  margin: 0;
}
.partner-divider::before,
.partner-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e7b7c8;
}
.partner-divider span { font-size: 0.95rem; color: #ff4d8d; }

.metric-grid, .pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}
.metric, .pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  background: #fff;
  border: 1px solid #efd0dc;
  border-radius: 18px;
  padding: 14px 8px;
  box-shadow: inset 0 1px 0 #fff, 0 4px 10px #5a204012;
  text-decoration: none;
  color: inherit;
  min-height: 86px;
}
.metric .ico, .pill .ico {
  width: 22px; height: 22px;
  color: #6b2444;
}
.metric .label, .pill .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #8a4a64;
  line-height: 1.2;
}
.metric .val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #5a2040;
  line-height: 1.1;
}
.pill:hover {
  border-color: #ff4d8d;
  transform: translateY(-1px);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  background: #ffd6e6;
  color: #6b2444;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #ffb6d0;
  text-decoration: none;
}
.live-badge .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ff254b;
  box-shadow: 0 0 8px #ff245b;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}
.partner-contact {
  text-align: center;
  font-size: 0.92rem;
  color: #8a4a64;
  margin: 0;
}
.partner-contact a { color: #6b2444; font-weight: 700; }

body.partner-landing .age-gate {
  background:
    radial-gradient(800px 400px at 50% 0%, #7a3050 0%, transparent 60%),
    #1a0810ee;
}

@media (max-width: 900px) {
  .partner-stage { grid-template-columns: 1fr; }
  .partner-brand { min-height: 0; justify-content: center; }
  .pound-mark { font-size: clamp(2.8rem, 14vw, 4.2rem); }
}
@media (max-width: 560px) {
  .metric-grid, .pill-grid { grid-template-columns: 1fr; }
  .partner-brand { flex-direction: column; text-align: center; }
  .partner-brand .cake-hero { width: min(280px, 78vw); margin: -24px auto -12px; }
}

/* Rates page accents */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.rate-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.rate-card h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.15rem;
}
.rate-card .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pink-deep);
  margin: 8px 0;
}
.rate-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }


/* Partner landing: let the cake float outside cards */
body.partner-landing,
body.partner-landing main {
  overflow: visible;
}
body.partner-landing .site-header {
  position: relative;
  z-index: 5;
}


/* ===== Icing bar (logo + nav inside the frosting) ===== */
.icing-bar {
  position: relative;
  z-index: 6;
  background:
    radial-gradient(ellipse 28px 36px at 8% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 34px 48px at 18% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 22px 30px at 28% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 36px 52px at 40% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 24px 34px at 52% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 40px 56px at 64% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 26px 38px at 76% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 32px 46px at 88% 0, #fff8f0 70%, transparent 71%),
    radial-gradient(ellipse 20px 28px at 96% 0, #fff8f0 70%, transparent 71%),
    linear-gradient(#fff8f0, #fff3e8) top / 100% 100% no-repeat;
  padding: 10px 18px 38px;
  box-shadow: 0 10px 28px #12040c33;
}
.icing-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, #ff6b9d 0 2.5px, transparent 3px),
    radial-gradient(circle, #ff8fb8 0 2px, transparent 2.5px),
    radial-gradient(circle, #e83d6e 0 2px, transparent 2.5px),
    radial-gradient(circle, #ffb3cc 0 1.8px, transparent 2.3px);
  background-size: 90px 40px, 70px 36px, 110px 42px, 60px 30px;
  background-position: 12% 22%, 38% 48%, 62% 28%, 84% 52%;
  background-repeat: no-repeat;
  opacity: 0.9;
}
.icing-bar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.icing-logo {
  font-family: "Pacifico", cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #6b2444;
  text-decoration: none;
  line-height: 1.1;
  text-shadow: 0 2px 0 #fff, 2px 3px 0 #ffb6d088;
}
.icing-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.icing-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #efd0dc;
  color: #6b2444;
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  box-shadow: 0 3px 8px #5a204018;
}
.icing-nav a:hover,
.icing-nav a[aria-current="page"] {
  background: #ff4d8d;
  border-color: #ff4d8d;
  color: #fff;
}

/* Purple main window under the icing */
body.partner-landing .purple-main {
  background:
    radial-gradient(circle at 20% 30%, #6b2a4a 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, #3a1530 0%, transparent 50%),
    #4a1a38;
  min-height: calc(100vh - 120px);
  padding: 8px 0 40px;
  border-top: 0;
}
body.partner-landing .site-header { display: none; }
body.partner-landing .icing-drip { display: none; }
body.partner-landing .pound-mark {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  color: #fff8f0;
  text-shadow:
    2px 2px 0 #ff4d8d,
    4px 4px 0 #6b1438,
    0 10px 22px #12040c88;
}
@media (max-width: 720px) {
  .icing-bar-inner { justify-content: center; text-align: center; }
  .icing-nav { justify-content: center; }
}


/* Research-fold: icing tag + partner lede + CTA (v icing-bar-4) */
.icing-bar-inner { flex-wrap: wrap; gap: 0.5rem 1rem; }
.icing-tag {
  margin: 0;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5a2a55;
  opacity: 0.9;
}
.icing-tag a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.partner-lede {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #5a2a55;
  font-weight: 600;
}
.cta-row { margin: 1rem 0 0.35rem; }
.cta-row .btn { display: inline-block; width: 100%; text-align: center; }
@media (max-width: 720px) {
  .icing-tag { width: 100%; order: 3; }
}
