/* ------------------------------------------------------------------
   Curio family — shared landing styles
   Hosts the chooser (index.html) and the Curio Fashion landing
   (fashion.html). Collection Organizer keeps its own existing site
   at https://curio-collections.com/ — the chooser links out to it.

   Collection Organizer palette (linked, not overridden here):
     amber #D4A043   gold #C4922E   gold-light #E8C97A
   Curio Fashion palette (this file's primary subject):
     blush #EAB8B1   blush-deep #C4866A   blush-soft #FCEDE8
     cream #FBF6EF   ivory #FFFCF6        champagne  #F2E2C2
     mauve #9A7384   gold  #C8A268        ink        #2A2326
     icon gradient: #FF006E → #C724B1 → #8338EC
------------------------------------------------------------------- */
:root {
  /* Shared neutrals */
  --ink: #2A2326;
  --ink-light: #4A3F44;
  --ink-muted: #8B7B81;
  --border: rgba(42, 35, 38, 0.10);
  --shadow-card: 0 6px 20px rgba(42, 35, 38, 0.08);
  --shadow-phone: 0 30px 60px -20px rgba(42, 35, 38, 0.35), 0 10px 30px -15px rgba(42, 35, 38, 0.25);
  --radius: 16px;

  /* Collection Organizer brand (used only on chooser card 1) */
  --co-amber: #D4A043;
  --co-gold: #C4922E;
  --co-gold-light: #E8C97A;
  --co-cream: #FFF8EE;

  /* Curio Fashion brand */
  --cf-blush: #EAB8B1;
  --cf-blush-deep: #C4866A;
  --cf-blush-soft: #FCEDE8;
  --cf-cream: #FBF6EF;
  --cf-ivory: #FFFCF6;
  --cf-champagne: #F2E2C2;
  --cf-mauve: #9A7384;
  --cf-gold: #C8A268;
  --cf-pink: #FF006E;
  --cf-fuchsia: #C724B1;
  --cf-violet: #8338EC;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.2rem; line-height: 1.3; }
p  { margin: 0.6em 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
}
.muted { color: var(--ink-muted); font-size: 0.95rem; }

/* ============================================================
   CHOOSER (index.html)
   ============================================================ */
.chooser-body {
  min-height: 100vh;
  background:
    radial-gradient(900px 600px at 12% -120px, rgba(232, 201, 122, 0.30), transparent 60%),
    radial-gradient(900px 600px at 95% -50px, rgba(199, 36, 177, 0.18), transparent 60%),
    radial-gradient(700px 600px at 50% 110%, rgba(131, 56, 236, 0.10), transparent 60%),
    #FBF6EF;
  display: flex;
  flex-direction: column;
}

.chooser-header {
  padding: 28px 0 0;
}
.chooser-header .brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
}
.chooser-header .brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cf-pink), var(--cf-fuchsia) 55%, var(--cf-violet));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chooser-header .brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.chooser-hero {
  text-align: center;
  padding: 56px 0 28px;
}
.chooser-hero .eyebrow {
  color: var(--cf-blush-deep);
  background: rgba(196, 134, 106, 0.12);
}
.chooser-hero h1 {
  margin: 14px auto 0;
  max-width: 760px;
}
.chooser-hero .lede {
  margin: 18px auto 0;
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--ink-light);
}
.chooser-hero .accent-italic {
  font-style: italic;
  color: var(--cf-blush-deep);
}

.chooser-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 30px 0 80px;
}
@media (max-width: 860px) {
  .chooser-cards { grid-template-columns: 1fr; }
}

.chooser-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  min-height: 480px;
}
.chooser-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.chooser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -22px rgba(42, 35, 38, 0.22);
}
.chooser-card:hover::before { opacity: 1; }

