/* ===========================================================
   DROBE — EARLY ACCESS · conversion-first editorial landing
   One job, top to bottom: move the visitor to the email form.
   Dark, premium, magazine-spread treatment.
   =========================================================== */
:root {
  --ed-bg: #0F0A0A;
  --ed-fg: #FAF6F1;
  --ed-pink: #F4C2A8;
  --ed-rose: #E8B4C0;
  --ed-caramel: #C9885F;
  --ed-mute: #8A7A6E;
  --ed-dim: #6b5e54;
  --ed-soft: #b8aea1;
  --ed-rule: rgba(201, 136, 95, 0.15);
  --ed-rule-strong: rgba(201, 136, 95, 0.35);
  --ed-card: linear-gradient(160deg, rgba(42, 28, 20, 0.5) 0%, rgba(20, 16, 12, 0.32) 100%);
  /* fashion-spread accents — same chroma family, varied hue */
  --ac-cherry: #C0413B;
  --ac-mustard: #C9962E;
  --ac-sage: #8B9B78;
  --ac-denim: #6E89A8;
  --serif-pf: 'Playfair Display', 'Times New Roman', serif;
  --serif-cg: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ed-fabric:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='7'><rect width='7' height='7' fill='%230F0A0A'/><path d='M1.5 1.5l2 2M5.5 1.5l-2 2M1.5 5.5l2 -2M5.5 5.5l-2 -2' stroke='rgba(201,136,95,0.085)' stroke-width='0.5' stroke-linecap='round'/><circle cx='3.5' cy='3.5' r='0.35' fill='rgba(232,180,192,0.04)'/></svg>");
  /* woven dash frame for cards */
  --dash-h: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='8'><path d='M0 4 Q 8 0 16 4 T 32 4' stroke='%23C9885F' stroke-opacity='0.5' fill='none' stroke-width='1' stroke-linecap='round'/></svg>");
  --dash-v: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='32'><path d='M4 0 Q 0 8 4 16 T 4 32' stroke='%23C9885F' stroke-opacity='0.5' fill='none' stroke-width='1' stroke-linecap='round'/></svg>");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0F0A0A;
  background-image: var(--ed-fabric);
  background-repeat: repeat;
  color: var(--ed-fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: rgba(201, 136, 95, 0.4); color: var(--ed-fg); }
:focus-visible { outline: 2px solid var(--ed-caramel); outline-offset: 3px; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
.narrow { max-width: 940px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip {
  position: absolute; top: -100px; left: 16px;
  background: var(--ed-caramel); color: #0E0E0E;
  padding: 10px 16px; z-index: 9999; border-radius: 2px;
  font-size: 13px; font-weight: 600; text-decoration: none;
}
.skip:focus { top: 16px; }

.grad-text {
  background: linear-gradient(95deg, #F4C2A8 0%, #E8B4C0 35%, #D9A48B 70%, #C9885F 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rose { color: var(--ed-rose); }

/* ---- Section markers ---- */
.sec-tag {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-bottom: 44px;
}
.sec-tag .orn { font-size: 13px; color: var(--ed-caramel); line-height: 1; }
.sec-tag .rule { width: 56px; height: 1px; background: var(--ed-rule-strong); }
.sec-tag .lbl {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ed-caramel); font-weight: 500;
}
.sec-tag .pgno {
  font-family: var(--serif-cg); font-style: italic;
  font-size: 15px; color: var(--ed-mute);
}

/* ===========================================================
   NAV — single CTA, no menu (dead ends convert)
   =========================================================== */
.ed-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 10, 10, 0.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 0.5px solid var(--ed-rule-strong);
}
.ed-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0;
}
.ed-logo {
  font-family: var(--serif-pf); font-size: 24px; font-weight: 700;
  color: var(--ed-fg); text-decoration: none;
  letter-spacing: -0.01em; line-height: 1;
}
.ed-logo .war {
  font-family: var(--serif-pf); font-style: italic; font-weight: 400;
  opacity: 0.6; text-decoration: line-through;
  text-decoration-color: var(--ed-caramel); text-decoration-thickness: 1.5px;
}
.ed-logo .dot { color: var(--ed-caramel); }
.ed-nav-right { display: flex; align-items: center; gap: 22px; }
.ed-nav-issue {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ed-dim);
}
.ed-nav-issue .star { color: var(--ed-caramel); }
.ed-nav-cta {
  background: var(--ed-caramel); color: var(--ed-bg);
  padding: 10px 18px; border-radius: 2px;
  font-family: var(--serif-pf); font-style: italic; font-weight: 500;
  font-size: 15px; text-decoration: none; white-space: nowrap;
  transition: background 0.25s var(--ease);
}
.ed-nav-cta:hover { background: #d99971; }
@media (max-width: 600px) {
  .ed-nav-issue { display: none; }
  .ed-logo { font-size: 21px; }
}

/* ===========================================================
   SHARED — signup form + founding reassurance + buttons
   =========================================================== */
.signup { max-width: 500px; }
.signup-form {
  display: flex; align-items: stretch; gap: 0;
  border: 0.5px solid var(--ed-rule-strong); border-radius: 3px;
  background: rgba(20, 16, 12, 0.55); padding: 6px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.signup-form:focus-within {
  border-color: var(--ed-caramel);
  box-shadow: 0 0 0 1px rgba(201,136,95,0.25), 0 18px 48px -22px rgba(201,136,95,0.5);
}
.signup-form input[type="email"] {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  color: var(--ed-fg); font-family: var(--sans); font-size: 15px;
  padding: 14px 16px;
}
.signup-form input::placeholder { color: var(--ed-dim); }
.signup-form button {
  flex-shrink: 0; background: var(--ed-caramel); color: var(--ed-bg);
  border: none; cursor: pointer; border-radius: 2px; padding: 14px 24px;
  font-family: var(--serif-pf); font-style: italic; font-weight: 500;
  font-size: 16px; letter-spacing: 0.01em; white-space: nowrap;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.signup-form button:hover { background: #d99971; transform: translateY(-1px); }
.signup-msg {
  min-height: 20px; margin-top: 13px;
  font-family: var(--serif-cg); font-style: italic; font-size: 16px;
  color: var(--ed-rose); opacity: 0; transition: opacity 0.4s var(--ease);
}
.signup-msg.show { opacity: 1; }

.founding {
  margin-top: 20px; display: flex; align-items: flex-start; gap: 12px;
}
.founding .seal {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  border: 0.5px solid var(--ed-rule-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--ed-caramel); font-size: 15px;
  background: radial-gradient(circle, rgba(201,136,95,0.14), transparent 70%);
  box-shadow: 0 0 14px rgba(201,136,95,0.18); margin-top: 1px;
}
.founding p {
  font-size: 12.5px; line-height: 1.6; color: var(--ed-mute); max-width: 46ch;
}
.founding p strong { color: var(--ed-fg); font-weight: 600; }
.founding p .price { color: var(--ed-rose); font-weight: 600; }
.founding p .reg { text-decoration: line-through; text-decoration-color: var(--ed-dim); color: var(--ed-dim); }

/* ===========================================================
   N° 01 — HERO
   =========================================================== */
.hero { position: relative; padding: 144px 0 80px; overflow: hidden; }
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.07; mix-blend-mode: overlay;
}
.hero > .container { position: relative; z-index: 3; }
.hero-grid {
  display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 56px; align-items: center;
}
.hero-pre {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ed-caramel); font-weight: 500; margin-bottom: 26px;
}
.hero-pre::before { content: ''; width: 28px; height: 1px; background: var(--ed-caramel); opacity: 0.7; }

.hero-headline {
  font-family: var(--serif-pf); font-weight: 700;
  font-size: clamp(42px, 5.6vw, 72px); line-height: 1.0;
  letter-spacing: -0.03em; color: var(--ed-fg); margin-bottom: 26px;
  text-wrap: balance;
}
.hero-headline .em {
  font-family: var(--serif-cg); font-style: italic; font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-lede {
  font-family: var(--serif-cg); font-style: italic; font-weight: 400;
  font-size: clamp(19px, 2vw, 23px); line-height: 1.42; color: var(--ed-fg);
  max-width: 42ch; padding-left: 20px;
  border-left: 1px solid var(--ed-rule-strong); margin-bottom: 34px;
}
.hero-lede strong { font-style: normal; font-family: var(--serif-pf); font-weight: 500; color: var(--ed-rose); }

/* social proof strip under the form */
.hero-proof {
  margin-top: 26px; padding-top: 22px;
  border-top: 0.5px solid var(--ed-rule);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.hero-proof .faces { display: flex; }
.hero-proof .faces .f {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--ed-bg);
  margin-left: -9px; background-size: cover; background-position: center;
  box-shadow: 0 0 0 0.5px var(--ed-rule-strong);
}
.hero-proof .faces .f:first-child { margin-left: 0; }
.hero-proof .pf-text { font-size: 12.5px; color: var(--ed-mute); line-height: 1.5; }
.hero-proof .pf-text strong { color: var(--ed-fg); font-weight: 600; }
.hero-proof .stars { color: var(--ed-rose); letter-spacing: 1px; font-size: 13px; }
.hero-proof .press {
  font-family: var(--serif-cg); font-style: italic; font-size: 15px; color: var(--ed-caramel);
}
.hero-proof .div { width: 1px; height: 26px; background: var(--ed-rule-strong); }

/* right — phone presentation */
.hero-art {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 560px;
}
.hero-silk {
  position: absolute; z-index: 1; pointer-events: none;
  width: 150%; height: auto; top: 50%; left: 52%;
  transform: translate(-50%, -50%) rotate(-6deg);
  opacity: 0.6; user-select: none;
  -webkit-mask-image: radial-gradient(closest-side, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 92%);
          mask-image: radial-gradient(closest-side, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 92%);
}
.hero-phone {
  position: relative; z-index: 2; width: 100%; max-width: 360px;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.6));
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hero-phone { animation: none; } }

.hero-sticky {
  position: absolute; z-index: 4; bottom: 18px; right: -6px; width: 216px;
  background: #1a1410; border: 0.5px solid var(--ed-rule-strong); padding: 16px 18px;
  transform: rotate(3.5deg); box-shadow: 0 18px 30px -12px rgba(0,0,0,0.7);
}
.hero-sticky .q {
  font-family: var(--serif-cg); font-style: italic; font-size: 15px; line-height: 1.35; color: var(--ed-fg);
}
.hero-sticky .attr {
  margin-top: 11px; font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ed-caramel); font-weight: 500;
}
.hero-vrt {
  position: absolute; z-index: 4; top: 30px; left: -44px;
  transform: rotate(-90deg); transform-origin: center;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ed-dim); white-space: nowrap;
}
@media (max-width: 920px) {
  .hero { padding: 120px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { order: -1; min-height: 0; }
  .hero-phone { max-width: 290px; }
  .hero-vrt { display: none; }
  .hero-sticky { right: 0; bottom: 4px; }
}
@media (max-width: 560px) {
  .hero-sticky { width: 184px; right: -2px; }
  .signup-form { flex-direction: column; gap: 6px; }
  .signup-form button { padding: 15px; }
  .hero-proof { gap: 14px; }
  .hero-proof .div { display: none; }
}

/* editorial strip */
.fstrip {
  border-top: 0.5px solid var(--ed-rule-strong);
  border-bottom: 0.5px solid var(--ed-rule-strong);
  padding: 15px 0;
}
.fstrip-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.fstrip .l, .fstrip .r {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ed-mute);
}
.fstrip .r { text-align: right; }
.fstrip em {
  font-family: var(--serif-cg); font-style: italic; font-weight: 400;
  color: var(--ed-caramel); font-size: 13px; letter-spacing: 0.04em; text-transform: none;
}
.fstrip .c {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  font-family: var(--serif-cg); font-style: italic; color: var(--ed-caramel); font-size: 15px;
}
.fstrip .c .ln { width: 30px; height: 1px; background: var(--ed-rule-strong); }
@media (max-width: 760px) {
  .fstrip-row { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .fstrip .r, .fstrip .l { text-align: center; }
}

/* ===========================================================
   N° 02 — THE PROBLEM (PAS)
   =========================================================== */
.problem { padding: clamp(76px, 9vw, 120px) 0; }
.problem-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.problem-head {
  font-family: var(--serif-pf); font-style: italic; font-weight: 400;
  font-size: clamp(34px, 4.4vw, 58px); line-height: 1.05;
  color: var(--ed-fg); letter-spacing: -0.02em; margin-bottom: 30px;
  text-wrap: balance;
}
.problem-body p { font-size: 15.5px; line-height: 1.78; color: var(--ed-soft); }
.problem-body p + p { margin-top: 20px; }
.problem-body p .em { font-family: var(--serif-cg); font-style: italic; color: var(--ed-fg); font-size: 1.08em; }
.problem-thesis {
  margin: 26px 0; padding: 24px 0;
  border-top: 0.5px solid var(--ed-rule); border-bottom: 0.5px solid var(--ed-rule);
  font-family: var(--serif-pf); font-style: italic; font-weight: 400;
  font-size: clamp(21px, 2.5vw, 28px); line-height: 1.3; color: var(--ed-fg);
}
.problem-see { font-family: var(--serif-cg); font-style: italic; font-size: 19px; color: var(--ed-rose); }
/* phone visual for problem */
.problem-art { position: relative; display: flex; justify-content: center; }
.problem-art .ph {
  width: 100%; max-width: 320px; border-radius: 34px;
  background: linear-gradient(160deg, #2a1c14, #14100c); padding: 8px;
  border: 0.5px solid var(--ed-rule-strong);
  box-shadow: 0 40px 80px -24px rgba(0,0,0,0.8);
}
.problem-art .ph img { width: 100%; border-radius: 26px; display: block; }

/* live HTML phone mockup (replaces the flat screenshot) */
.problem-art .ph-live { position: relative; padding: 9px; overflow: hidden; }
.ph-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 24px; background: #0b0807; border-radius: 0 0 16px 16px; z-index: 5;
}
.ph-screen {
  border-radius: 27px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% -10%, #241811 0%, #150f0b 42%, #0e0a08 100%);
  border: 0.5px solid rgba(201,136,95,0.14);
}
.ph-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 24px 6px; font-family: var(--sans); font-size: 11px; font-weight: 600;
  color: var(--ed-fg); letter-spacing: 0.02em;
}
.ph-status-r { display: inline-flex; align-items: flex-end; gap: 3px; }
.ph-status-r .bar { width: 3px; border-radius: 1px; background: var(--ed-fg); }
.ph-status-r .bar:nth-child(1) { height: 6px; opacity: 0.5; }
.ph-status-r .bar:nth-child(2) { height: 9px; opacity: 0.8; }
.ph-status-r .bar:nth-child(3) { height: 11px; }
.ph-status-r .dot { width: 14px; height: 9px; border-radius: 2px; border: 1px solid var(--ed-fg); margin-left: 3px; opacity: 0.85; }
.ph-app { padding: 6px 17px 17px; }
.ph-apphead { display: flex; align-items: center; gap: 10px; padding: 6px 0 16px; }
.ph-back { font-size: 21px; color: var(--ed-mute); line-height: 1; }
.ph-apptitle {
  flex: 1; text-align: center; font-family: var(--serif-pf); font-weight: 500; font-size: 14px;
  color: var(--ed-soft); letter-spacing: 0.01em;
}
.ph-eye { font-size: 12px; color: var(--ed-caramel); }
.ph-hero { margin-bottom: 17px; }
.ph-kicker { font-size: 8.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ed-caramel); font-weight: 500; margin-bottom: 8px; }
.ph-h1 {
  font-family: var(--serif-pf); font-weight: 700; font-size: 25px; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ed-fg); margin-bottom: 9px;
}
.ph-sub { font-family: var(--serif-cg); font-style: italic; font-size: 13px; line-height: 1.4; color: var(--ed-soft); }
.ph-sub .amt { color: var(--ed-rose); font-style: normal; font-family: var(--serif-pf); font-weight: 600; }
.ph-list { list-style: none; display: flex; flex-direction: column; gap: 2px; margin: 0 -5px 14px; }
.ph-row { display: flex; align-items: center; gap: 12px; padding: 9px 7px; border-radius: 11px; }
.ph-row:not(:last-child) { border-bottom: 0.5px solid rgba(255,255,255,0.04); }
.ph-thumb {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 9px;
  background-size: cover; background-position: center; background-color: #1c1410;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.08), 0 4px 10px -4px rgba(0,0,0,0.6);
}
.ph-thumb[data-c="blazer"] { background-image: url('raid-blazer.png'); }
.ph-thumb[data-c="skirt"]  { background-image: url('raid-skirt.png'); }
.ph-thumb[data-c="knit"]   { background-image: url('raid-knit.png'); }
.ph-thumb[data-c="tee"]    { background-image: url('raid-tee.png'); }
.ph-thumb[data-c="bag"]    { background-image: url('raid-bag.png'); }
.ph-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ph-name { font-family: var(--serif-pf); font-weight: 500; font-size: 13.5px; color: var(--ed-fg); line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-meta { font-size: 10px; letter-spacing: 0.02em; color: var(--ed-mute); }
.ph-days {
  flex-shrink: 0; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ed-soft); background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.08);
  padding: 5px 9px; border-radius: 999px;
}
.ph-days.new { color: var(--ed-rose); background: rgba(232,180,192,0.08); border-color: rgba(232,180,192,0.28); }
.ph-note {
  display: flex; gap: 9px; align-items: flex-start; padding: 12px 13px; margin-bottom: 15px;
  border-left: 1.5px solid var(--ed-rose); background: rgba(232,180,192,0.04); border-radius: 0 8px 8px 0;
  font-family: var(--serif-cg); font-style: italic; font-size: 11.5px; line-height: 1.45; color: var(--ed-soft);
}
.ph-note-star { color: var(--ed-caramel); font-style: normal; }
.ph-note-em { color: var(--ed-rose); }
.ph-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: var(--ed-caramel); color: var(--ed-bg); border: none; border-radius: 13px; padding: 14px;
  font-family: var(--serif-pf); font-style: italic; font-weight: 500; font-size: 15px; cursor: default;
  box-shadow: 0 12px 28px -12px rgba(201,136,95,0.55);
}
.ph-cta .arw { font-style: normal; }
.problem-art .tape {
  position: absolute; top: -14px; right: 12%; z-index: 3;
  background: var(--ed-bg); border: 0.5px solid var(--ed-rule-strong);
  padding: 8px 14px; transform: rotate(-3deg);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ed-caramel); font-weight: 500;
}
@media (max-width: 880px) {
  .problem-grid { grid-template-columns: 1fr; gap: 44px; }
  .problem-art { order: -1; }
}

