/* Bloomkind — marketing site styles
   Palette: coral #E4685F → plum #5B3A56, cream petals. */

:root {
  --coral: #E4685F;
  --coral-strong: #CE544E;
  --coral-soft: #F7D9D0;
  --plum: #5B3A56;
  --plum-deep: #3D2440;
  --ink: #34202F;
  --muted: #7E6377;
  --bg: #FBF4EE;
  --bg-alt: #F6EAE2;
  --surface: #FFFFFF;
  --cream: #FFF3E9;
  --line: rgba(91, 58, 86, 0.14);
  --shadow: 0 24px 60px -24px rgba(61, 36, 64, 0.28);
  --shadow-soft: 0 10px 30px -12px rgba(61, 36, 64, 0.18);
  --grad-hero: linear-gradient(122deg, #38203C 0%, #5B3A56 30%, #A04B59 66%, #E4685F 100%);
  --grad-band: linear-gradient(135deg, #331D37 0%, #5B3A56 55%, #8A4457 100%);
  --grad-accent: linear-gradient(135deg, #E4685F, #5B3A56);
  --on-grad: #FFF6EF;
  --radius: 20px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --coral: #EE7A70;
    --coral-strong: #E4685F;
    --coral-soft: rgba(238, 122, 112, 0.16);
    --plum: #8A5F84;
    --plum-deep: #2A182D;
    --ink: #F4E8EE;
    --muted: #C0A4B8;
    --bg: #170F1A;
    --bg-alt: #1E1421;
    --surface: #251827;
    --cream: #2C1C2E;
    --line: rgba(244, 232, 238, 0.12);
    --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6);
    --shadow-soft: 0 10px 30px -12px rgba(0, 0, 0, 0.45);
  }
}

/* ---------- Reset & base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 5rem;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--coral-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

::selection {
  background: var(--coral);
  color: #FFF6EF;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.narrow {
  max-width: 46rem;
}

section {
  padding-block: clamp(4rem, 9vw, 7rem);
}

/* ---------- Type ---------- */

h1, h2, h3 {
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 750;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.25rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.overline {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-strong);
  margin-bottom: 0.9rem;
}

.lede {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 40rem;
  text-wrap: pretty;
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.section-head .lede {
  margin-top: 0.9rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(40, 22, 42, 0.55);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 246, 239, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 750;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: #FFF6EF;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 24%;
  box-shadow: 0 2px 8px rgba(20, 8, 22, 0.4);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.site-nav a {
  color: rgba(255, 246, 239, 0.85);
  font-weight: 550;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: #FFF6EF;
  text-decoration: none;
}

.nav-pill {
  border: 1px solid rgba(255, 246, 239, 0.35);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
}

@media (max-width: 40rem) {
  .site-nav a:not(.nav-pill) {
    display: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  color: var(--on-grad);
  padding-block: clamp(4.5rem, 9vw, 7.5rem) 0;
  /* pull up behind sticky header */
  margin-top: -4rem;
  padding-top: clamp(8rem, 13vw, 11rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52rem 30rem at 84% 8%, rgba(255, 219, 189, 0.28), transparent 62%),
    radial-gradient(40rem 26rem at 8% 96%, rgba(38, 17, 41, 0.5), transparent 65%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 38rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #FFF1E6;
  border: 1px solid rgba(255, 246, 239, 0.4);
  background: rgba(255, 246, 239, 0.1);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.chip .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #FFD9A8;
  box-shadow: 0 0 12px rgba(255, 217, 168, 0.9);
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero .lede {
  color: rgba(255, 246, 239, 0.86);
  margin-bottom: 2.25rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 0.9rem;
  color: rgba(255, 246, 239, 0.72);
}

/* App Store badge — coming-soon state, deliberately not a link */

.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #12080F;
  color: #FFF6EF;
  border: 1px solid rgba(255, 246, 239, 0.28);
  border-radius: 14px;
  padding: 0.65rem 1.25rem;
  line-height: 1.2;
  cursor: default;
  user-select: none;
  box-shadow: 0 12px 28px -12px rgba(12, 4, 12, 0.55);
}

.appstore-badge svg {
  width: 1.6rem;
  height: 1.6rem;
  flex: none;
}

.appstore-badge small {
  display: block;
  font-size: 0.7rem;
  font-weight: 550;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.75;
}

.appstore-badge strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.badge-light {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

/* ---------- Petals (decorative) ---------- */

.petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: 9rem;
  height: 13rem;
  background: radial-gradient(closest-side, rgba(255, 240, 226, 0.5), rgba(255, 240, 226, 0));
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  filter: blur(14px);
  opacity: 0.5;
}

.petal:nth-child(1) { top: 6%;  left: 56%; transform: rotate(24deg); }
.petal:nth-child(2) { top: 42%; left: -3%; transform: rotate(-32deg) scale(1.25); opacity: 0.32; }
.petal:nth-child(3) { bottom: -8%; right: 6%; transform: rotate(48deg) scale(1.6); opacity: 0.28; }

@media (prefers-reduced-motion: no-preference) {
  .petal {
    animation: drift 14s ease-in-out infinite alternate;
  }
  .petal:nth-child(2) { animation-duration: 18s; animation-delay: -6s; }
  .petal:nth-child(3) { animation-duration: 22s; animation-delay: -11s; }
}

@keyframes drift {
  from { translate: 0 0; }
  to   { translate: 0 -1.6rem; }
}

/* ---------- Phone frames ---------- */

.phone {
  background: #150B16;
  border-radius: clamp(2.1rem, 3.4vw, 2.9rem);
  padding: clamp(0.55rem, 0.9vw, 0.75rem);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 246, 239, 0.22),
    var(--shadow);
}

.phone img {
  border-radius: clamp(1.6rem, 2.6vw, 2.25rem);
  width: 100%;
}

/* Hero fan (desktop) / snap strip (mobile) */

.hero-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-phones .phone {
  width: clamp(15rem, 22vw, 18.5rem);
  flex: none;
}

@media (min-width: 46rem) {
  .hero-phones .side {
    width: clamp(13rem, 19vw, 16rem);
    z-index: 1;
  }
  .hero-phones .side.left {
    transform: rotate(-7deg) translate(clamp(1rem, 3vw, 2.5rem), 2.5rem);
  }
  .hero-phones .side.right {
    transform: rotate(7deg) translate(clamp(-2.5rem, -3vw, -1rem), 2.5rem);
  }
  .hero-phones .phone.main {
    z-index: 2;
  }
  .hero-phones {
    margin-bottom: -6rem;
  }
  .hero {
    padding-bottom: 6rem;
  }
}

@media (max-width: 45.99rem) {
  .hero-phones {
    justify-content: flex-start;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0.25rem 2.75rem;
    scrollbar-width: none;
  }
  .hero-phones::-webkit-scrollbar {
    display: none;
  }
  .hero-phones .phone {
    scroll-snap-align: center;
    width: min(66vw, 15rem);
  }
}

/* Spacer that lets the fan overlap into the next section */
@media (min-width: 46rem) {
  .after-hero {
    padding-top: 9.5rem;
  }
}

/* ---------- Claims strip ---------- */

.claims {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  justify-content: center;
  padding-block: 0;
}

.claim {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 620;
  font-size: 0.98rem;
  color: var(--muted);
}

.claim svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral-strong);
  flex: none;
}

/* ---------- Feature grid ---------- */

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
}

.card .icon {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(228, 104, 95, 0.16), rgba(91, 58, 86, 0.16));
  color: var(--coral-strong);
  margin-bottom: 1.1rem;
}