/* Collection Organizer card */
.chooser-card.co {
  background:
    radial-gradient(700px 360px at 100% -10%, rgba(232, 201, 122, 0.30), transparent 60%),
    linear-gradient(170deg, #FFFDF6, #FFFFFF);
  border-color: rgba(196, 146, 46, 0.20);
}
.chooser-card.co::before {
  background: radial-gradient(500px 240px at 10% 100%, rgba(212, 160, 67, 0.18), transparent 60%);
}
.chooser-card.co .card-eyebrow { color: var(--co-gold); background: rgba(212, 160, 67, 0.14); }
.chooser-card.co .card-mark {
  background: linear-gradient(135deg, var(--co-gold-light), var(--co-amber));
  color: #FFF8EE;
}
.chooser-card.co .card-cta {
  background: #2C2C2E;
  color: #FFF8EE;
}
.chooser-card.co .card-cta:hover {
  background: var(--co-gold);
  box-shadow: 0 10px 25px -10px rgba(196, 146, 46, 0.55);
}

/* Curio Fashion card */
.chooser-card.cf {
  background:
    radial-gradient(700px 360px at 0% -10%, rgba(255, 0, 110, 0.10), transparent 60%),
    radial-gradient(600px 360px at 100% 100%, rgba(131, 56, 236, 0.10), transparent 60%),
    linear-gradient(170deg, var(--cf-blush-soft), #FFFFFF 55%);
  border-color: rgba(196, 134, 106, 0.22);
}
.chooser-card.cf::before {
  background: radial-gradient(500px 240px at 100% 100%, rgba(154, 115, 132, 0.14), transparent 60%);
}
.chooser-card.cf .card-eyebrow { color: var(--cf-blush-deep); background: rgba(196, 134, 106, 0.14); }
.chooser-card.cf .card-mark {
  background: linear-gradient(135deg, var(--cf-pink), var(--cf-fuchsia) 55%, var(--cf-violet));
  color: #FFFFFF;
}
.chooser-card.cf .card-cta {
  background: var(--cf-blush-deep);
  color: #FFF;
}
.chooser-card.cf .card-cta:hover {
  background: var(--cf-mauve);
  box-shadow: 0 10px 25px -10px rgba(154, 115, 132, 0.55);
}

.card-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -12px rgba(42, 35, 38, 0.35);
  margin-bottom: 22px;
}
.card-mark svg { width: 36px; height: 36px; }

.card-eyebrow {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.chooser-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  margin: 4px 0 10px;
}
.chooser-card .card-lede {
  color: var(--ink-light);
  font-size: 1.02rem;
  max-width: 460px;
}
.card-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-bullets li {
  color: var(--ink-light);
  font-size: 0.96rem;
  padding-left: 22px;
  position: relative;
}
.chooser-card.co .card-bullets li::before { background: var(--co-amber); }
.chooser-card.cf .card-bullets li::before { background: var(--cf-blush-deep); }
.card-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(42, 35, 38, 0.04);
}

.card-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
  font-family: var(--font-body);
}
.card-cta:hover { transform: translateY(-1px); }
.card-cta .arrow { transition: transform 0.2s ease; }
.chooser-card:hover .card-cta .arrow { transform: translateX(3px); }

.card-meta {
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: 0.85rem;
  display: flex;
  gap: 8px;
  align-items: center;
}
.card-meta .chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.chooser-card.co .card-meta .chip { background: rgba(212, 160, 67, 0.16); color: var(--co-gold); }
.chooser-card.cf .card-meta .chip { background: rgba(196, 134, 106, 0.16); color: var(--cf-blush-deep); }

.chooser-footer {
  margin-top: auto;
  padding: 22px 0 28px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
}
.chooser-footer a { color: var(--ink-light); }
.chooser-footer a:hover { color: var(--cf-blush-deep); }
.chooser-footer .dot { margin: 0 10px; color: var(--ink-muted); }

/* Make the entire card clickable but keep CTA accessible */
.chooser-card a.card-cta:focus-visible {
  outline: 3px solid var(--cf-champagne);
  outline-offset: 3px;
}

/* ============================================================
   FASHION LANDING (fashion.html)
   ============================================================ */
.fashion-body {
  background: var(--cf-cream);
  color: var(--ink);
}

.cf-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 246, 239, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.cf-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.cf-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cf-brand .cf-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cf-pink), var(--cf-fuchsia) 55%, var(--cf-violet));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cf-brand .cf-mark svg { width: 22px; height: 22px; }
.cf-brand .cf-word-accent { font-style: italic; color: var(--cf-blush-deep); margin-left: 2px; }

