/* CopyMy launch page — warm neutral, editorial serif + clean sans */
/* Type follows adpanel.io: SF Pro Display (system font on Apple devices, Inter elsewhere)
   with Source Serif 4 italic for accent words. */
:root {
  --bg: #FFFFFF;
  --bg-2: #F7F7F5;
  --shade: #F2F2F0;
  --shade-2: #E7E7E4;
  --card: #FFFFFF;
  --ink: #0F0F0E;
  --ink-2: #3A3A38;
  --mute: #6E6E6A;
  --tone: #A3A3A0;
  --line: rgba(0, 0, 0, 0.08);
  --espresso: #141413;
  --cream: #FFFFFF;
  --sage: #5F6B52;

  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;
  --serif: var(--sans);
  --italic: "Source Serif 4", Georgia, serif;

  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 14px;
  --gutter: clamp(16px, 4vw, 48px);
  --max: 1280px;
  --ease: cubic-bezier(.22, .7, .12, 1);
  --spring: cubic-bezier(.34, 1.4, .5, 1);
  --shadow: 0 1px 2px rgba(0,0,0,.05), 0 18px 40px -18px rgba(0,0,0,.24);
  --shadow-lg: 0 2px 4px rgba(0,0,0,.04), 0 34px 70px -26px rgba(0,0,0,.32);
  --shade-grad: linear-gradient(180deg, #F5F5F3 0%, #ECECE9 100%);
  --inner-hi: inset 0 1px 0 rgba(255,255,255,.9);
}
html[lang="ar"] {
  --sans: -apple-system, BlinkMacSystemFont, "SF Arabic", "IBM Plex Sans Arabic", "Inter", sans-serif;
  --italic: var(--sans);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-weight: 400; }
button { font: inherit; }

/* ---------- type ---------- */
.kicker { font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin-bottom: 14px; }
html[lang="ar"] .kicker { letter-spacing: 0; font-size: 14px; }
.kicker-light { color: rgba(255,255,255,.7); }
.h2 { font-family: var(--sans); font-weight: 400; font-size: clamp(34px, 5.2vw, 58px); line-height: 1.04; letter-spacing: -.045em; }
.h2 em, .h-hero em, .story-h em { font-family: var(--italic); font-style: italic; font-weight: 400; letter-spacing: -.02em; }
.h2 .tone { color: var(--tone); }
.h3 { font-family: var(--sans); font-size: clamp(26px, 3vw, 34px); line-height: 1.1; letter-spacing: -.035em; }
html[lang="ar"] .h2, html[lang="ar"] .h3 { letter-spacing: 0; line-height: 1.4; }
html[lang="ar"] .h2 em, html[lang="ar"] .h-hero em { font-style: normal; }
.muted { color: var(--mute); }
.light { color: #fff; }
.light-p { color: rgba(255,255,255,.82); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500; text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(.98); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
html[dir="rtl"] .btn .arr { transform: scaleX(-1); }
html[dir="rtl"] .btn:hover .arr { transform: scaleX(-1) translateX(3px); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 8px 20px -10px rgba(0,0,0,.55); }
.btn-dark:hover { box-shadow: 0 10px 24px -10px rgba(20,19,17,.5); }
.btn-cream { background: #fff; color: var(--ink); box-shadow: 0 8px 24px -10px rgba(0,0,0,.45); }
.btn-glass { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,.24); }
.btn-sm { min-height: 38px; padding: 8px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }
.ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.link { font-size: 14px; font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 2px; align-self: flex-start; }

/* ---------- header: full-width glass fade ---------- */
/* Five stacked backdrop blurs, each masked to fade out lower down: a progressive blur,
   so the page seems to sink behind glass or water rather than hit a hard edge. */
.nav-wrap {
  --fg: var(--ink); --tint: 255,255,255; --tint-a: .78;
  position: fixed; z-index: 80; top: 0; left: 0; right: 0; height: 112px; color: var(--fg);
  pointer-events: none; transition: color .5s;
}
.nav-wrap.on-dark { --fg: #fff; --tint: 12,12,11; --tint-a: .5; }
.nav-blur, .nav-blur i { position: absolute; inset: 0; }
.nav-blur i { backdrop-filter: blur(var(--b)); -webkit-backdrop-filter: blur(var(--b)); }
.nav-blur i:nth-child(1) { --b: 1px;  -webkit-mask-image: linear-gradient(#000 0%, #000 55%, transparent 100%); mask-image: linear-gradient(#000 0%, #000 55%, transparent 100%); }
.nav-blur i:nth-child(2) { --b: 3px;  -webkit-mask-image: linear-gradient(#000 0%, #000 42%, transparent 82%); mask-image: linear-gradient(#000 0%, #000 42%, transparent 82%); }
.nav-blur i:nth-child(3) { --b: 7px;  -webkit-mask-image: linear-gradient(#000 0%, #000 30%, transparent 66%); mask-image: linear-gradient(#000 0%, #000 30%, transparent 66%); }
.nav-blur i:nth-child(4) { --b: 14px; -webkit-mask-image: linear-gradient(#000 0%, #000 18%, transparent 52%); mask-image: linear-gradient(#000 0%, #000 18%, transparent 52%); }
.nav-blur i:nth-child(5) { --b: 24px; -webkit-mask-image: linear-gradient(#000 0%, transparent 38%); mask-image: linear-gradient(#000 0%, transparent 38%); }
.nav-blur::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(var(--tint), var(--tint-a)) 0%, rgba(var(--tint), calc(var(--tint-a) * .55)) 38%, rgba(var(--tint), 0) 100%);
  transition: background .5s;
}
.glass-sheen { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .5s;
  background: radial-gradient(260px 70px at var(--mx, 50%) 0%, rgba(255,255,255,.55), rgba(255,255,255,0) 70%);
  -webkit-mask-image: linear-gradient(#000, transparent 70%); mask-image: linear-gradient(#000, transparent 70%); }
.nav-wrap:hover .glass-sheen { opacity: .8; }
.nav-wrap.on-dark .glass-sheen { mix-blend-mode: soft-light; }
.bar {
  pointer-events: auto; position: relative; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
  padding: 18px var(--gutter); transition: padding .5s var(--ease);
}
.nav-wrap.compact .bar { padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: inherit; justify-self: start; }
.brand .logo { display: block; height: 24px; width: auto; }
.foot-row .brand .logo { height: 22px; }
.wordmark { font-family: var(--sans); font-weight: 600; font-size: 17px; letter-spacing: -.03em; }
.nav-links { position: relative; display: none; gap: 4px; }
.nav-links a { position: relative; z-index: 1; padding: 8px 14px; font-size: 14px; text-decoration: none; color: inherit; opacity: .66; transition: opacity .3s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.is-active { opacity: 1; }
/* Sliding marker under the current or hovered link. */
.nav-ind {
  position: absolute; z-index: 0; bottom: 2px; left: 0; height: 2px; border-radius: 2px; opacity: 0;
  background: currentColor; transform: translateX(var(--ix, 0px)); width: var(--iw, 0px);
  transition: transform .55s var(--spring), width .55s var(--spring), opacity .3s;
}
.nav-links.has-ind .nav-ind { opacity: .9; }
.nav-actions { display: flex; align-items: center; gap: 8px; justify-self: end; }
.seg { position: relative; display: inline-grid; grid-template-columns: 1fr 1fr; padding: 3px; border-radius: 999px; border: 0; cursor: pointer; color: inherit;
  background: rgba(0,0,0,.06); box-shadow: inset 0 1px 2px rgba(0,0,0,.08); transition: background .5s; }
.nav-wrap.on-dark .seg { background: rgba(255,255,255,.16); box-shadow: inset 0 1px 2px rgba(0,0,0,.2); }
.seg-opt { position: relative; z-index: 1; width: 34px; padding: 5px 0; font-size: 12.5px; font-weight: 600; text-align: center; opacity: .75; transition: opacity .3s, color .3s; }
.seg-opt[lang="ar"] { font-family: "IBM Plex Sans Arabic", var(--sans); font-size: 14px; line-height: 1.1; }
.seg-opt.on { opacity: 1; color: var(--ink); }
.seg-thumb { position: absolute; top: 3px; bottom: 3px; left: 3px; width: 34px; border-radius: 999px; background: #fff; box-shadow: 0 2px 8px -2px rgba(0,0,0,.25); transition: transform .5s var(--spring); }
html[lang="ar"] .seg-thumb { transform: translateX(34px); }
html[dir="rtl"] .seg { direction: ltr; }
.nav-join { min-height: 38px; }
.nav-wrap.on-dark .nav-join { background: #fff; color: var(--ink); }
.menu-btn { width: 40px; height: 40px; border-radius: 50%; border: 0; background: transparent; cursor: pointer; position: relative; color: inherit; }
.menu-btn i { position: absolute; left: 11px; right: 11px; height: 1.5px; border-radius: 2px; background: currentColor; transition: transform .45s var(--spring), top .45s var(--spring); }
.menu-btn i:first-child { top: 16px; } .menu-btn i:last-child { top: 23px; }
.nav-wrap.open .menu-btn i:first-child { top: 19.5px; transform: rotate(45deg); }
.nav-wrap.open .menu-btn i:last-child { top: 19.5px; transform: rotate(-45deg); }
.nav-links a.mobile-join { display: flex; justify-content: center; margin-top: 10px; background: var(--ink); color: #fff; opacity: 1; font-weight: 500; border-radius: 999px; }
@media (max-width: 879px) {
  .bar { grid-template-columns: 1fr auto; }
  .nav-join { display: none; }
  /* Mobile menu: a glass sheet that drops from the top. */
  .nav-links {
    display: grid; position: fixed; left: 0; right: 0; top: 0; padding: 84px var(--gutter) 22px; gap: 2px;
    background: rgba(var(--tint), .72); backdrop-filter: blur(28px) saturate(1.6); -webkit-backdrop-filter: blur(28px) saturate(1.6);
    box-shadow: 0 24px 50px -24px rgba(0,0,0,.35); border-radius: 0 0 26px 26px;
    transform: translateY(-104%); transition: transform .6s var(--ease); z-index: -1;
  }
  .nav-wrap.open .nav-links { transform: none; }
  .nav-wrap.open { height: auto; }
  .nav-links a { font-size: 20px; letter-spacing: -.02em; padding: 12px 4px; opacity: .9; }
  .nav-ind { display: none; }
  .nav-wrap.on-dark .nav-links a.mobile-join { background: #fff; color: var(--ink); }
}
@media (min-width: 880px) { .nav-links { display: flex; } .menu-btn { display: none; } .nav-links a.mobile-join { display: none; } }
section[id] { scroll-margin-top: 84px; }

/* ---------- hero ---------- */
.hero { padding: 12px 12px 0; }
.hero-panel {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  min-height: min(92svh, 860px); display: flex; align-items: flex-end;
  background: var(--espresso);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: settle 2.6s var(--ease) forwards; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,12,10,.15) 0%, rgba(15,12,10,.1) 35%, rgba(15,12,10,.72) 100%); }
html[dir="ltr"] .hero-shade { background: linear-gradient(180deg, rgba(15,12,10,.1) 30%, rgba(15,12,10,.75) 100%), linear-gradient(90deg, rgba(15,12,10,.45), transparent 60%); }
html[dir="rtl"] .hero-shade { background: linear-gradient(180deg, rgba(15,12,10,.1) 30%, rgba(15,12,10,.75) 100%), linear-gradient(270deg, rgba(15,12,10,.45), transparent 60%); }
.hero-copy { position: relative; z-index: 2; padding: clamp(24px, 5vw, 64px); padding-top: 120px; max-width: 760px; color: #fff; }
.pill-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: #9fdc8f; box-shadow: 0 0 0 0 rgba(159,220,143,.7); animation: pulse 2.2s infinite; }
.h-hero { font-family: var(--sans); font-weight: 400; font-size: clamp(44px, 8vw, 100px); line-height: .98; letter-spacing: -.05em; margin: 20px 0 18px; }
.h-hero em { letter-spacing: -.03em; }
.h-hero span, .h-hero em { display: block; }
html[lang="ar"] .h-hero { letter-spacing: 0; line-height: 1.3; font-size: clamp(38px, 7vw, 84px); }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.85); max-width: 32em; margin-bottom: 26px; }

.float-card {
  position: absolute; z-index: 3; inset-inline-end: clamp(16px, 3vw, 40px); bottom: clamp(16px, 3vw, 40px);
  display: none; gap: 14px; align-items: center;
  padding: 10px 18px 10px 10px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); color: #fff;
}
html[dir="rtl"] .float-card { padding: 10px 10px 10px 18px; }
.float-card video { width: 92px; height: 116px; object-fit: cover; border-radius: var(--r-md); }
.fc-title { font-family: var(--sans); letter-spacing: -.03em; font-size: 19px; line-height: 1.2; }
.fc-meta { font-size: 13px; opacity: .8; }
.fc-price { font-size: 15px; font-weight: 500; margin-top: 6px; }
.fc-verified { display: flex; gap: 7px; align-items: center; font-size: 12px; margin-top: 6px; opacity: .92; }
@media (min-width: 900px) { .float-card { display: flex; } }

/* ---------- trust ---------- */
.trust { max-width: var(--max); margin: 0 auto; padding: 56px var(--gutter) 24px; }
.trust-list li { padding: 28px 22px; border-radius: var(--r-lg); background: var(--shade-grad); box-shadow: var(--inner-hi), 0 1px 2px rgba(0,0,0,.04); }
.trust-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; text-align: center; }
.trust-list h3 { font-family: var(--sans); letter-spacing: -.03em; font-size: 22px; margin: 14px 0 4px; }
.trust-list p { color: var(--mute); font-size: 15px; max-width: 20em; margin: 0 auto; }
@media (min-width: 720px) { .trust-list { grid-template-columns: repeat(3, 1fr); } }
.ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(180deg, #2A2A28, #0F0F0E); color: #fff; box-shadow: 0 10px 22px -10px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.18); }
.ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- scroll story ---------- */
.story { height: 300vh; position: relative; background: radial-gradient(60% 45% at 50% 55%, #EFEFEC 0%, rgba(255,255,255,0) 70%); }
.story-sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: grid; grid-template-rows: auto 1fr auto; gap: 16px; align-items: center; justify-items: center;
  padding: 80px var(--gutter) 28px; max-width: var(--max); margin: 0 auto; text-align: center;
}
.story-left, .story-right { position: relative; width: 100%; }
.story-lines, .story-right { display: grid; }
.story-h, .story-p { grid-area: 1 / 1; opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.story-h.is-on, .story-p.is-on { opacity: 1; transform: none; }
.story-h { font-family: var(--sans); font-size: clamp(30px, 4.4vw, 54px); line-height: 1.05; letter-spacing: -.045em; }
html[lang="ar"] .story-h { letter-spacing: 0; line-height: 1.35; }
.story-p { color: var(--ink-2); font-size: 16px; max-width: 22em; margin: 0 auto; }
.story-card {
  position: relative; height: 100%; max-height: 62vh; aspect-ratio: 3 / 4; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.06); transform: scale(var(--s, .9)); transition: transform .2s linear; background: var(--shade);
}
.story-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s var(--ease), transform 1.4s var(--ease); transform: scale(1.06); }
.story-media.is-on { opacity: 1; transform: scale(1); }
.story-chip { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.chip-step { font-size: 12px; font-weight: 500; padding: 6px 12px; border-radius: 999px; color: var(--mute); transition: background .4s, color .4s; }
.chip-step.is-on { background: var(--ink); color: #fff; }
.story-dots { display: flex; gap: 6px; justify-content: center; margin-top: 14px; grid-area: 2 / 1; }
.story-dots i { width: 24px; height: 3px; border-radius: 3px; background: var(--line); transition: background .4s; }
.story-dots i.is-on { background: var(--ink); }
@media (min-width: 900px) {
  .story-sticky { grid-template-columns: 1fr auto 1fr; grid-template-rows: 1fr; gap: 48px; text-align: start; padding-top: 64px; }
  .story-left { justify-self: end; text-align: end; }
  html[dir="rtl"] .story-left { text-align: start; }
  .story-right { justify-self: start; }
  .story-p { margin: 0; }
  .story-dots { justify-content: flex-start; }
  .story-card { height: 74vh; max-height: 720px; }
}

/* ---------- sections ---------- */
.sec-head { margin-bottom: 40px; max-width: 760px; }
.sec-head.row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.how, .occasions, .vendors { max-width: var(--max); margin: 0 auto; padding: 88px var(--gutter); }
.how { max-width: none; background: linear-gradient(180deg, #fff 0%, var(--bg-2) 30%, var(--bg-2) 70%, #fff 100%); }
.how > * { max-width: calc(var(--max) - 2 * var(--gutter)); margin-inline: auto; }

/* ---------- how (1-2-3-4) ---------- */
.flow { position: relative; }
.flow-line { display: none; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.step {
  background: var(--shade-grad); border-radius: var(--r-lg); padding: 22px 22px 24px;
  border: 1px solid rgba(0,0,0,.04); box-shadow: var(--inner-hi), var(--shadow);
  display: flex; flex-direction: column; gap: 10px;
}
.badge { width: 34px; height: 34px; border-radius: 50%; background: var(--card); display: grid; place-items: center; font-size: 12px; font-weight: 600; box-shadow: 0 6px 14px -6px rgba(0,0,0,.3), inset 0 0 0 1px rgba(0,0,0,.05); }
.step h3 { font-family: var(--sans); letter-spacing: -.03em; font-size: 26px; line-height: 1.1; margin-top: 6px; }
.step p { color: var(--ink-2); font-size: 15px; }
.step-media { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4 / 5; margin: 8px 0 6px; background: var(--shade-2); box-shadow: 0 14px 30px -16px rgba(0,0,0,.4); }
.step-media img, .step-media video { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) {
  .steps { grid-template-columns: repeat(4, 1fr); align-items: start; padding-top: 40px; }
  .step:nth-child(2) { margin-top: 36px; } .step:nth-child(3) { margin-top: 72px; } .step:nth-child(4) { margin-top: 108px; }
  .flow-line { display: block; position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 60px; overflow: visible; }
  .flow-line path { fill: none; stroke: var(--ink); stroke-width: 1.2; stroke-dasharray: 5 7; vector-effect: non-scaling-stroke; opacity: .35; }
  html[dir="rtl"] .flow-line { transform: scaleX(-1); }
}

/* ---------- feature (receipt) ---------- */
.feature { padding: 0 12px; }
.feature-panel {
  position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--espresso);
  display: grid; gap: 32px; padding: clamp(24px, 5vw, 72px); max-width: 1480px; margin: 0 auto;
}
.feature-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(2px) saturate(.9); transform: scale(1.05); }
.feature-shade { position: absolute; inset: 0; background: rgba(18,14,12,.68); }
.feature-copy { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 18px; align-self: center; max-width: 520px; }
.feature-copy .btn { align-self: flex-start; }
.receipt {
  position: relative; z-index: 2; background: var(--card); border-radius: var(--r-lg); padding: 24px 22px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); width: 100%; max-width: 460px; justify-self: center;
}
@media (min-width: 960px) { .feature-panel { grid-template-columns: 1.1fr .9fr; gap: 56px; } .receipt { justify-self: end; } }
.receipt-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.receipt-head h3 { font-family: var(--sans); letter-spacing: -.03em; font-size: 24px; line-height: 1.15; }
.receipt-head p { font-size: 13px; color: var(--mute); margin-top: 2px; }
.receipt-flag { font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 999px; background: var(--shade); color: var(--ink-2); white-space: nowrap; box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); }
.lines { list-style: none; margin: 8px 0 0; padding: 0; }
.line {
  display: grid; grid-template-columns: 1fr auto 18px; gap: 10px; align-items: center;
  padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px;
  opacity: 0; transform: translateY(8px); transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.feature-panel.in .line { opacity: 1; transform: none; }
.feature-panel.in .line:nth-child(1) { transition-delay: .2s; } .feature-panel.in .line:nth-child(2) { transition-delay: .32s; }
.feature-panel.in .line:nth-child(3) { transition-delay: .44s; } .feature-panel.in .line:nth-child(4) { transition-delay: .56s; }
.feature-panel.in .line:nth-child(5) { transition-delay: .68s; } .feature-panel.in .line:nth-child(6) { transition-delay: .8s; }
.item { display: flex; flex-direction: column; }
.item small { font-size: 11.5px; font-weight: 600; color: var(--sage); letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }
html[lang="ar"] .item small { letter-spacing: 0; font-size: 12.5px; }
.amt { font-variant-numeric: tabular-nums; font-weight: 500; }
.tick { width: 16px; height: 16px; border-radius: 50%; background: var(--shade); position: relative; }
.tick::after { content: ""; position: absolute; left: 5px; top: 3px; width: 4px; height: 7px; border: solid var(--sage); border-width: 0 1.6px 1.6px 0; transform: rotate(45deg) scale(0); transition: transform .4s var(--ease) 1s; }
.feature-panel.in .tick::after { transform: rotate(45deg) scale(1); }
.line-yours { background: #EEF1EA; margin: 6px -10px; padding: 11px 10px; border-radius: 10px; border-bottom: 0; }
.total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; font-size: 14px; font-weight: 500; }
.total-amt { font-family: var(--sans); letter-spacing: -.03em; font-size: 30px; font-variant-numeric: tabular-nums; }
.total-amt small { font-family: var(--sans); font-size: 13px; color: var(--mute); }
.verified { display: flex; gap: 8px; align-items: center; margin-top: 14px; font-size: 13px; color: var(--ink-2); }
.tick-dot { flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--sage); position: relative; }
.tick-dot::after { content: ""; position: absolute; left: 5.5px; top: 3px; width: 4px; height: 7px; border: solid #fff; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.fc-verified .tick-dot { background: #9fdc8f; } .fc-verified .tick-dot::after { border-color: var(--ink); }

/* ---------- occasions carousel ---------- */
.rail-nav { display: none; gap: 8px; }
@media (min-width: 720px) { .rail-nav { display: flex; } }
.round { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--card); cursor: pointer; font-size: 18px; transition: background .3s, color .3s; box-shadow: var(--shadow); }
.round:hover { background: var(--ink); color: #fff; }
html[dir="rtl"] .round { transform: scaleX(-1); }
.rail {
  list-style: none; margin: 0 calc(var(--gutter) * -1); padding: 8px var(--gutter) 40px;
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.occ { position: relative; flex: 0 0 min(76vw, 340px); aspect-ratio: 3 / 4.2; border-radius: var(--r-lg); overflow: hidden; scroll-snap-align: start; background: var(--shade); box-shadow: var(--shadow); }
.occ img, .occ video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.occ:hover img, .occ:hover video { transform: scale(1.04); }
.occ::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15,12,10,.72)); }
.occ-copy { position: absolute; z-index: 2; inset-inline: 20px; bottom: 20px; color: #fff; }
.occ-copy h3 { font-family: var(--sans); letter-spacing: -.03em; font-size: 26px; line-height: 1.1; }
.occ-copy p { font-size: 14px; opacity: .85; margin-top: 4px; }
.center-cta { display: flex; justify-content: center; margin-top: 36px; }

/* ---------- vendors ---------- */
.vrow { display: grid; gap: 28px; align-items: center; margin-bottom: 72px; }
@media (min-width: 900px) { .vrow { grid-template-columns: 1.05fr .95fr; gap: 72px; } .vrow.flip .vmedia { order: 2; } }
.vmedia { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5 / 4; background: var(--shade); box-shadow: var(--shadow-lg); }
.vmedia > img, .vmedia > video { width: 100%; height: 100%; object-fit: cover; }
.vcopy { display: flex; flex-direction: column; gap: 14px; max-width: 460px; }
.vcopy p { color: var(--ink-2); }
.vcopy .muted { color: var(--mute); font-size: 15px; }
.vcopy .btn { align-self: flex-start; margin-top: 8px; }
.mock { position: absolute; z-index: 2; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--r-md); box-shadow: 0 20px 40px -18px rgba(0,0,0,.45); padding: 14px; font-size: 13px; }
.mock-profile { inset-inline: 16px; bottom: 16px; }
@media (min-width: 560px) { .mock-profile { inset-inline: auto 20px; width: 330px; } html[dir="rtl"] .mock-profile { inset-inline: 20px auto; } }
.mp-top { display: flex; align-items: center; gap: 10px; }
.mp-top b { display: block; font-size: 14px; } .mp-top small { color: var(--mute); }
.mp-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--espresso); color: var(--cream); display: grid; place-items: center; font-family: var(--italic); font-style: italic; font-size: 17px; flex: none; }
.mp-avatar.sm { width: 26px; height: 26px; font-size: 13px; }
.mp-badge { margin-inline-start: auto; font-size: 11px; font-weight: 600; color: var(--sage); background: #EEF1EA; padding: 4px 9px; border-radius: 999px; }
.mp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.mp-stats b { display: block; font-size: 15px; } .mp-stats small { color: var(--mute); font-size: 11.5px; line-height: 1.3; display: block; }
.mock-msg { inset-inline: 16px; bottom: 16px; }
@media (min-width: 560px) { .mock-msg { inset-inline: 20px auto; width: 320px; } html[dir="rtl"] .mock-msg { inset-inline: auto 20px; } }
.mm-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.mm-head small { margin-inline-start: auto; color: var(--mute); }
.mm-bubble { background: var(--shade); border-radius: 14px; border-start-start-radius: 4px; padding: 10px 12px; line-height: 1.45; }
.mm-ref { color: var(--sage); font-size: 12px; font-weight: 500; margin-top: 8px; }
.mini { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
@media (min-width: 800px) { .mini { grid-template-columns: repeat(3, 1fr); } }
.mini li { background: var(--shade-grad); border-radius: var(--r-lg); padding: 26px; border: 1px solid rgba(0,0,0,.04); box-shadow: var(--inner-hi), var(--shadow); }
.mini h3 { font-family: var(--sans); letter-spacing: -.03em; font-size: 22px; margin: 16px 0 6px; }
.mini p { color: var(--ink-2); font-size: 15px; }

/* ---------- join ---------- */
.join { background: linear-gradient(180deg, #F6F6F4 0%, #EBEBE8 100%); padding: 88px var(--gutter); border-radius: var(--r-xl); margin: 0 12px; box-shadow: var(--inner-hi); }
.join-wrap { max-width: var(--max); margin: 0 auto; display: grid; gap: 32px; }
@media (min-width: 980px) { .join-wrap { grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; } .join-side { position: sticky; top: 100px; } }
.join-side .muted { margin-top: 14px; }
.join-img { display: none; margin-top: 28px; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; max-width: 360px; box-shadow: var(--shadow-lg); }
.join-img video { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 980px) { .join-img { display: block; } }
.join-card { background: var(--card); border-radius: var(--r-xl); padding: clamp(20px, 3.5vw, 40px); box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.04); }
.tabs { display: inline-flex; padding: 4px; border-radius: 999px; background: var(--shade); margin-bottom: 26px; box-shadow: inset 0 1px 3px rgba(0,0,0,.08); }
.tab { border: 0; background: transparent; cursor: pointer; padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--mute); transition: background .3s, color .3s; }
.tab[aria-selected="true"] { background: var(--card); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.form-note { color: var(--ink-2); margin-bottom: 20px; }
.grid { display: grid; gap: 16px; }
@media (min-width: 600px) { .grid { grid-template-columns: 1fr 1fr; } .field-wide { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit; font-weight: 400; font-size: 16px; color: var(--ink);
  background: var(--bg-2); border: 1px solid rgba(0,0,0,.06); border-radius: 12px; padding: 13px 14px; box-shadow: inset 0 1px 2px rgba(0,0,0,.04); min-height: 50px; width: 100%;
  transition: border-color .25s, background .25s, box-shadow .25s; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23141311' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-inline-end: 38px; }
html[dir="rtl"] .field select { background-position: left 14px center; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: var(--card); border-color: var(--ink); box-shadow: 0 0 0 4px rgba(20,19,17,.06); }
.field .invalid, input.invalid, select.invalid { border-color: #B4442F !important; background: #FBF1EE; }
.pricing { border: 0; margin: 32px 0 20px; padding: 26px 0 0; border-top: 1px solid var(--line); }
.pricing-title { font-family: var(--sans); letter-spacing: -.03em; font-size: clamp(24px, 3vw, 30px); padding: 0; }
.pricing-sub { color: var(--mute); margin: 6px 0 16px; font-size: 15px; }
.price-row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.price-q { font-size: 15px; font-weight: 500; margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.chip span { display: inline-block; padding: 8px 14px; border-radius: 999px; background: var(--bg-2); box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); font-size: 14px; border: 1px solid transparent; transition: all .25s var(--ease); white-space: nowrap; }
.chip:hover span { border-color: var(--line); }
.chip input:checked + span { background: var(--ink); color: #fff; }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(20,19,17,.2); }
.check { display: flex; gap: 12px; align-items: flex-start; margin: 12px 0; font-size: 15px; color: var(--ink-2); cursor: pointer; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--ink); flex: none; }
.check.invalid span { color: #B4442F; }
.hp { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; clip-path: inset(50%); pointer-events: none; }
.form-error { color: #B4442F; margin: 8px 0 12px; font-size: 15px; }
.form .btn-block { margin-top: 14px; min-height: 54px; }
.success { text-align: center; padding: 48px 12px; }
.success-mark { display: inline-block; width: 56px; height: 56px; border-radius: 50%; background: var(--sage); position: relative; margin-bottom: 18px; }
.success-mark::after { content: ""; position: absolute; left: 21px; top: 14px; width: 11px; height: 21px; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.success p { color: var(--ink-2); margin-top: 8px; }
.preview-note { font-size: 13px; color: #B4442F !important; }

/* ---------- final CTA ---------- */
.final { padding: 88px 12px 24px; }
.final-panel { position: relative; overflow: hidden; border-radius: var(--r-xl); min-height: 520px; display: grid; place-items: center; padding: 24px; max-width: 1480px; margin: 0 auto; }
.final-panel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-shade { position: absolute; inset: 0; background: rgba(15,12,10,.45); }
.final-glass {
  position: relative; z-index: 2; text-align: center; max-width: 640px; padding: clamp(28px, 5vw, 48px);
  border-radius: var(--r-xl); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.final-glass .ctas { justify-content: center; margin-top: 26px; }

/* ---------- footer ---------- */
.foot { position: relative; overflow: hidden; padding: 64px var(--gutter) 40px; }
.foot-mark { position: absolute; inset-inline-end: -30px; bottom: -70px; width: 380px; opacity: .045; pointer-events: none; }
.foot-row { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; font-size: 14px; color: var(--ink-2); }
.foot-row .brand { margin-inline-end: auto; }
.foot-row a { text-decoration: none; }
.cities { letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
html[lang="ar"] .cities { letter-spacing: 0; font-size: 14px; }
.small { font-size: 12px; color: var(--mute); }

/* ---------- card entrances ---------- */
.trust-list li.reveal, .mini li.reveal { transform: translateY(34px) scale(.97); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--i, 0) * .12s); }
.trust-list li.reveal.in, .mini li.reveal.in { transform: none; }
.trust-list li .ico, .mini li .ico { transform: scale(.6) rotate(-12deg); opacity: 0; transition: transform .8s var(--spring), opacity .5s; transition-delay: calc(var(--i, 0) * .12s + .2s); }
.trust-list li h3, .trust-list li p, .mini li h3, .mini li p { opacity: 0; transform: translateY(12px); filter: blur(4px); transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease); }
.trust-list li h3, .mini li h3 { transition-delay: calc(var(--i, 0) * .12s + .32s); }
.trust-list li p, .mini li p { transition-delay: calc(var(--i, 0) * .12s + .44s); }
.trust-list li.in .ico, .mini li.in .ico { transform: none; opacity: 1; }
.trust-list li.in h3, .trust-list li.in p, .mini li.in h3, .mini li.in p { opacity: 1; transform: none; filter: none; }

/* ---------- motion ---------- */
.load { opacity: 0; transform: translateY(16px); animation: rise 1s var(--ease) forwards; animation-delay: calc(var(--d, 0) * .1s + .1s); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--i, 0) * .1s); }
.reveal.in { opacity: 1; transform: none; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes settle { to { transform: scale(1); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(159,220,143,.6); } 70% { box-shadow: 0 0 0 8px rgba(159,220,143,0); } 100% { box-shadow: 0 0 0 0 rgba(159,220,143,0); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .load, .reveal, .line, .story-h, .story-p, .story-media, .ico, .trust-list h3, .trust-list p, .mini h3, .mini p { transition: none !important; animation: none !important; }
  .ico, .trust-list h3, .trust-list p, .mini h3, .mini p { opacity: 1 !important; transform: none !important; filter: none !important; }
  .load, .reveal, .line { opacity: 1 !important; transform: none !important; }
  .hero-media { animation: none; transform: none; }
  .tick::after { transform: rotate(45deg) scale(1) !important; }
  .story { height: auto; }
  .story-sticky { position: static; height: auto; padding-block: 64px; }
  .story-card { transform: none; height: 60vh; }
}

/* ---------- audience switch (Hosts | Business) ---------- */
html[data-audience="hosts"] [data-aud="business"],
html[data-audience="business"] [data-aud="hosts"] { display: none !important; }
main { transition: opacity .35s var(--ease), filter .35s var(--ease); }
main.aud-swap { opacity: .15; filter: blur(6px); }
.sub-brand { font-family: var(--sans); font-weight: 400; font-size: 17px; letter-spacing: -.02em; opacity: .55; margin-inline-start: 6px; align-self: flex-end; line-height: 1; padding-bottom: 3px; animation: subIn .5s var(--ease); }
@keyframes subIn { from { opacity: 0; transform: translateY(4px); } to { opacity: .5; transform: none; } }
.seg-aud .seg-opt { width: 78px; font-size: 12.5px; }
.seg-aud .seg-thumb { width: 78px; }
html[data-audience="business"] .seg-aud .seg-thumb { transform: translateX(78px); }
html[lang="ar"] .seg-aud .seg-opt { font-family: "IBM Plex Sans Arabic", var(--sans); font-size: 13px; }
.seg-aud .seg-opt { opacity: .75; }
html[data-audience="hosts"] .seg-aud [data-aud-opt="hosts"], html[data-audience="business"] .seg-aud [data-aud-opt="business"] { opacity: 1; color: var(--ink); }
html[lang="ar"] .seg-thumb { transform: none; }
html[lang="ar"] #langToggle .seg-thumb { transform: translateX(34px); }
/* On phones the switch floats at the bottom, within thumb reach. */
@media (max-width: 879px) {
  .seg-aud {
    position: fixed; left: 50%; bottom: max(14px, env(safe-area-inset-bottom)); transform: translateX(-50%); z-index: 90;
    padding: 4px; background: rgba(255,255,255,.72); color: var(--ink);
    backdrop-filter: blur(20px) saturate(1.8); -webkit-backdrop-filter: blur(20px) saturate(1.8);
    box-shadow: 0 12px 30px -10px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.9), inset 0 0 0 1px rgba(0,0,0,.05) !important;
  }
  .nav-wrap.on-dark .seg-aud { background: rgba(255,255,255,.72); }
  .seg-aud .seg-opt { width: 96px; padding: 9px 0; font-size: 14px; }
  .seg-aud .seg-thumb { width: 96px; top: 4px; bottom: 4px; left: 4px; background: var(--ink); }
  html[data-audience="business"] .seg-aud .seg-thumb { transform: translateX(96px); }
  html[data-audience="hosts"] .seg-aud [data-aud-opt="hosts"], html[data-audience="business"] .seg-aud [data-aud-opt="business"] { color: #fff; }
  .foot { padding-bottom: 96px; }
}

/* ---------- badge ladder mock ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px 5px 5px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: -.01em; white-space: nowrap; }
html[dir="rtl"] .pill { padding: 5px 5px 5px 12px; }
/* Badge circle holds the real c+m monogram artwork, tinted with the text colour via a mask. */
.pill .m { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; }
.pill .m::before { content: ""; width: 15px; height: 8px; background: currentColor;
  -webkit-mask: url("assets/brand/copymy-monogram-black.svg") center / contain no-repeat; mask: url("assets/brand/copymy-monogram-black.svg") center / contain no-repeat; }
.p-host { box-shadow: inset 0 0 0 1.2px var(--ink); background: #fff; }
.p-host .m { background: var(--ink); color: #fff; }
.p-creator { background: var(--ink); color: #fff; }
.p-creator .m { background: #fff; color: var(--ink); }
.p-pro { background: linear-gradient(180deg,#2A2A28,#0F0F0E); color: #fff; box-shadow: 0 8px 18px -8px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.18); }
.p-pro .m { background: #fff; color: var(--ink); }
.p-pro em { font-family: var(--italic); font-style: italic; font-weight: 500; font-size: 14.5px; }
/* Two aligned columns: badge, then description. Rows share the column widths via subgrid. */
.mock-ladder { inset-inline: 16px; bottom: 16px; display: grid; grid-template-columns: max-content 1fr; column-gap: 16px; row-gap: 12px; padding: 16px 18px; align-items: center; }
@media (min-width: 560px) { .mock-ladder { inset-inline: 20px auto; width: 380px; } html[dir="rtl"] .mock-ladder { inset-inline: auto 20px; } }
.ladder-step { display: grid; grid-column: 1 / -1; grid-template-columns: subgrid; align-items: center; margin: 0; }
.ladder-step small { color: var(--mute); font-size: 12px; line-height: 1.3; text-align: start; }

/* ---------- Typeform-style flow ---------- */
.flow { position: relative; min-height: 470px; display: flex; flex-direction: column; }
.fl-top { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.fl-back { width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--shade); cursor: pointer; font-size: 16px; color: var(--ink); transition: opacity .3s, background .3s; flex: none; }
.fl-back:hover { background: var(--shade-2); }
.fl-back[disabled] { opacity: 0; pointer-events: none; }
html[dir="rtl"] .fl-back { transform: scaleX(-1); }
.fl-track { flex: 1; height: 4px; border-radius: 4px; background: var(--shade); overflow: hidden; box-shadow: inset 0 1px 1px rgba(0,0,0,.06); }
.fl-bar { height: 100%; width: var(--p, 0%); background: var(--ink); border-radius: 4px; transition: width .6s var(--ease); }
.fl-count { font-size: 12.5px; color: var(--mute); font-variant-numeric: tabular-nums; min-width: 40px; text-align: end; }
.fl-stage { position: relative; flex: 1; }
.fl-screen { animation: flIn .55s var(--ease) both; }
.fl-screen.out { animation: flOut .28s var(--ease) both; }
.fl-screen.back { animation-name: flInBack; }
@keyframes flIn { from { opacity: 0; transform: translateY(28px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes flInBack { from { opacity: 0; transform: translateY(-28px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes flOut { to { opacity: 0; transform: translateY(-18px); filter: blur(4px); } }
.fl-num { font-size: 13px; font-weight: 600; color: var(--mute); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.fl-q { font-family: var(--sans); font-size: clamp(24px, 3.2vw, 32px); line-height: 1.12; letter-spacing: -.035em; font-weight: 500; }
.fl-q em { font-family: var(--italic); font-style: italic; font-weight: 400; }
html[lang="ar"] .fl-q { letter-spacing: 0; line-height: 1.4; }
html[lang="ar"] .fl-q em { font-style: normal; }
.fl-hint { color: var(--mute); font-size: 14.5px; margin-top: 8px; }
.fl-opts { display: grid; gap: 10px; margin-top: 24px; }
.fl-opts.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .fl-opts.two { grid-template-columns: 1fr; } }
.fl-opt {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: start; cursor: pointer;
  padding: 12px 14px; border-radius: 14px; border: 1px solid rgba(0,0,0,.08); background: var(--bg-2); color: var(--ink);
  font: inherit; font-size: 15.5px; font-weight: 500; letter-spacing: -.01em;
  box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(0,0,0,.04);
  transition: transform .25s var(--spring), background .25s, border-color .25s, box-shadow .25s, color .25s;
  opacity: 0; animation: optIn .5s var(--ease) forwards; animation-delay: calc(var(--k, 0) * 40ms + 120ms);
}
@keyframes optIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.fl-opt:hover { background: #fff; border-color: rgba(0,0,0,.18); box-shadow: 0 8px 20px -12px rgba(0,0,0,.3); }
.fl-opt:active { transform: scale(.985); }
.fl-key { flex: none; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; font-size: 11.5px; font-weight: 600; background: #fff; color: var(--mute); box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); transition: background .25s, color .25s; }
.fl-opt .fl-check { margin-inline-start: auto; width: 18px; height: 18px; border-radius: 50%; position: relative; opacity: 0; transform: scale(.5); transition: opacity .25s, transform .35s var(--spring); background: #fff; }
.fl-opt .fl-check::after { content: ""; position: absolute; left: 6px; top: 3px; width: 4px; height: 8px; border: solid var(--ink); border-width: 0 1.6px 1.6px 0; transform: rotate(45deg); }
.fl-opt.sel { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 10px 24px -12px rgba(0,0,0,.55); }
.fl-opt.sel .fl-key { background: rgba(255,255,255,.16); color: #fff; box-shadow: none; }
.fl-opt.sel .fl-check { opacity: 1; transform: none; }
.fl-opt.pulse { animation: pick .35s var(--spring); opacity: 1; }
@keyframes pick { 40% { transform: scale(1.02); } }
.fl-fields { display: grid; gap: 14px; margin-top: 22px; }
@media (min-width: 600px) { .fl-fields.two { grid-template-columns: 1fr 1fr; } .fl-fields .wide { grid-column: 1 / -1; } }
.fl-fields .field input, .fl-text { font-size: 17px; }
.fl-text { width: 100%; margin-top: 22px; font: inherit; font-size: 18px; color: var(--ink); background: transparent; border: 0; border-bottom: 1.5px solid rgba(0,0,0,.18); padding: 10px 2px; outline: none; resize: none; transition: border-color .3s; }
.fl-text:focus { border-color: var(--ink); }
.fl-actions { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.fl-go { min-height: 48px; }
.fl-skip { background: none; border: 0; font: inherit; font-size: 14.5px; color: var(--mute); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.fl-enter { font-size: 12.5px; color: var(--mute); display: none; }
@media (hover: hover) { .fl-enter { display: inline; } }
.fl-enter b { font-weight: 600; color: var(--ink-2); }
.fl-err { color: #B4442F; font-size: 14.5px; margin-top: 10px; }
.fl-consent { margin-top: 16px; }
.flow-switch { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; color: var(--mute); }
.flow-switch-btn { background: none; border: 0; font: inherit; font-weight: 500; color: var(--ink); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: 0; }
.fl-done { text-align: center; padding: 30px 8px 10px; }
.fl-done .success-mark { animation: popIn .7s var(--spring) both; }
@keyframes popIn { from { transform: scale(.4); opacity: 0; } to { transform: none; opacity: 1; } }
.fl-done p { color: var(--ink-2); margin-top: 8px; }
.fl-done .preview-note { margin-top: 12px; }
@media (prefers-reduced-motion: reduce) {
  .fl-screen, .fl-opt, .fl-done .success-mark { animation: none !important; opacity: 1 !important; }
  main { transition: none; }
}
/* The logo lockup always reads left to right, even on Arabic pages. */
.brand { direction: ltr; }
@media (max-width: 879px) { .join { padding-bottom: 120px; } }