/* ===========================================================
   N° 03 — SOLUTION REVEAL
   =========================================================== */
.solution { padding: clamp(20px, 4vw, 48px) 0 clamp(60px, 7vw, 96px); }
.sol-intro { text-align: center; max-width: 820px; margin: 0 auto 72px; }
.sol-intro .eyebrow {
  display: inline-block; font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ed-caramel); font-weight: 500; margin-bottom: 22px;
}
.sol-intro h2 {
  font-family: var(--serif-pf); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04;
  letter-spacing: -0.025em; color: var(--ed-fg); margin-bottom: 22px; text-wrap: balance;
}
.sol-intro h2 .em { font-family: var(--serif-cg); font-style: italic; font-weight: 400; color: var(--ed-rose); }
.sol-intro .sub {
  font-family: var(--serif-cg); font-style: italic;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.45; color: var(--ed-soft);
  max-width: 600px; margin: 0 auto;
}

/* flagship feature spreads (alternating) */
.spread { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: clamp(64px, 8vw, 104px); }
.spread.reverse .spread-media { order: 2; }
.spread-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.spread-meta .no { font-family: var(--serif-cg); font-style: italic; font-size: 15px; color: var(--ed-mute); }
.spread-meta .lbl { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ed-caramel); font-weight: 500; }
.spread-meta .line { flex: 1; height: 1px; background: var(--ed-rule); max-width: 120px; }
.spread h3 {
  font-family: var(--serif-pf); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 46px); line-height: 1.06;
  letter-spacing: -0.02em; color: var(--ed-fg); margin-bottom: 18px; text-wrap: balance;
}
.spread h3 .em { font-family: var(--serif-cg); font-style: italic; font-weight: 400; color: var(--ed-rose); font-size: 1.06em; }
.spread .lede {
  font-family: var(--serif-cg); font-style: italic; font-size: 19px; line-height: 1.45;
  color: var(--ed-fg); padding-left: 18px; border-left: 1px solid var(--ed-rule-strong);
  margin-bottom: 22px; max-width: 46ch;
}
.spread .body { font-size: 14.5px; line-height: 1.7; color: var(--ed-mute); max-width: 46ch; }
.spread .body strong { color: var(--ed-soft); font-weight: 600; }
.spread .body + .body { margin-top: 14px; }
.spread .micro {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-family: var(--serif-cg); font-style: italic; font-size: 16px; color: var(--ed-caramel);
}
.spread .micro::before { content: '✦'; font-size: 12px; }