.card .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.also {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.also .label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-right: 0.25rem;
}

.tag {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}

/* ---------- Privacy band ---------- */

.privacy-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-band);
  color: var(--on-grad);
}

.privacy-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46rem 30rem at 90% 100%, rgba(228, 104, 95, 0.3), transparent 65%);
  pointer-events: none;
}

.privacy-band .container {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 56rem) {
  .privacy-band .container {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.privacy-band .overline {
  color: #FFC9A6;
}

.privacy-band .lede {
  color: rgba(255, 246, 239, 0.85);
  margin-top: 0.9rem;
}

.privacy-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.15rem;
}

.privacy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.privacy-list svg {
  width: 1.4rem;
  height: 1.4rem;
  color: #FFC9A6;
  margin-top: 0.2rem;
  flex: none;
}

.privacy-list strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.privacy-list span {
  color: rgba(255, 246, 239, 0.78);
  font-size: 0.95rem;
}

.privacy-band .more {
  display: inline-block;
  margin-top: 2rem;
  color: #FFD9BC;
  font-weight: 650;
}

.privacy-band .phone {
  width: min(19rem, 78vw);
  margin-inline: auto;
}

/* ---------- Pricing ---------- */

.pricing-wrap {
  max-width: 36rem;
  margin-inline: auto;
}

.price-card {
  background: var(--grad-accent);
  padding: 1.5px;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.price-card-inner {
  background: var(--surface);
  border-radius: calc(var(--radius) + 5px);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.price-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.price-head img {
  width: 3rem;
  height: 3rem;
  border-radius: 24%;
  box-shadow: var(--shadow-soft);
}

.price-head h3 {
  font-size: 1.45rem;
}

.price-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-rows {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.15rem;
}

.price-row.featured {
  border-color: var(--coral);
  background: linear-gradient(135deg, rgba(228, 104, 95, 0.1), rgba(91, 58, 86, 0.08));
}

.price-row .plan {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.best {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFF6EF;
  background: var(--coral-strong);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
}

.price-row .amount {
  font-weight: 750;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.price-row .amount span {
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--muted);
}

.trial {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--coral-strong);
  margin-bottom: 1.75rem;
}

.pro-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.9rem;
}

.pro-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.98rem;
}

.pro-list svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--coral-strong);
  margin-top: 0.15rem;
}

