:root {
  --pink: #F0529C;
  --pink-dark: #E0418B;
  --deep-rose: #9B2C5E;
  --purple: #7B4B9E;
  --mauve: #C76B86;
  --blush: #FDF1F6;
  --petal: #FBD9E8;
  --lavender: #ECDDF5;
  --text: #5B4F56;
  --text-dark: #6E5C66;
  --muted: #A89AA0;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(240, 82, 156, 0.10);
  --shadow-lg: 0 18px 50px rgba(240, 82, 156, 0.16);
  --max: 1120px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Nunito", -apple-system, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text-dark);
  background: linear-gradient(180deg, #FCE3EE 0%, #FCEDE7 45%, #FBF4F8 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--serif); color: var(--deep-rose); line-height: 1.15; margin: 0 0 .4em; }
p { margin: 0 0 1em; }
a { color: var(--pink-dark); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--white); padding: 10px 16px; border-radius: 0 0 12px 0; z-index: 100; }
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-block; background: var(--pink); color: var(--white);
  font-family: var(--sans); font-weight: 800; font-size: 1rem;
  border: 0; padding: 15px 26px; border-radius: 999px; cursor: pointer;
  box-shadow: 0 8px 22px rgba(240, 82, 156, 0.32); transition: transform .15s, background .15s;
}
.btn:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .92rem; }
.grad {
  background: linear-gradient(100deg, #EC4E9C, #7B4B9E);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 82, 156, 0.10);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: var(--deep-rose); }
.site-header nav { display: flex; align-items: center; gap: clamp(10px, 2vw, 26px); }
.site-header nav a { font-weight: 700; color: var(--text-dark); }
.site-header nav a:hover { color: var(--pink); }

/* Hero */
.hero {
  max-width: var(--max); margin: 0 auto; padding: clamp(40px, 7vw, 90px) clamp(16px, 4vw, 40px);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
}
.eyebrow { display: inline-block; background: var(--white); color: var(--deep-rose); font-weight: 800;
  padding: 8px 18px; border-radius: 999px; box-shadow: var(--shadow); margin-bottom: 18px; font-size: .95rem; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
.lede { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--text-dark); max-width: 36ch; }
.hero-art { display: flex; justify-content: center; }
.hero-art .bloom { filter: drop-shadow(0 20px 40px rgba(123, 75, 158, .18)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Waitlist form */
.waitlist { display: flex; gap: 10px; flex-wrap: wrap; margin: 8px 0 10px; }
.waitlist input { flex: 1 1 240px; min-width: 0; padding: 15px 18px; border: 2px solid var(--petal);
  border-radius: 999px; font-family: var(--sans); font-size: 1rem; background: var(--white); color: var(--text-dark); }
.waitlist input:focus { outline: none; border-color: var(--pink); }
.microcopy { color: var(--muted); font-size: .9rem; }
.thanks { font-weight: 800; color: var(--deep-rose); }
.consent { flex-basis: 100%; display: flex; align-items: flex-start; gap: 9px; font-size: .82rem; color: var(--muted); text-align: left; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--pink); flex: none; }
.consent span { flex: 1 1 auto; min-width: 0; }
.cta .consent { color: #FCE3EE; justify-content: center; }

/* Trust strip */
.strip {
  max-width: var(--max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px) 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.strip div { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.strip strong { display: block; color: var(--pink); font-size: 1.1rem; margin-bottom: 4px; }
.strip span { color: var(--muted); font-size: .95rem; }

/* Sections */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(48px, 7vw, 90px) clamp(16px, 4vw, 40px); }
.section.alt { background: rgba(255, 255, 255, 0.55); max-width: none; }
.section.alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-head .sub { color: var(--muted); font-size: 1.1rem; }
.prose { max-width: 62ch; margin: 0 auto; font-size: 1.12rem; }

/* Feature cards */
.cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform .18s, box-shadow .18s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .ico { width: 60px; height: 60px; border-radius: 16px; background: var(--c, var(--petal)); display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 16px; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--text-dark); margin: 0; }

/* Steps */
.steps { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; display: grid; gap: 20px; }
.steps li { display: flex; gap: 20px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.steps .n { flex: none; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #EC4E9C, #7B4B9E); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.3rem; display: grid; place-items: center; }
.steps h3 { font-size: 1.2rem; margin-bottom: 2px; }
.steps p { margin: 0; color: var(--text-dark); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--white); border-radius: 16px; padding: 4px 22px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 800; color: var(--deep-rose); padding: 16px 0; list-style: none; font-size: 1.08rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--pink); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 18px; color: var(--text-dark); }

/* CTA */
.cta { text-align: center; padding: clamp(56px, 8vw, 100px) clamp(16px, 4vw, 40px); background: linear-gradient(120deg, #F0529C, #9B2C5E); color: #fff; }
.cta h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); }
.cta p { color: #FCE3EE; max-width: 46ch; margin: 0 auto 26px; font-size: 1.15rem; }
.cta .waitlist { max-width: 520px; margin: 0 auto; justify-content: center; }
.cta .btn { background: #fff; color: var(--pink-dark); }
.cta .btn:hover { background: #FCE3EE; }
.cta .thanks { color: #fff; }

/* Footer */
.site-footer { background: #2b1c25; color: #E9DCE3; padding: 56px clamp(16px, 4vw, 40px) 40px; text-align: center; }
.foot-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; text-align: left; }
.foot-brand img { background: #fff; border-radius: 12px; padding: 4px; }
.foot-brand strong { display: block; color: #fff; font-family: var(--serif); font-size: 1.3rem; }
.foot-brand span { color: #C9B6C1; font-size: .92rem; }
.foot-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.foot-links a { color: #F3CFE0; font-weight: 700; }
.languages { color: #C9B6C1; font-weight: 700; }
.disclaimer { max-width: 60ch; margin: 14px auto; color: #B7A4AF; font-size: .85rem; }
.copy { color: #9C8A95; font-size: .85rem; margin: 0; }

/* Waitlist modal */
.modal {
  border: none; border-radius: 26px; padding: 0;
  max-width: 440px; width: calc(100% - 32px);
  background: var(--white); color: var(--text-dark);
  box-shadow: 0 30px 80px rgba(123, 75, 158, 0.32);
}
.modal::backdrop { background: rgba(123, 75, 158, 0.40); }
.modal[open] { animation: pop .22s ease-out; }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-body { padding: 44px 32px 34px; text-align: center; }
.modal-bloom { margin: 0 auto 8px; }
.modal h2 { font-size: 1.85rem; margin-bottom: .3em; }
.modal p { color: var(--text-dark); margin: 0; }
.modal .waitlist { margin: 20px 0 0; }
.modal .waitlist > input, .modal .waitlist > .btn { flex-basis: 100%; }
.modal .consent { justify-content: flex-start; }
.modal-close {
  position: absolute; top: 10px; right: 12px; width: 42px; height: 42px;
  background: transparent; border: 0; font-size: 2rem; line-height: 1;
  color: var(--muted); cursor: pointer; border-radius: 50%;
}
.modal-close:hover { color: var(--pink); background: var(--blush); }

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-art { order: 1; }
  .hero-art .bloom { width: 180px; }
  .lede, .waitlist { margin-left: auto; margin-right: auto; }
  .waitlist { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: 1fr; }
  .site-header nav a:not(.btn) { display: none; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art .bloom { animation: none; }
  html { scroll-behavior: auto; }
}

/* Language switcher */
.lang-switch { display: flex; align-items: center; gap: 4px; font-weight: 800; font-size: .82rem; flex: none; }
.lang-switch a { color: var(--muted); padding: 5px 8px; border-radius: 9px; line-height: 1; }
.lang-switch a:hover { color: var(--pink); background: var(--blush); }
.lang-switch a[aria-current="page"] { color: var(--pink); background: var(--blush); }
.foot-langs { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 0 0 14px; }
.foot-langs a { color: #F3CFE0; font-weight: 700; }
.foot-langs a[aria-current="page"] { color: #fff; text-decoration: underline; }

/* RTL (Arabic) overrides — shared sheet, flipped only when dir="rtl" */
[dir="rtl"] body { font-family: var(--sans); }
[dir="rtl"] .consent { text-align: right; }
[dir="rtl"] .foot-brand { text-align: right; }
[dir="rtl"] .faq summary::after { float: left; }
[dir="rtl"] .modal-close { right: auto; left: 12px; }
[dir="rtl"] .skip-link { left: auto; right: -999px; border-radius: 0 0 0 12px; }
[dir="rtl"] .skip-link:focus { left: auto; right: 0; }
[dir="rtl"] .lede { max-width: 40ch; }