/* media frames */
.media-frame {
  position: relative; border-radius: 6px; overflow: visible;
}
.media-photo {
  width: 100%; border-radius: 6px; display: block;
  box-shadow: 0 36px 70px -28px rgba(0,0,0,0.8);
  border: 0.5px solid var(--ed-rule);
}
.media-phone {
  width: 100%; max-width: 360px; margin: 0 auto; display: block;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.6));
}
.media-twin { position: relative; }
.media-twin img { width: 100%; display: block; }
.media-cap {
  position: absolute; z-index: 4; bottom: 18px; left: 14px;
  background: rgba(15,10,10,0.82); backdrop-filter: blur(8px);
  border: 0.5px solid var(--ed-rule-strong); padding: 10px 14px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ed-rose); font-weight: 500;
}
@media (max-width: 880px) {
  .spread { grid-template-columns: 1fr; gap: 36px; }
  .spread.reverse .spread-media { order: -1; }
  .spread-media { order: -1; }
}

/* full feature grid — sell every feature */
.feat-band { padding-top: 12px; }
.feat-band-head { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.feat-band-head .ln { flex: 1; height: 1px; background: var(--ed-rule-strong); }
.feat-band-head .lbl { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ed-caramel); font-weight: 500; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  --accent: var(--ed-caramel);
  position: relative; padding: 34px 28px 30px; min-height: 230px;
  display: flex; flex-direction: column; background-color: transparent;
  background-image: var(--dash-h), var(--dash-h), var(--dash-v), var(--dash-v),
    radial-gradient(ellipse at top left, rgba(201, 136, 95, 0.07), transparent 55%), var(--ed-card);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y, no-repeat, no-repeat;
  background-position: top center, bottom center, left center, right center, 0 0, 0 0;
  background-size: 32px 8px, 32px 8px, 8px 32px, 8px 32px, auto, auto;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(201, 136, 95, 0.2); }