.cf-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
}
.cf-nav-links a { color: var(--ink-light); }
.cf-nav-links a:hover { color: var(--ink); }
.cf-nav-links .cf-back {
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cf-nav-cta {
  background: var(--cf-blush-deep);
  color: #FFF !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.cf-nav-cta:hover { background: var(--cf-mauve); }
@media (max-width: 760px) {
  .cf-nav-links a:not(.cf-nav-cta):not(.cf-back) { display: none; }
}

/* Hero */
.cf-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 92% -100px, rgba(234, 184, 177, 0.55), transparent 60%),
    radial-gradient(700px 500px at -10% 10%, rgba(154, 115, 132, 0.14), transparent 55%),
    radial-gradient(500px 350px at 70% 110%, rgba(242, 226, 194, 0.55), transparent 60%),
    var(--cf-cream);
}
.cf-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.cf-eyebrow {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--cf-blush-deep);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(196, 134, 106, 0.12);
}
.cf-hero h1 .accent {
  color: var(--cf-blush-deep);
  font-style: italic;
}
.cf-hero .lede {
  font-size: 1.12rem;
  color: var(--ink-light);
  max-width: 520px;
  margin-top: 18px;
}
.cf-hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cf-hero-proofs {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--ink-light);
  font-size: 0.95rem;
}
.cf-hero-proofs .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--cf-blush-deep);
  margin-right: 8px;
  vertical-align: middle;
}

.cf-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cf-hero-visual::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 0, 110, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(131, 56, 236, 0.14), transparent 60%),
    radial-gradient(circle, rgba(234, 184, 177, 0.55), transparent 65%);
  z-index: 0;
}
.cf-phone-hero { position: relative; z-index: 1; transform: rotate(-2deg); }

@media (max-width: 900px) {
  .cf-hero { padding: 48px 0 40px; }
  .cf-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .cf-hero-visual { order: -1; }
}

/* Phone mockup (shared between hero + spotlight) */
.cf-phone {
  width: 290px;
  height: 590px;
  background: #0e0e10;
  border-radius: 42px;
  padding: 10px;
  position: relative;
  box-shadow: var(--shadow-phone);
}
.cf-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, var(--cf-blush-soft), var(--cf-cream));
}
.cf-phone-screen .cf-screen-header {
  padding: 28px 18px 14px;
}
.cf-phone-screen .cf-screen-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cf-mauve);
  font-weight: 700;
}
.cf-phone-screen .cf-screen-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1.15;
}
.cf-screen-title .it { font-style: italic; color: var(--cf-blush-deep); }
.cf-phone-screen .cf-screen-greeting {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

.cf-screen-look {
  margin: 6px 14px 12px;
  border-radius: 18px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(154, 115, 132, 0.95), rgba(196, 134, 106, 0.9));
  color: #FFFCF6;
  position: relative;
  overflow: hidden;
}
.cf-screen-look::after {
  content: "";
  position: absolute;
  right: -28px; top: -28px;
  width: 110px; height: 110px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}