.pro-list strong {
  letter-spacing: -0.01em;
}

.pro-list .sub {
  color: var(--muted);
}

.price-note {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1.25rem;
  text-wrap: pretty;
}

.price-cta {
  display: flex;
  justify-content: center;
}

/* ---------- Final CTA ---------- */

.cta-band .panel {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  color: var(--on-grad);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band .panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(30rem 18rem at 78% 0%, rgba(255, 219, 189, 0.3), transparent 60%);
  pointer-events: none;
}

.cta-band .panel > * {
  position: relative;
}

.cta-band h2 {
  margin-bottom: 0.9rem;
}

.cta-band p {
  color: rgba(255, 246, 239, 0.85);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.cta-band .hero-cta {
  justify-content: center;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding-block: 3.5rem 2.5rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

@media (min-width: 46rem) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer .brand {
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.site-footer .tagline {
  color: var(--muted);
  max-width: 20rem;
}

.site-footer h4 {
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.site-footer ul a {
  color: var(--ink);
  font-weight: 550;
}

.legal {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  color: var(--muted);
  font-size: 0.875rem;
  display: grid;
  gap: 0.7rem;
  text-wrap: pretty;
}

/* ---------- Subpages (privacy / support) ---------- */

.page-hero {
  background: var(--grad-hero);
  color: var(--on-grad);
  margin-top: -4rem;
  padding: 8.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40rem 22rem at 85% 0%, rgba(255, 219, 189, 0.25), transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.page-hero .meta {
  color: rgba(255, 246, 239, 0.8);
  font-size: 1rem;
}

.prose {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.prose h2 {
  font-size: 1.5rem;
  margin: 2.75rem 0 0.9rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--ink);
  text-wrap: pretty;
}

.prose p.soft,
.prose li span {
  color: var(--muted);
}

.prose ul {
  margin: 0 0 1.25rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.prose ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.prose ul svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--coral-strong);
  margin-top: 0.25rem;
}

.prose ol {
  margin: 0 0 1.25rem 1.25rem;
  display: grid;
  gap: 0.6rem;
}

.summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2.5rem;
}

.summary-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.summary-card ul {
  margin-bottom: 0;
}

/* FAQ */

.faq {
  display: grid;
  gap: 0.9rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--coral-strong);
  line-height: 1;
  transition: rotate 0.2s ease;
}

.faq details[open] summary::after {
  rotate: 45deg;
}

.faq .answer {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
}

.faq .answer p {
  margin-bottom: 0.7rem;
  color: var(--muted);
}

.faq .answer p:last-child {
  margin-bottom: 0;
}

.contact-card {
  margin-top: 3rem;
  background: var(--grad-band);
  color: var(--on-grad);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.contact-card p {
  color: rgba(255, 246, 239, 0.82);
  font-size: 0.98rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFF6EF;
  color: #4A2B46;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 10px 24px -10px rgba(15, 5, 16, 0.5);
  transition: transform 0.2s ease;
}

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