.feat-card .no { position: absolute; top: 16px; right: 18px; font-family: var(--serif-cg); font-style: italic; font-size: 16px; color: var(--accent); }
.feat-card .badge {
  position: absolute; top: 16px; right: 18px;
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ed-rose);
  border: 0.5px solid rgba(232,180,192,0.4); border-radius: 999px; padding: 4px 9px; font-weight: 500;
}
.feat-card .ico {
  width: 40px; height: 40px; border: 0.5px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 20px;
  box-shadow: 0 0 0 1px rgba(201,136,95,0.05), 0 0 16px rgba(201,136,95,0.14);
  background: radial-gradient(circle at center, rgba(201, 136, 95, 0.1), transparent 70%);
}
.feat-card .ico svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feat-card h4 {
  font-family: var(--serif-pf); font-weight: 500; font-size: 21px; line-height: 1.15;
  color: var(--ed-fg); margin-bottom: 12px; letter-spacing: -0.015em;
}
.feat-card h4 .em { font-family: var(--serif-cg); font-style: italic; font-weight: 400; color: var(--ed-rose); }
.feat-card p { font-size: 13.5px; line-height: 1.62; color: var(--ed-mute); margin: 0; }
.feat-card p .bold { color: var(--ed-soft); font-weight: 500; }
@media (max-width: 1040px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } .feat-card { min-height: 0; } }

/* ===========================================================
   N° 04 — FOUNDING OFFER STACK
   =========================================================== */
.offer { padding: clamp(76px, 9vw, 116px) 0; position: relative; }
.offer-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  background: var(--ed-card); border: 0.5px solid var(--ed-rule-strong);
  border-radius: 6px; padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8);
}
.offer h2 {
  font-family: var(--serif-pf); font-weight: 700;
  font-size: clamp(30px, 3.8vw, 50px); line-height: 1.05;
  letter-spacing: -0.025em; color: var(--ed-fg); margin-bottom: 12px; text-wrap: balance;
}
.offer h2 .em { font-family: var(--serif-cg); font-style: italic; font-weight: 400; color: var(--ed-rose); }
.offer .sub {
  font-family: var(--serif-cg); font-style: italic; font-size: 19px;
  color: var(--ed-soft); margin-bottom: 28px; max-width: 42ch;
}
.stack { list-style: none; margin: 0 0 26px; padding: 0; }
.stack li {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 14px; align-items: baseline;
  padding: 15px 0; border-bottom: 0.5px solid var(--ed-rule);
}
.stack li:first-child { border-top: 0.5px solid var(--ed-rule); }
.stack .ck { color: var(--ed-caramel); font-size: 14px; line-height: 1.4; }
.stack .txt { font-size: 14.5px; line-height: 1.5; color: var(--ed-fg); }
.stack .txt span { color: var(--ed-mute); }
.stack .val {
  font-family: var(--serif-cg); font-style: italic; font-size: 15px; color: var(--ed-rose); white-space: nowrap;
}
.stack .val.free { color: var(--ed-caramel); }
.offer-total {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px;
  font-size: 13px; color: var(--ed-mute);
}
.offer-total .big { font-family: var(--serif-pf); font-style: italic; font-size: 28px; color: var(--ed-rose); }
.offer-total .reg { text-decoration: line-through; text-decoration-color: var(--ed-dim); color: var(--ed-dim); }

/* scarcity + risk reversal column */
.offer-aside { display: flex; flex-direction: column; gap: 22px; }
.scarcity {
  border: 0.5px solid rgba(232,180,192,0.28); background: rgba(232,180,192,0.05);
  border-radius: 5px; padding: 24px;
}
.scarcity .label {
  display: flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ed-rose); font-weight: 500; margin-bottom: 14px;
}
.scarcity .label::before { content: '●'; font-size: 7px; }
.scarcity .counter { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.scarcity .counter .n { font-family: var(--serif-pf); font-style: italic; font-size: 44px; color: var(--ed-fg); line-height: 0.9; }
.scarcity .counter .of { font-family: var(--serif-cg); font-style: italic; font-size: 18px; color: var(--ed-mute); }
.scarcity .bar { height: 5px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 12px; }
.scarcity .bar i { display: block; height: 100%; width: 67%; background: linear-gradient(90deg, var(--ed-rose), var(--ed-caramel)); border-radius: 999px; }
.scarcity p { font-family: var(--serif-cg); font-style: italic; font-size: 15px; line-height: 1.45; color: var(--ed-fg); }
.risk { display: flex; align-items: flex-start; gap: 12px; }
.risk .ic { color: var(--ed-caramel); font-size: 16px; margin-top: 2px; }
.risk p { font-size: 12.5px; line-height: 1.6; color: var(--ed-mute); }
.risk p strong { color: var(--ed-fg); font-weight: 600; }
.offer .signup { max-width: none; margin-top: 4px; }
@media (max-width: 900px) {
  .offer-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ===========================================================
   N° 05 — SOCIAL PROOF DEEP
   =========================================================== */
.proof { padding: clamp(60px, 7vw, 96px) 0; }
.proof-head { text-align: center; margin-bottom: 56px; }
.proof-head h2 {
  font-family: var(--serif-pf); font-weight: 700;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.06; letter-spacing: -0.025em;
  color: var(--ed-fg); text-wrap: balance;
}
.proof-head h2 .em { font-family: var(--serif-cg); font-style: italic; font-weight: 400; color: var(--ed-rose); }
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto 72px; }
.tcard {
  position: relative; background: linear-gradient(160deg, rgba(201,136,95,0.07), rgba(201,136,95,0.02));
  border: 0.5px solid rgba(201, 136, 95, 0.22); border-radius: 3px; padding: 44px 26px 24px;
}
.tcard .mark { position: absolute; top: 10px; left: 22px; font-family: var(--serif-pf); font-style: italic; font-size: 60px; line-height: 1; color: var(--ed-caramel); opacity: 0.7; }
.tcard blockquote { margin: 0 0 24px; font-family: var(--serif-cg); font-style: italic; font-size: 17px; line-height: 1.42; color: var(--ed-fg); }
.tcard blockquote .rose { color: var(--ed-rose); }
.tcard figcaption { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 0.5px solid rgba(201, 136, 95, 0.18); }
.tcard .avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-pf); font-weight: 600; font-size: 13px; color: #1a1410;
  background: linear-gradient(135deg, #E8B4C0, #C9885F); box-shadow: 0 0 0 0.5px rgba(201, 136, 95, 0.4);
}
.tcard .who { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tcard .name { font-size: 12px; font-weight: 500; color: var(--ed-fg); }
.tcard .meta { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ed-mute); }
@media (max-width: 880px) { .tcards { grid-template-columns: 1fr; max-width: 540px; } }