.cf-screen-look .lbl {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.cf-screen-look .ttl {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin-top: 4px;
}
.cf-screen-look .sub {
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 8px;
}
.cf-screen-look .pill {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cf-screen-row {
  margin: 6px 14px;
  display: flex;
  gap: 8px;
}
.cf-screen-tile {
  flex: 1;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(42, 35, 38, 0.06);
  border-radius: 14px;
  padding: 10px;
}
.cf-screen-tile .tag {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cf-mauve);
  font-weight: 700;
}
.cf-screen-tile .val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-top: 4px;
}
.cf-screen-tile .sub {
  font-size: 0.7rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

.cf-screen-section {
  margin: 14px 14px 6px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cf-screen-section .h {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}
.cf-screen-section .more {
  font-size: 0.7rem;
  color: var(--cf-blush-deep);
  font-weight: 600;
}
.cf-screen-pieces {
  margin: 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.cf-screen-piece {
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42, 35, 38, 0.06);
}
.cf-screen-piece .name {
  position: absolute;
  bottom: 6px; left: 6px; right: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 252, 246, 0.92);
  padding: 3px 6px;
  border-radius: 6px;
}
.cf-piece-1 { background: linear-gradient(135deg, #FCEDE8, #EAB8B1); }
.cf-piece-2 { background: linear-gradient(135deg, #F2E2C2, #C8A268); }
.cf-piece-3 { background: linear-gradient(135deg, #E8DCE4, #9A7384); }
.cf-piece-4 { background: linear-gradient(135deg, #FFE3F0, #FF006E); }
.cf-piece-5 { background: linear-gradient(135deg, #EADDFF, #8338EC); }
.cf-piece-6 { background: linear-gradient(135deg, #FFF6E6, #C4866A); }

.cf-screen-tab {
  margin-top: auto;
  background: rgba(255, 252, 246, 0.92);
  border-top: 1px solid rgba(42, 35, 38, 0.06);
  display: flex;
  justify-content: space-around;
  padding: 8px 6px 14px;
}
.cf-screen-tab .ti {
  font-size: 0.58rem;
  color: var(--ink-muted);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
}
.cf-screen-tab .ti.active { color: var(--cf-blush-deep); }
.cf-screen-tab .ti i {
  display: block;
  width: 16px; height: 16px;
  margin: 0 auto 4px;
  background: currentColor;
  -webkit-mask: var(--icon) no-repeat center / contain;
  mask: var(--icon) no-repeat center / contain;
}

/* Buttons (Fashion) */
.cf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: var(--font-body);
}
.cf-btn-primary {
  background: var(--cf-blush-deep);
  color: #FFF;
}
.cf-btn-primary:hover {
  background: var(--cf-mauve);
  box-shadow: 0 10px 25px -10px rgba(154, 115, 132, 0.55);
  transform: translateY(-1px);
}
.cf-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.cf-btn-ghost:hover { background: var(--cf-blush-soft); }
.cf-btn-block { width: 100%; }
.cf-btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.cf-appstore-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
  border-radius: 9px;
}
.cf-appstore-link img {
  height: 48px;
  width: auto;
  display: block;
}
.cf-appstore-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.45);
}
.cf-beta-copy .cf-appstore-link { margin: 6px 0 20px; }

/* Sections */
.cf-section { padding: 90px 0; }
.cf-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.cf-section-head p {
  color: var(--ink-light);
  font-size: 1.05rem;
  margin-top: 14px;
}

/* Features */
.cf-features {
  background: var(--cf-ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cf-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cf-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cf-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(42, 35, 38, 0.10);
}
.cf-feature h3 { margin-bottom: 6px; }
.cf-feature p { color: var(--ink-light); font-size: 0.96rem; margin: 0; }
.cf-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cf-blush-soft), var(--cf-blush));
  color: var(--cf-blush-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cf-feature.is-premium .cf-feature-icon {
  background: linear-gradient(135deg, var(--cf-pink), var(--cf-fuchsia) 55%, var(--cf-violet));
  color: #FFF;
}
.cf-feature .premium-tag {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cf-blush-deep);
  background: rgba(196, 134, 106, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .cf-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cf-feature-grid { grid-template-columns: 1fr; }
}

/* Spotlights */
.cf-spotlights { background: var(--cf-cream); }
.cf-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.cf-spotlight + .cf-spotlight { border-top: 1px solid var(--border); }
.cf-spotlight.is-reversed .cf-spotlight-visual { order: -1; }
.cf-spotlight-copy h2 { margin-top: 14px; }
.cf-spotlight-copy p { color: var(--ink-light); font-size: 1.04rem; max-width: 520px; }
.cf-spotlight-visual { display: flex; justify-content: center; }
@media (max-width: 900px) {
  .cf-spotlight { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .cf-spotlight.is-reversed .cf-spotlight-visual { order: 0; }
}

/* Pricing */
.cf-pricing { background: var(--cf-ivory); }
.cf-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  max-width: 880px;
  margin: 0 auto;
}
.cf-price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.cf-price-card h3 { font-size: 1.5rem; }
.cf-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 6px;
}
.cf-price span { font-size: 1rem; color: var(--ink-muted); font-weight: 500; margin-left: 4px; }
.cf-price-sub {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin: 0 0 18px;
}
.cf-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.cf-price-card ul li {
  color: var(--ink-light);
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
}
.cf-price-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--cf-blush-deep);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M1.5 6.5l3 3L10.5 3' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M1.5 6.5l3 3L10.5 3' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}
.cf-price-card.is-featured {
  background: linear-gradient(165deg, #FFF6F2, #FFFFFF);
  border: 1.5px solid var(--cf-blush-deep);
  box-shadow: 0 16px 40px -18px rgba(196, 134, 106, 0.45);
  transform: translateY(-6px);
}
.cf-price-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: linear-gradient(135deg, var(--cf-pink), var(--cf-fuchsia) 55%, var(--cf-violet));
  color: #FFF;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.cf-price-card .alt-price {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.cf-price-card .alt-price strong { color: var(--cf-blush-deep); }
@media (max-width: 720px) {
  .cf-pricing-grid { grid-template-columns: 1fr; }
  .cf-price-card.is-featured { transform: none; }
}

/* Beta / signup */
.cf-beta {
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(234, 184, 177, 0.45), transparent 60%),
    radial-gradient(700px 360px at 100% 100%, rgba(242, 226, 194, 0.5), transparent 60%),
    var(--cf-cream);
  border-top: 1px solid var(--border);
}
.cf-beta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cf-beta-copy h2 { margin-top: 14px; }
.cf-beta-copy p { color: var(--ink-light); font-size: 1.05rem; max-width: 480px; }
.cf-beta-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cf-beta-bullets li {
  color: var(--ink-light);
  font-size: 0.98rem;
  padding-left: 26px;
  position: relative;
}
.cf-beta-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--cf-blush-deep);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(196, 134, 106, 0.18);
}
.cf-beta-notice {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 22px 0 0;
  padding: 14px 16px;
  background: rgba(154, 115, 132, 0.08);
  border-left: 3px solid var(--cf-mauve);
  border-radius: 8px;
  color: var(--ink-light);
  font-size: 0.95rem;
  max-width: 480px;
}
.cf-beta-notice strong { color: var(--ink); font-weight: 600; }

.cf-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px -20px rgba(154, 115, 132, 0.22);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cf-field input, .cf-field select, .cf-field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--cf-cream);
  color: var(--ink);
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.cf-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none;
  border-color: var(--cf-blush-deep);
  box-shadow: 0 0 0 4px rgba(196, 134, 106, 0.18);
  background: #fff;
}
.cf-form-fineprint { color: var(--ink-muted); font-size: 0.82rem; text-align: center; margin: 2px 0 0; }
.cf-form-status {
  margin-top: 4px;
  font-size: 0.92rem;
  text-align: center;
  min-height: 1.4em;
}
.cf-form-status.is-success { color: #2f9e5f; }
.cf-form-status.is-error { color: #c0392b; }

@media (max-width: 900px) {
  .cf-beta-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* Support */
.cf-support {
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(234, 184, 177, 0.35), transparent 60%),
    var(--cf-ivory);
  border-top: 1px solid var(--border);
}
.cf-support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cf-support-copy h2 { margin-top: 14px; }
.cf-support-copy p { color: var(--ink-light); font-size: 1.05rem; max-width: 480px; }
.cf-support-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cf-support-bullets li {
  color: var(--ink-light);
  font-size: 0.98rem;
  padding-left: 26px;
  position: relative;
}
.cf-support-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--cf-blush-deep);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(196, 134, 106, 0.18);
}
.cf-support-email {
  color: var(--cf-blush-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(196, 134, 106, 0.35);
}
.cf-support-email:hover { color: var(--ink); border-bottom-color: var(--ink); }

@media (max-width: 900px) {
  .cf-support-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* Footer */
.cf-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--cf-ivory);
  color: var(--ink-muted);
  font-size: 0.9rem;
}
.cf-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cf-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
}
.cf-footer-brand .cf-mark { width: 26px; height: 26px; border-radius: 7px; }
.cf-footer-brand .cf-mark svg { width: 18px; height: 18px; }
.cf-footer-meta { display: inline-flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.cf-footer-meta a:hover { color: var(--cf-blush-deep); }

.cf-footer .cf-social-links {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.cf-footer .cf-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--ink-muted);
  background: rgba(0, 0, 0, 0.04);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.cf-footer .cf-social-link:hover,
.cf-footer .cf-social-link:focus-visible {
  background: var(--cf-blush-deep);
  color: #fff;
  transform: translateY(-1px);
}
.cf-footer .cf-social-link svg { display: block; }