/* big stat block */
.statblock {
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
  max-width: 880px; margin: 0 auto 72px; padding: 36px 0;
  border-top: 0.5px solid var(--ed-rule-strong); border-bottom: 0.5px solid var(--ed-rule-strong);
}
.statblock .figs { display: flex; align-items: baseline; gap: 16px; }
.statblock .big { font-family: var(--serif-pf); font-style: italic; font-size: clamp(46px, 6vw, 74px); line-height: 0.9; color: var(--ed-rose); letter-spacing: -0.02em; }
.statblock .big.dim { color: var(--ed-caramel); }
.statblock .slash { font-family: var(--serif-cg); font-style: italic; font-size: 34px; color: var(--ed-dim); }
.statblock .txt { font-family: var(--serif-cg); font-style: italic; font-size: clamp(18px, 2vw, 23px); line-height: 1.4; color: var(--ed-soft); }
.statblock .txt strong { color: var(--ed-fg); font-weight: 500; font-style: normal; font-family: var(--serif-pf); }
@media (max-width: 680px) { .statblock { grid-template-columns: 1fr; gap: 18px; text-align: center; } .statblock .figs { justify-content: center; } }

/* founder note */
.founder {
  display: grid; grid-template-columns: 200px 1fr; gap: 44px; align-items: center;
  max-width: 880px; margin: 0 auto;
}
.founder-photo {
  width: 200px; height: 240px; border-radius: 4px; overflow: hidden;
  border: 0.5px solid var(--ed-rule-strong); position: relative;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.8);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.founder-photo .tag {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(15,10,10,0.92));
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ed-rose); font-weight: 500;
}
.founder-note .eyebrow { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ed-caramel); font-weight: 500; margin-bottom: 18px; }
.founder-note p {
  font-family: var(--serif-cg); font-style: italic; font-size: clamp(19px, 2.1vw, 24px); line-height: 1.5; color: var(--ed-fg);
}
.founder-note p .rose { color: var(--ed-rose); }
.founder-note .sign {
  margin-top: 22px; font-family: var(--serif-pf); font-style: italic; font-size: 22px; color: var(--ed-fg);
}
.founder-note .sign span { display: block; font-family: var(--sans); font-style: normal; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ed-mute); margin-top: 6px; }
@media (max-width: 680px) {
  .founder { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .founder-photo { width: 150px; height: 180px; }
}

/* ===========================================================
   N° 06 — FINAL CTA + FOOTER
   =========================================================== */
.final { text-align: center; padding: clamp(70px, 9vw, 120px) 0 0; }
.final .kicker { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ed-caramel); font-weight: 500; margin-bottom: 28px; }
.final h2 {
  font-family: var(--serif-pf); font-weight: 400; font-style: italic;
  font-size: clamp(40px, 6vw, 82px); line-height: 1.02; letter-spacing: -0.03em;
  color: var(--ed-fg); max-width: 16ch; margin: 0 auto 18px;
}
.final h2 .grad-text { font-style: italic; }
.final .recap {
  font-family: var(--serif-cg); font-style: italic; font-size: clamp(18px, 2vw, 22px);
  color: var(--ed-soft); max-width: 52ch; margin: 0 auto 40px;
}
.final .recap .rose { color: var(--ed-rose); }
.final .signup { margin: 0 auto; }
.final .founding { justify-content: center; text-align: left; max-width: 480px; margin-left: auto; margin-right: auto; }

.footer { margin-top: clamp(76px, 10vw, 132px); border-top: 0.5px solid var(--ed-rule-strong); padding: 40px 0 38px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .ed-logo { font-size: 20px; }
.footer .links { display: flex; gap: 22px; }
.footer .links a { font-size: 11px; letter-spacing: 0.06em; color: var(--ed-mute); text-decoration: none; transition: color 0.2s; }
.footer .links a:hover { color: var(--ed-fg); }
.footer .copy { font-size: 12px; color: var(--ed-dim); letter-spacing: 0.02em; }
@media (max-width: 700px) {
  .footer-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---- scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   N° 04 — THE SOCIAL (feed + closet raid)
   =========================================================== */
.ea-social { padding: clamp(64px, 8vw, 110px) 0; position: relative; }
.ea-social-head { text-align: center; max-width: 860px; margin: 0 auto 48px; }
.ea-social-head .eyebrow,
.ea-daily-head .eyebrow {
  display: inline-block; font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ed-caramel); font-weight: 500; margin-bottom: 20px;
}
.ea-social-head h2,
.ea-daily-head h2 {
  font-family: var(--serif-pf); font-weight: 700;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04;
  letter-spacing: -0.025em; color: var(--ed-fg); margin-bottom: 20px; text-wrap: balance;
}
.ea-social-head h2 .em,
.ea-daily-head h2 .em {
  font-family: var(--serif-cg); font-style: italic; font-weight: 400; color: var(--ed-rose);
}
.ea-social-head .sub,
.ea-daily-head .sub {
  font-family: var(--serif-cg); font-style: italic;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.45; color: var(--ed-soft);
  max-width: 620px; margin: 0 auto;
}

/* stats strip */
.ea-stats {
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(28px, 5vw, 64px); flex-wrap: wrap;
  max-width: 880px; margin: 0 auto 64px; padding: 30px 0;
  border-top: 0.5px solid var(--ed-rule-strong); border-bottom: 0.5px solid var(--ed-rule-strong);
}
.ea-stats .stat { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; max-width: 200px; }
.ea-stats .num { font-family: var(--serif-pf); font-style: italic; font-weight: 500; font-size: clamp(34px, 4vw, 48px); color: var(--ed-rose); line-height: 1; }
.ea-stats .lbl { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ed-mute); line-height: 1.5; }

/* two-column demo grid with hairline divider */
.ea-demos {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px);
  position: relative; margin-bottom: 72px;
}
.ea-demos::before {
  content: ''; position: absolute; top: 8px; bottom: 8px; left: 50%;
  width: 1px; background: var(--ed-rule-strong); transform: translateX(-0.5px);
}
.demo-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.demo-meta .no { font-family: var(--serif-cg); font-style: italic; font-size: 15px; color: var(--ed-mute); }
.demo-meta .lbl { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ed-caramel); font-weight: 500; }
.demo-meta .line { flex: 1; height: 1px; background: var(--ed-rule); }
.ea-demo > h3 {
  font-family: var(--serif-pf); font-weight: 700; font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.08; letter-spacing: -0.02em; color: var(--ed-fg); margin-bottom: 12px;
}
.ea-demo > h3 .em { font-family: var(--serif-cg); font-style: italic; font-weight: 400; color: var(--ed-rose); font-size: 1.06em; }
.ea-demo > .desc { font-size: 14px; line-height: 1.65; color: var(--ed-mute); margin-bottom: 22px; max-width: 42ch; }
.ea-demo > .desc .try { color: var(--ed-caramel); font-family: var(--serif-cg); font-style: italic; font-size: 15px; }

/* feed post card */
.ea-card {
  background: var(--ed-card); border: 0.5px solid var(--ed-rule-strong);
  border-radius: 5px; padding: 20px; box-shadow: 0 24px 50px -28px rgba(0,0,0,0.7);
}
.ea-avatar {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-pf); font-weight: 600; font-size: 15px; color: #1a1410;
  background: linear-gradient(135deg, #E8B4C0, #C9885F); box-shadow: 0 0 0 0.5px rgba(201,136,95,0.4);
}
.ea-avatar.sm { width: 26px; height: 26px; font-size: 11px; }
.ea-post-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ea-post-head .who { flex: 1; min-width: 0; }
.ea-post-head .name { font-family: var(--serif-pf); font-weight: 500; font-size: 15px; color: var(--ed-fg); }
.ea-post-head .handle { font-size: 10.5px; letter-spacing: 0.04em; color: var(--ed-mute); }
.ea-post-head .badge {
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ed-rose);
  border: 0.5px solid rgba(232,180,192,0.4); border-radius: 999px; padding: 5px 10px; font-weight: 500; white-space: nowrap;
}
.ea-post .q {
  font-family: var(--serif-cg); font-style: italic; font-size: 18px; line-height: 1.4;
  color: var(--ed-fg); margin-bottom: 14px;
}
.ea-post .q .pink { color: var(--ed-rose); font-style: normal; font-family: var(--serif-pf); font-weight: 500; }
.ea-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.ea-pills .pill {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ed-soft);
  border: 0.5px solid var(--ed-rule-strong); border-radius: 999px; padding: 5px 11px;
}
.ea-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 12px; }
.ea-thumbs .thumb { aspect-ratio: 1; border-radius: 3px; border: 0.5px solid var(--ed-rule); background-size: cover; background-position: center; }
.ea-thumbs .thumb.t1 { background-image: url('req-closet-1.png'); }
.ea-thumbs .thumb.t2 { background-image: url('raid-skirt.png'); }
.ea-thumbs .thumb.t3 { background-image: url('raid-bag.png'); }
.ea-thumbs .thumb.t4 { background-image: url('raid-flats.png'); }
.ea-post .open-meta { font-size: 10.5px; color: var(--ed-mute); margin-bottom: 14px; }
.ea-post .open-meta .open { color: var(--ed-caramel); }
.ea-post-actions {
  display: flex; align-items: center; gap: 18px; padding: 12px 0;
  border-top: 0.5px solid var(--ed-rule); font-size: 11px; letter-spacing: 0.06em; color: var(--ed-mute);
}
.ea-post-actions .heart { color: var(--ed-rose); }
.ea-post-actions .right { margin-left: auto; }
.ea-replies { display: flex; flex-direction: column; gap: 12px; padding-top: 6px; }
.ea-replies-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ed-caramel); margin-bottom: 2px; }
.ea-reply { display: flex; gap: 10px; opacity: 0; animation: eaReplyIn 0.6s var(--ease) forwards; }
.ea-reply.r1 { animation-delay: 0.2s; }
.ea-reply.r2 { animation-delay: 0.55s; }
@keyframes eaReplyIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .ea-reply { opacity: 1; animation: none; } }
.ea-reply .body { flex: 1; min-width: 0; }
.ea-reply .head { font-size: 11px; color: var(--ed-soft); margin-bottom: 7px; }
.ea-reply .head .pink { color: var(--ed-rose); }
.ea-outfit {
  border: 0.5px solid var(--ed-rule-strong); border-radius: 4px; padding: 10px;
  background: rgba(20,16,12,0.5);
}
.ea-outfit .thumbs { display: flex; gap: 5px; margin-bottom: 9px; }
.ea-outfit .thumbs .t { width: 38px; height: 46px; border-radius: 2px; border: 0.5px solid var(--ed-rule); background-size: cover; background-position: center; }
.ea-outfit[data-style="jess"] .t:nth-child(1) { background-image: url('raid-tee.png'); }
.ea-outfit[data-style="jess"] .t:nth-child(2) { background-image: url('raid-jeans.png'); }
.ea-outfit[data-style="jess"] .t:nth-child(3) { background-image: url('raid-flats.png'); }
.ea-outfit[data-style="sienna"] .t:nth-child(1) { background-image: url('raid-blazer.png'); }
.ea-outfit[data-style="sienna"] .t:nth-child(2) { background-image: url('raid-knit.png'); }
.ea-outfit[data-style="sienna"] .t:nth-child(3) { background-image: url('raid-bag.png'); }
.ea-outfit .oname { font-family: var(--serif-pf); font-weight: 500; font-size: 14px; color: var(--ed-fg); margin-bottom: 4px; }
.ea-outfit .odesc { font-size: 11px; color: var(--ed-mute); line-height: 1.5; }
.ea-replay {
  align-self: flex-start; margin-top: 4px; background: transparent;
  border: 0.5px solid var(--ed-rule-strong); border-radius: 999px; padding: 7px 14px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ed-caramel); cursor: pointer; transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.ea-replay:hover { border-color: var(--ed-caramel); color: var(--ed-fg); }

/* raid card (interactive) */
.ea-raid .raid-prompt { border-left: 1.5px solid var(--ed-rose); padding: 4px 0 4px 14px; margin-bottom: 18px; }
.ea-raid .raid-prompt .label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ed-mute); margin-bottom: 7px; }
.ea-raid .raid-prompt .q { font-family: var(--serif-cg); font-style: italic; font-size: 17px; color: var(--ed-fg); line-height: 1.4; }
.ea-raid .labelrow { display: flex; justify-content: space-between; align-items: center; font-size: 10px; letter-spacing: 0.12em; margin-bottom: 12px; }
.ea-raid .labelrow .left { color: var(--ed-mute); }
.ea-raid .labelrow .right { color: var(--ed-caramel); }
.ea-raid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 16px; }
.ea-tile {
  aspect-ratio: 1; border-radius: 3px; border: 0.5px solid var(--ed-rule); position: relative;
  background-size: cover; background-position: center; background-color: #1a1410; cursor: pointer; padding: 0;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ea-tile:hover { transform: scale(1.04); border-color: rgba(201,136,95,0.7); box-shadow: 0 6px 14px -4px rgba(201,136,95,0.25); }
.ea-tile.sel { border-color: var(--ed-rose); box-shadow: 0 0 0 1px var(--ed-rose), 0 6px 18px -4px rgba(232,180,192,0.3); }
.ea-tile .check {
  position: absolute; top: 4px; right: 4px; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 11px; color: #1a1410;
  background: var(--ed-rose); opacity: 0; transform: scale(0.5); transition: opacity 0.2s, transform 0.2s; box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.ea-tile.sel .check { opacity: 1; transform: scale(1); }
.ea-tile[data-c="knit"]   { background-image: url('raid-knit.png'); }
.ea-tile[data-c="skirt"]  { background-image: url('raid-skirt.png'); }
.ea-tile[data-c="blazer"] { background-image: url('raid-blazer.png'); }
.ea-tile[data-c="tee"]    { background-image: url('raid-tee.png'); }
.ea-tile[data-c="bag"]    { background-image: url('raid-bag.png'); }
.ea-tile[data-c="jeans"]  { background-image: url('raid-jeans.png'); }
.ea-tile[data-c="flats"]  { background-image: url('raid-flats.png'); }
.ea-tile[data-c="scarf"]  { background-image: url('raid-scarf.png'); }
.ea-raid-summary {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 0.5px dashed var(--ed-rule-strong); border-radius: 4px; min-height: 60px;
}
.ea-raid-summary .text { flex: 1; font-family: var(--serif-cg); font-style: italic; font-size: 14.5px; color: var(--ed-soft); line-height: 1.4; }
.ea-raid-summary .text .pink { color: var(--ed-rose); }
.ea-raid-summary .text .for { font-family: var(--sans); font-style: normal; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ed-caramel); }
.ea-raid-post {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; line-height: 1.1;
  background: var(--ed-rule); color: var(--ed-dim); border: none; border-radius: 3px; padding: 10px 16px;
  font-family: var(--serif-pf); cursor: not-allowed; transition: all 0.25s var(--ease);
}
.ea-raid-post .post { font-style: italic; font-weight: 500; font-size: 15px; }
.ea-raid-post .rest { font-family: var(--sans); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; }
.ea-raid-post.enabled { background: var(--ed-caramel); color: var(--ed-bg); cursor: pointer; }
.ea-raid-post.enabled:hover { background: #d99971; transform: translateY(-1px); }
.ea-raid-post.posted { background: var(--ed-rose); color: var(--ed-bg); }

/* mini feed cards */
.ea-feed-head { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.ea-feed-head .ln { flex: 1; height: 1px; background: var(--ed-rule-strong); }
.ea-feed-head .lbl { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ed-caramel); font-weight: 500; }
.ea-feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ea-feed-card {
  position: relative; background: linear-gradient(160deg, rgba(201,136,95,0.07), rgba(201,136,95,0.02));
  border: 0.5px solid rgba(201,136,95,0.22); border-radius: 3px; padding: 40px 24px 22px;
}
.ea-feed-card .mark { position: absolute; top: 8px; left: 20px; font-family: var(--serif-pf); font-style: italic; font-size: 54px; line-height: 1; color: var(--ed-caramel); opacity: 0.6; }
.ea-feed-card .q { font-family: var(--serif-cg); font-style: italic; font-size: 16px; line-height: 1.45; color: var(--ed-fg); margin-bottom: 22px; }
.ea-feed-card .q .pink { color: var(--ed-rose); }
.ea-feed-card .attr { display: flex; align-items: center; gap: 11px; padding-top: 14px; border-top: 0.5px solid rgba(201,136,95,0.18); }
.ea-feed-card .attr .handle { font-size: 12px; font-weight: 500; color: var(--ed-fg); }
.ea-feed-card .attr .meta { font-size: 9px; letter-spacing: 0.1em; color: var(--ed-mute); margin-top: 2px; }
.ea-feed-card .attr .meta .followers { color: var(--ed-caramel); }
@media (max-width: 880px) {
  .ea-demos { grid-template-columns: 1fr; gap: 48px; }
  .ea-demos::before { display: none; }
  .ea-feed-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ===========================================================
   N° 05 — DAILY READING (the styling horoscope)
   =========================================================== */
.ea-daily { padding: clamp(64px, 8vw, 110px) 0; }
.ea-daily-head { text-align: center; max-width: 820px; margin: 0 auto 40px; }

/* sign tabs */
.ea-signs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 760px; margin: 0 auto 56px; }
.ea-sign {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px;
  background: transparent; border: 0.5px solid var(--ed-rule-strong); border-radius: 999px;
  color: var(--ed-mute); cursor: pointer; transition: all 0.25s var(--ease);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em;
}
.ea-sign:hover { border-color: var(--ed-caramel); color: var(--ed-fg); }
.ea-sign.active { background: var(--ed-caramel); border-color: var(--ed-caramel); color: var(--ed-bg); }
.ea-sign .glyph { width: 15px; height: 15px; display: flex; }
.ea-sign .glyph svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.ea-daily-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

/* phone reading card */
.ea-dr-phone { display: flex; justify-content: center; }
.ea-dr-screen {
  width: 100%; max-width: 340px; border-radius: 30px; padding: 30px 26px 34px;
  background: linear-gradient(165deg, #1c1510, #120d0a);
  border: 0.5px solid var(--ed-rule-strong);
  box-shadow: 0 50px 90px -30px rgba(0,0,0,0.85), inset 0 0 0 6px rgba(0,0,0,0.3);
  position: relative;
}
.ea-dr-screen .back { position: absolute; top: 26px; left: 24px; color: var(--ed-mute); font-size: 20px; }
.ea-dr-screen .title { text-align: center; font-family: var(--serif-pf); font-weight: 600; font-size: 17px; color: var(--ed-fg); }
.ea-dr-screen .subt { text-align: center; font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ed-caramel); margin-top: 5px; margin-bottom: 22px; }
.ea-dr-for { display: flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--serif-cg); font-style: italic; font-size: 16px; color: var(--ed-soft); margin-bottom: 7px; transition: opacity 0.18s ease; }
.ea-dr-for .glyph { width: 17px; height: 17px; display: inline-flex; color: var(--ed-rose); }
.ea-dr-for .glyph svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ea-dr-for .name { color: var(--ed-rose); font-style: normal; font-family: var(--serif-pf); font-weight: 500; transition: opacity 0.18s ease; }
.ea-dr-date { text-align: center; margin-bottom: 20px; }
.ea-dr-date .row1 { font-size: 11px; letter-spacing: 0.14em; color: var(--ed-fg); }
.ea-dr-date .row2 { font-family: var(--serif-cg); font-style: italic; font-size: 13px; color: var(--ed-mute); margin-top: 3px; }
.ea-dr-card {
  border: 0.5px solid var(--ed-rule); border-radius: 8px; padding: 18px 18px 16px; margin-bottom: 16px;
  background: radial-gradient(ellipse at top, rgba(201,136,95,0.08), transparent 70%);
}
.ea-dr-card .clabel { text-align: center; font-size: 8.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ed-caramel); margin-bottom: 12px; }
.ea-dr-card .prose { font-family: var(--serif-cg); font-style: italic; font-size: 16px; line-height: 1.5; color: var(--ed-fg); text-align: center; transition: opacity 0.18s ease; }
.ea-dr-card .sig { text-align: center; font-family: var(--serif-cg); font-style: italic; font-size: 12px; color: var(--ed-caramel); margin-top: 12px; }
.ea-dr-glance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.ea-dr-cell { border: 0.5px solid var(--ed-rule); border-radius: 5px; padding: 11px 8px; text-align: center; }
.ea-dr-cell .top { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ed-mute); margin-bottom: 7px; }
.ea-dr-cell .top .sym { color: var(--ed-caramel); }
.ea-dr-cell .top .swatch { width: 9px; height: 9px; border-radius: 50%; background: var(--swatch, #8B3A3A); box-shadow: 0 0 0 0.5px rgba(255,255,255,0.2); transition: background 0.3s ease; }
.ea-dr-cell .val { font-family: var(--serif-pf); font-weight: 500; font-size: 11.5px; color: var(--ed-fg); line-height: 1.3; transition: opacity 0.18s ease; }
.ea-dr-challenge { border-top: 0.5px solid var(--ed-rule); padding-top: 14px; text-align: center; }
.ea-dr-challenge .pre { font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ed-rose); margin-bottom: 7px; }
.ea-dr-challenge .text { font-family: var(--serif-cg); font-style: italic; font-size: 14px; line-height: 1.45; color: var(--ed-soft); transition: opacity 0.18s ease; }

/* explanation column */
.ea-dr-info h3 {
  font-family: var(--serif-pf); font-weight: 700; font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.06; letter-spacing: -0.02em; color: var(--ed-fg); margin-bottom: 16px; text-wrap: balance;
}
.ea-dr-info h3 .em { font-family: var(--serif-cg); font-style: italic; font-weight: 400; color: var(--ed-rose); font-size: 1.05em; }
.ea-dr-info .lede {
  font-family: var(--serif-cg); font-style: italic; font-size: 19px; line-height: 1.45; color: var(--ed-fg);
  padding-left: 18px; border-left: 1px solid var(--ed-rule-strong); margin-bottom: 28px; max-width: 46ch;
}
.ea-dr-anatomy { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.ea-dr-row { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; }
.ea-dr-row .num { font-family: var(--serif-cg); font-style: italic; font-size: 26px; color: var(--ed-caramel); line-height: 1; }
.ea-dr-row .reb { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ed-caramel); margin-bottom: 6px; }
.ea-dr-row h4 { font-family: var(--serif-pf); font-weight: 500; font-size: 19px; color: var(--ed-fg); margin-bottom: 7px; letter-spacing: -0.01em; }
.ea-dr-row h4 .em { font-family: var(--serif-cg); font-style: italic; font-weight: 400; color: var(--ed-rose); }
.ea-dr-row p { font-size: 13.5px; line-height: 1.62; color: var(--ed-mute); }
.ea-dr-row p .bold { color: var(--ed-soft); font-weight: 500; }
.ea-dr-callout { display: flex; align-items: flex-start; gap: 12px; padding: 18px 20px; border: 0.5px solid rgba(232,180,192,0.28); background: rgba(232,180,192,0.05); border-radius: 5px; }
.ea-dr-callout .ic { color: var(--ed-caramel); font-size: 15px; margin-top: 1px; }
.ea-dr-callout p { font-size: 13px; line-height: 1.6; color: var(--ed-soft); }
.ea-dr-callout p .bold { color: var(--ed-fg); font-weight: 600; }

.ea-dr-pull { max-width: 780px; margin: 56px auto 0; text-align: center; padding-top: 40px; border-top: 0.5px solid var(--ed-rule-strong); }
.ea-dr-pull .q { font-family: var(--serif-pf); font-style: italic; font-weight: 400; font-size: clamp(22px, 2.8vw, 32px); line-height: 1.32; color: var(--ed-fg); text-wrap: balance; }
.ea-dr-pull .q .bold { color: var(--ed-rose); }
.ea-dr-pull .attr { margin-top: 18px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ed-caramel); }

@media (max-width: 880px) {
  .ea-daily-grid { grid-template-columns: 1fr; gap: 44px; }
  .ea-dr-phone { order: -1; }
}

/* ===========================================================
   INLINE CTA RAILS — strategic mid-page conversion prompts
   =========================================================== */
.cta-rail { margin: clamp(56px, 7vw, 92px) 0; }
.cta-rail-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(24px, 4vw, 48px); padding: 30px 0; flex-wrap: wrap;
  border-top: 0.5px solid var(--ed-rule-strong);
  border-bottom: 0.5px solid var(--ed-rule-strong);
}
.cta-rail .hook {
  font-family: var(--serif-pf); font-style: italic; font-weight: 400;
  font-size: clamp(21px, 2.5vw, 31px); line-height: 1.26; color: var(--ed-fg);
  letter-spacing: -0.01em; max-width: 24ch; text-wrap: balance; margin: 0;
}
.cta-rail .hook .em { color: var(--ed-rose); font-style: italic; }
.cta-rail .act { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; flex-shrink: 0; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ed-caramel); color: var(--ed-bg);
  padding: 15px 26px; border-radius: 2px;
  font-family: var(--serif-pf); font-style: italic; font-weight: 500; font-size: 17px;
  text-decoration: none; white-space: nowrap; border: none; cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cta-btn .arw { transition: transform 0.25s var(--ease); font-style: normal; }
.cta-btn:hover { background: #d99971; transform: translateY(-1px); box-shadow: 0 16px 38px -18px rgba(201,136,95,0.6); }
.cta-btn:hover .arw { transform: translateX(3px); }
.cta-rail .reassure { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ed-mute); }
.cta-rail .reassure .hl { color: var(--ed-caramel); }

/* banner variant — stronger, boxed, centered */
.cta-rail.banner .cta-rail-inner {
  flex-direction: column; align-items: center; text-align: center; gap: 16px;
  border: 0.5px solid var(--ed-rule-strong); border-radius: 6px;
  background: var(--ed-card); padding: clamp(38px, 5vw, 60px);
  box-shadow: 0 40px 90px -42px rgba(0,0,0,0.8);
  position: relative; overflow: hidden;
}
.cta-rail.banner .cta-rail-inner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(201,136,95,0.10), transparent 60%);
}
.cta-rail.banner .eyebrow {
  position: relative; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ed-caramel); font-weight: 500;
}
.cta-rail.banner .hook { position: relative; max-width: 20ch; font-size: clamp(26px, 3.6vw, 42px); line-height: 1.12; }
.cta-rail.banner .act { position: relative; align-items: center; margin-top: 4px; }
.cta-rail.banner .cta-btn { font-size: 18px; padding: 16px 30px; }
@media (max-width: 680px) {
  .cta-rail-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .cta-rail.banner .cta-rail-inner { align-items: center; }
}
