/* ============================================================
   Organize AI — Landing page
   Design tokens herdados do redesign do app (ver
   /Redesign do Organize AI/design_handoff_organize_ai/README.md)
   ============================================================ */

:root{
  --bg:#171A21;
  --bg2:#12151B;
  --panel:#1E222B;
  --panel2:#232833;
  --grad2:#1C2028;
  --elev:#2A303A;

  --text:#E9EBF0;
  --text2:#C6CBD5;
  --text3:#8A9099;
  --text4:#6C7482;
  --text5:#575E6B;

  --gold:#E4C58C;
  --gold-strong:#F0DBB0;
  --jade:#57C79B;
  --terra:#E0705C;
  --blue:#6E8BC7;
  --violet:#9A8CD4;
  --teal:#4FA8A8;

  --bd04:rgba(255,255,255,0.04);
  --bd05:rgba(255,255,255,0.05);
  --bd06:rgba(255,255,255,0.06);
  --bd07:rgba(255,255,255,0.07);
  --bd08:rgba(255,255,255,0.08);
  --bd10:rgba(255,255,255,0.10);
  --bd12:rgba(255,255,255,0.12);
  --bd14:rgba(255,255,255,0.14);

  --gold-grad:linear-gradient(140deg,#F0DBB0,#D3AF6C);
  --gold-mark:linear-gradient(150deg,#F0DBB0,#C9A05C);

  --shadow-card:0 1px 3px rgba(0,0,0,0.35), 0 10px 30px rgba(0,0,0,0.30);
  --shadow-cta:0 4px 14px rgba(201,160,92,0.24);

  --ease-bounce:cubic-bezier(0.34,1.3,0.64,1);
  color-scheme: dark;
}

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

html{ scroll-behavior:smooth; }

body{
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(228,197,140,0.06), transparent 60%),
    radial-gradient(900px 500px at 8% 20%, rgba(154,140,212,0.045), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family:'Instrument Sans', system-ui, sans-serif;
  -webkit-font-smoothing:antialiased;
  font-size:15px;
  line-height:1.5;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font:inherit; }
ul{ list-style:none; }

.mono{ font-family:'IBM Plex Mono', monospace; }
.serif{ font-family:'Instrument Serif', serif; font-style:italic; }

.wrap{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding-inline:clamp(18px, 4vw, 40px);
}

.section{ padding:clamp(64px, 9vw, 116px) 0; position:relative; }
.section-head{
  max-width:640px;
  margin-bottom:clamp(36px, 5vw, 56px);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--gold);
  background:rgba(228,197,140,0.10);
  border:1px solid rgba(228,197,140,0.22);
  padding:6px 12px 6px 10px;
  border-radius:999px;
  margin-bottom:18px;
}
.eyebrow svg{ width:13px; height:13px; }
.section-head h2{
  font-size:clamp(26px, 3.4vw, 38px);
  font-weight:600;
  letter-spacing:-0.7px;
  line-height:1.15;
}
.section-head h2 em{ color:var(--gold); font-style:italic; font-family:'Instrument Serif', serif; }
.section-head p{
  margin-top:14px;
  font-size:15.5px;
  color:var(--text3);
  line-height:1.6;
}

/* ── reveal-on-scroll (mesma assinatura do app: rise) ── */
.reveal{ opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s var(--ease-bounce); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ── botões ── */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13.5px;
  font-weight:600;
  padding:11px 20px;
  border-radius:10px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s var(--ease-bounce), box-shadow .18s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn svg{ width:15px; height:15px; }
.btn:active{ transform:translateY(1px) scale(0.98); }

.btn-primary{
  background:var(--gold-grad);
  color:#15181E;
  box-shadow:var(--shadow-cta);
}
.btn-primary:hover{ transform:translateY(-1px); box-shadow:0 8px 22px rgba(201,160,92,0.32); }

.btn-outline{
  background:transparent;
  color:var(--text2);
  border-color:var(--bd12);
}
.btn-outline:hover{ border-color:var(--bd14); color:var(--text); background:var(--bd05); }

.btn-lg{ padding:13px 26px; font-size:14.5px; border-radius:11px; }
.btn-block{ width:100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px clamp(18px, 4vw, 40px);
  background:rgba(23,26,33,0.72);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--bd06);
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  width:30px; height:30px; border-radius:9px;
  background:var(--gold-mark);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.brand-mark svg{ width:16px; height:16px; stroke:#15181E; }
.brand-name{ font-size:16px; font-weight:600; letter-spacing:-0.2px; }
.brand-name em{ font-style:italic; font-family:'Instrument Serif', serif; color:var(--gold); font-size:1.06em; }

.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{
  font-size:13.5px; font-weight:500; color:var(--text3);
  transition:color .15s ease;
}
.nav-links a:hover{ color:var(--text); }
.nav-actions{ display:flex; align-items:center; gap:10px; }
.nav-burger{ display:none; }

@media (max-width: 780px){
  .nav-links{ display:none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  padding:clamp(56px, 9vw, 108px) 0 clamp(40px, 6vw, 70px);
  text-align:center;
}
.hero-inner{ max-width:800px; margin:0 auto; }
.hero h1{
  font-size:clamp(34px, 6vw, 60px);
  font-weight:600;
  letter-spacing:-1.6px;
  line-height:1.08;
}
.hero h1 .accent{
  font-family:'Instrument Serif', serif;
  font-style:italic;
  font-weight:400;
  color:var(--gold);
  letter-spacing:-1px;
}
.hero p.lead{
  margin:22px auto 0;
  max-width:560px;
  font-size:16.5px;
  color:var(--text3);
  line-height:1.65;
}
.hero-cta{
  margin-top:34px;
  display:flex; align-items:center; justify-content:center;
  gap:14px; flex-wrap:wrap;
}
.hero-note{
  margin-top:16px;
  font-size:12px;
  color:var(--text4);
}

/* ============================================================
   MOCKUP (recorta a tela Resumo real do app)
   ============================================================ */
.mockup-stage{ padding:0 0 20px; }
.browser{
  max-width:1040px; margin:0 auto;
  background:var(--panel);
  border:1px solid var(--bd08);
  border-radius:16px;
  box-shadow:0 40px 100px rgba(0,0,0,0.45), 0 2px 0 rgba(255,255,255,0.03) inset;
  overflow:hidden;
}
.browser-bar{
  display:flex; align-items:center; gap:16px;
  padding:12px 16px;
  background:var(--bg2);
  border-bottom:1px solid var(--bd06);
}
.b-dots{ display:flex; gap:6px; flex-shrink:0; }
.b-dot{ width:10px; height:10px; border-radius:50%; background:var(--elev); }
.b-addr{
  flex:1;
  background:var(--panel2);
  border:1px solid var(--bd06);
  border-radius:999px;
  padding:6px 14px;
  font-size:11.5px;
  color:var(--text4);
  text-align:center;
}

.app-shell{ display:flex; min-height:480px; }
.app-sidebar{
  width:190px; flex-shrink:0;
  background:var(--bg2);
  border-right:1px solid var(--bd06);
  padding:20px 12px;
  display:none;
}
@media (min-width: 620px){
  .app-sidebar{ display:flex; flex-direction:column; }
}
.app-s-brand{ display:flex; align-items:center; gap:8px; padding:0 6px 18px; }
.app-s-brand .brand-mark{ width:24px; height:24px; border-radius:7px; }
.app-s-brand .brand-mark svg{ width:13px; height:13px; }
.app-s-brand span{ font-size:12.5px; font-weight:600; }
.app-nav-item{
  display:flex; align-items:center; gap:9px;
  padding:8px 10px; border-radius:8px;
  font-size:12.5px; font-weight:500; color:var(--text4);
  margin-bottom:2px;
}
.app-nav-item svg{ width:15px; height:15px; stroke-width:1.7; }
.app-nav-item.active{ background:rgba(228,197,140,0.10); color:var(--gold); }

.app-main{ flex:1; padding:22px clamp(16px, 2.6vw, 30px) 26px; min-width:0; }
.app-p-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  flex-wrap:wrap; gap:10px; margin-bottom:18px;
}
.app-p-head h3{ font-size:19px; font-weight:600; letter-spacing:-0.4px; }
.app-p-head .sub{ font-size:11.5px; color:var(--text4); margin-top:2px; }

.hero-row{ display:grid; grid-template-columns:1.55fr 1fr; gap:14px; margin-bottom:14px; }
@media (max-width: 640px){ .hero-row{ grid-template-columns:1fr; } }

.card-hero{
  background:linear-gradient(155deg, var(--panel2), var(--grad2));
  border:1px solid var(--bd07);
  border-radius:16px;
  padding:20px 22px;
  position:relative;
  overflow:hidden;
}
.card-hero::before{
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,#F0DBB0, rgba(201,160,92,0));
}
.card-hero .label{ font-size:10px; font-weight:600; letter-spacing:1px; color:var(--text3); text-transform:uppercase; }
.card-hero .value{
  font-family:'Instrument Serif', serif; font-weight:400;
  font-size:clamp(30px, 3.6vw, 42px); letter-spacing:-1.2px; line-height:1;
  margin:10px 0 4px;
}
.card-hero .value .cents{ font-size:0.55em; color:var(--text3); }
.chip{
  display:inline-flex; align-items:center; gap:4px;
  font-size:11px; font-weight:600;
  padding:3px 9px; border-radius:999px;
  background:rgba(87,199,155,0.14); color:var(--jade);
}
.card-hero .ctx{ font-size:12px; color:var(--text4); margin-top:10px; }
.card-hero .stats{
  display:flex; gap:0; margin-top:16px; padding-top:14px;
  border-top:1px solid var(--bd06); flex-wrap:wrap;
}
.card-hero .stat{ flex:1; min-width:90px; }
.card-hero .stat .k{ font-size:10px; color:var(--text4); text-transform:uppercase; letter-spacing:.5px; }
.card-hero .stat .v{ font-family:'IBM Plex Mono', monospace; font-size:15px; margin-top:3px; }
.v-jade{ color:var(--jade); } .v-terra{ color:var(--terra); } .v-blue{ color:var(--blue); } .v-gold{ color:var(--gold); }

.card-donut{
  background:var(--panel); border:1px solid var(--bd07); border-radius:16px;
  padding:20px 22px; display:flex; flex-direction:column; align-items:center; text-align:center; justify-content:center; gap:10px;
}
.donut{
  width:88px; height:88px; border-radius:50%;
  background:conic-gradient(#C9A05C 0 21.3%, rgba(228,197,140,0.22) 21.3% 27%, var(--bd07) 27% 100%);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.donut span{
  width:64px; height:64px; border-radius:50%; background:var(--panel);
  display:flex; align-items:center; justify-content:center;
  font-family:'IBM Plex Mono', monospace; font-size:15px;
}
.card-donut .t{ font-size:11px; font-weight:600; color:var(--text3); text-transform:uppercase; letter-spacing:.5px; }
.card-donut .d{ font-size:11px; color:var(--text4); }

.metric-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:11px; margin-bottom:14px; }
@media (max-width: 640px){ .metric-grid{ grid-template-columns:repeat(2,1fr); } }
.metric{
  background:var(--panel); border:1px solid var(--bd07); border-radius:13px;
  padding:14px 15px 12px; position:relative; overflow:hidden;
}
.metric::before{ content:''; position:absolute; top:0; left:0; right:0; height:2px; }
.m-jade::before{ background:var(--jade); } .m-blue::before{ background:var(--blue); }
.m-terra::before{ background:var(--terra); } .m-violet::before{ background:var(--violet); }
.metric .lbl{ font-size:9.5px; font-weight:600; letter-spacing:.6px; text-transform:uppercase; color:var(--text3); }
.metric .val{ font-family:'IBM Plex Mono', monospace; font-size:19px; letter-spacing:-0.5px; margin-top:8px; }
.metric .sub{ font-size:10.5px; color:var(--text4); margin-top:3px; }

.panel-ai{
  background:linear-gradient(160deg, rgba(228,197,140,0.07), rgba(228,197,140,0) 55%), var(--panel);
  border:1px solid rgba(228,197,140,0.18);
  border-radius:14px; padding:16px 18px;
}
.panel-ai .ph{ display:flex; align-items:center; gap:7px; font-size:11px; font-weight:600; letter-spacing:.6px; text-transform:uppercase; color:var(--gold); }
.panel-ai .ph svg{ width:13px; height:13px; }
.panel-ai .pd{ font-size:11.5px; color:var(--text4); margin:5px 0 12px; }
.ai-item{ display:flex; gap:10px; align-items:flex-start; padding:9px 0; border-top:1px solid var(--bd05); }
.ai-item:first-of-type{ border-top:none; }
.ai-item .bar{ width:3px; align-self:stretch; border-radius:3px; flex-shrink:0; margin-top:2px; }
.ai-item .txt b{ display:block; font-size:12.5px; font-weight:600; }
.ai-item .txt span{ font-size:11.5px; color:var(--text4); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.feat-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap:16px;
}
.feat-card{
  background:var(--panel);
  border:1px solid var(--bd07);
  border-radius:16px;
  padding:24px 22px;
  transition:transform .22s var(--ease-bounce), border-color .2s ease, box-shadow .22s ease;
}
.feat-card:hover{ transform:translateY(-3px); border-color:var(--bd12); box-shadow:var(--shadow-card); }
.feat-icon{
  width:40px; height:40px; border-radius:11px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.feat-icon svg{ width:19px; height:19px; stroke-width:1.7; }
.fi-gold{ background:rgba(228,197,140,0.12); color:var(--gold); }
.fi-jade{ background:rgba(87,199,155,0.12); color:var(--jade); }
.fi-blue{ background:rgba(110,139,199,0.14); color:var(--blue); }
.fi-terra{ background:rgba(224,112,92,0.12); color:var(--terra); }
.fi-violet{ background:rgba(154,140,212,0.14); color:var(--violet); }
.fi-teal{ background:rgba(79,168,168,0.14); color:var(--teal); }
.feat-card h3{ font-size:15.5px; font-weight:600; letter-spacing:-0.2px; margin-bottom:8px; }
.feat-card p{ font-size:13px; color:var(--text3); line-height:1.6; }

/* ============================================================
   AI SPOTLIGHT (assistente)
   ============================================================ */
.spotlight{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
}
@media (max-width: 860px){ .spotlight{ grid-template-columns:1fr; gap:36px; } }
.app-screenshot{
  width:100%; height:auto; border-radius:14px;
  border:1px solid var(--bd08);
  box-shadow:0 30px 70px rgba(0,0,0,0.35);
}
.spotlight-copy ul{ margin-top:22px; display:flex; flex-direction:column; gap:14px; }
.spotlight-copy li{ display:flex; gap:12px; align-items:flex-start; font-size:14px; color:var(--text2); }
.spotlight-copy li svg{ width:17px; height:17px; color:var(--jade); flex-shrink:0; margin-top:2px; stroke-width:2; }

.chat-mock{
  background:var(--panel); border:1px solid var(--bd07); border-radius:16px;
  padding:18px; box-shadow:var(--shadow-card);
}
.chat-head{ display:flex; align-items:center; gap:10px; padding-bottom:14px; border-bottom:1px solid var(--bd06); margin-bottom:14px; }
.chat-head .brand-mark{ width:26px; height:26px; border-radius:8px; }
.chat-head .brand-mark svg{ width:14px; height:14px; }
.chat-head .who{ flex:1; }
.chat-head .who b{ font-size:13px; display:block; }
.chat-head .who span{ font-size:11px; color:var(--text4); }
.chat-online{ display:flex; align-items:center; gap:5px; font-size:10.5px; font-weight:600; color:var(--jade); background:rgba(87,199,155,0.12); padding:3px 9px; border-radius:999px; }
.chat-online i{ width:6px; height:6px; border-radius:50%; background:var(--jade); display:inline-block; }

.bubble{ max-width:82%; font-size:12.5px; line-height:1.55; padding:10px 13px; border-radius:14px; margin-bottom:10px; }
.bubble.me{ background:var(--elev); border-radius:14px 14px 4px 14px; margin-left:auto; color:var(--text2); }
.bubble.ai{ background:rgba(228,197,140,0.09); border:1px solid rgba(228,197,140,0.18); border-radius:14px 14px 14px 4px; }
.bubble.ai b{ color:var(--gold); }

/* ============================================================
   STEPS ("como funciona")
   ============================================================ */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; counter-reset:step; }
@media (max-width: 780px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-left:6px; }
.step .n{
  font-family:'Instrument Serif', serif; font-style:italic; font-size:34px; color:var(--gold);
  line-height:1; margin-bottom:12px; display:block;
}
.step h3{ font-size:15.5px; font-weight:600; margin-bottom:8px; }
.step p{ font-size:13px; color:var(--text3); line-height:1.6; }

/* ============================================================
   CTA final
   ============================================================ */
.cta-band{
  background:linear-gradient(155deg, var(--panel2), var(--grad2));
  border:1px solid var(--bd07);
  border-radius:22px;
  padding:clamp(40px, 6vw, 68px) clamp(24px, 6vw, 60px);
  text-align:center;
  position:relative; overflow:hidden;
}
.cta-band::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(600px 300px at 50% 0%, rgba(228,197,140,0.10), transparent 65%);
  pointer-events:none;
}
.cta-band h2{ font-size:clamp(24px,3.4vw,34px); font-weight:600; letter-spacing:-0.6px; position:relative; }
.cta-band h2 em{ font-family:'Instrument Serif', serif; font-style:italic; color:var(--gold); }
.cta-band p{ margin:14px auto 26px; max-width:480px; color:var(--text3); font-size:14.5px; position:relative; }
.cta-band .hero-cta{ position:relative; }

/* ============================================================
   PRICING (/planos)
   ============================================================ */
.page-hero{ text-align:center; padding:clamp(48px,7vw,84px) 0 clamp(24px,4vw,40px); }
.page-hero .hero-inner{ max-width:640px; margin:0 auto; }
.page-hero h1{ font-size:clamp(30px,4.6vw,46px); font-weight:600; letter-spacing:-1.2px; line-height:1.12; }
.page-hero h1 em{ font-family:'Instrument Serif', serif; font-style:italic; color:var(--gold); }
.page-hero p.lead{ margin:18px auto 0; max-width:520px; font-size:15.5px; color:var(--text3); line-height:1.6; }

/* toggle mensal / anual */
.period-toggle{
  display:inline-flex; align-items:center; gap:3px;
  background:var(--panel2); border:1px solid var(--bd06);
  border-radius:11px; padding:4px; margin:26px auto 0;
}
.period-toggle button{
  border:none; background:transparent; color:var(--text3);
  font-size:12.5px; font-weight:600; padding:8px 16px; border-radius:8px;
  cursor:pointer; transition:background .18s var(--ease-bounce), color .15s ease;
}
.period-toggle button.active{ background:var(--elev); color:var(--text); }
.period-toggle .save{
  font-size:9.5px; font-weight:700; color:var(--jade);
  background:rgba(87,199,155,0.14); padding:2px 6px; border-radius:999px; margin-left:6px;
}

.pricing-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
  max-width:820px; margin:44px auto 0;
}
@media (max-width: 700px){ .pricing-grid{ grid-template-columns:1fr; } }

.plan-card{
  background:var(--panel); border:1px solid var(--bd07); border-radius:18px;
  padding:28px 26px; position:relative; display:flex; flex-direction:column;
}
.plan-card.featured{
  background:linear-gradient(160deg, rgba(228,197,140,0.07), rgba(228,197,140,0) 60%), var(--panel);
  border-color:rgba(228,197,140,0.28);
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}
.plan-badge{
  position:absolute; top:-12px; left:26px;
  font-size:10px; font-weight:700; letter-spacing:.6px; text-transform:uppercase;
  background:var(--gold-grad); color:#15181E; padding:5px 12px; border-radius:999px;
}
.plan-name{ font-size:13px; font-weight:600; color:var(--text3); text-transform:uppercase; letter-spacing:.6px; }
.plan-price{ display:flex; align-items:baseline; gap:6px; margin:14px 0 4px; }
.plan-price .amount{ font-family:'Instrument Serif', serif; font-weight:400; font-size:44px; letter-spacing:-1.2px; }
.plan-price .cents{ font-size:0.5em; color:var(--text3); }
.plan-price .period{ font-size:13px; color:var(--text4); }
.plan-price-note{ font-size:11.5px; color:var(--text4); min-height:15px; margin-bottom:2px; }
.promo-note{
  font-size:12px; color:var(--gold); background:rgba(228,197,140,0.10);
  border:1px solid rgba(228,197,140,0.22); border-radius:9px;
  padding:8px 11px; margin:10px 0 18px; line-height:1.5;
}
.plan-desc{ font-size:12.5px; color:var(--text4); margin-bottom:20px; }
.plan-cta{ margin-bottom:22px; }
.plan-feats{ display:flex; flex-direction:column; gap:11px; margin-top:auto; }
.plan-feats li{ display:flex; gap:10px; align-items:flex-start; font-size:13px; color:var(--text2); }
.plan-feats li svg{ width:15px; height:15px; flex-shrink:0; margin-top:2px; stroke-width:2; }
.plan-feats li.on svg{ color:var(--jade); }
.plan-feats li.off{ color:var(--text4); }
.plan-feats li.off svg{ color:var(--text5); }

.plan-note{
  max-width:820px; margin:22px auto 0; text-align:center;
  font-size:12px; color:var(--text4); line-height:1.6;
}
.plan-note b{ color:var(--text3); }

/* tabela comparativa */
.compare-wrap{ overflow-x:auto; margin-top:20px; }
.compare{ width:100%; border-collapse:collapse; min-width:520px; }
.compare th, .compare td{ padding:13px 16px; text-align:left; border-bottom:1px solid var(--bd05); }
.compare thead th{
  font-size:10px; font-weight:600; letter-spacing:.6px; text-transform:uppercase; color:var(--text3);
  border-bottom:1px solid var(--bd07);
}
.compare thead th.center, .compare td.center{ text-align:center; }
.compare tbody td:first-child{ font-size:13.5px; color:var(--text2); }
.compare tbody tr:last-child td{ border-bottom:none; }
.compare svg.yes{ width:16px; height:16px; color:var(--jade); stroke-width:2.2; }
.compare svg.no{ width:14px; height:14px; color:var(--text5); stroke-width:2.2; }
.compare .soon{ font-size:10.5px; font-weight:600; color:var(--gold); background:rgba(228,197,140,0.12); padding:2px 8px; border-radius:999px; }

/* FAQ (accordion nativo) */
.faq{ max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:10px; }
.faq details{
  background:var(--panel); border:1px solid var(--bd07); border-radius:13px;
  padding:16px 18px; transition:border-color .15s ease;
}
.faq details[open]{ border-color:var(--bd12); }
.faq summary{
  cursor:pointer; list-style:none; font-size:14px; font-weight:600;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:'+'; font-family:'Instrument Serif', serif; font-size:22px; color:var(--gold);
  flex-shrink:0; transition:transform .2s var(--ease-bounce);
}
.faq details[open] summary::after{ transform:rotate(45deg); }
.faq .a{ font-size:13px; color:var(--text3); line-height:1.6; margin-top:12px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap:16px;
}
.blog-card{
  display:block;
  background:var(--panel); border:1px solid var(--bd07); border-radius:16px;
  padding:22px 22px 20px;
  transition:transform .22s var(--ease-bounce), border-color .2s ease, box-shadow .22s ease;
}
.blog-card:hover{ transform:translateY(-3px); border-color:var(--bd12); box-shadow:var(--shadow-card); }
.blog-card-top{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.blog-emoji{ font-size:20px; line-height:1; }
.blog-cat{
  font-size:10px; font-weight:600; letter-spacing:.6px; text-transform:uppercase;
  color:var(--gold); background:rgba(228,197,140,0.12); padding:3px 9px; border-radius:999px;
}
.blog-card h3{ font-size:16px; font-weight:600; letter-spacing:-0.2px; margin-bottom:8px; line-height:1.35; }
.blog-card p{ font-size:13px; color:var(--text3); line-height:1.6; margin-bottom:14px; }
.blog-read{
  display:inline-flex; align-items:center; gap:6px;
  font-size:12.5px; font-weight:600; color:var(--text2);
}
.blog-read svg{ width:14px; height:14px; transition:transform .18s ease; }
.blog-card:hover .blog-read svg{ transform:translateX(3px); }

.blog-article{ max-width:760px; }
.blog-back{ font-size:12.5px; color:var(--text4); display:inline-block; margin-bottom:18px; }
.blog-back:hover{ color:var(--text3); }
.blog-article-head h1{
  font-size:clamp(26px,4vw,38px); font-weight:600; letter-spacing:-0.8px; line-height:1.15; margin:14px 0 10px;
}
.blog-meta-line{ font-size:12.5px; color:var(--text4); font-family:'IBM Plex Mono', monospace; }
.blog-prose{ margin-top:32px; }
.blog-prose p{ font-size:15.5px; line-height:1.75; color:var(--text2); margin-bottom:20px; }
.blog-prose strong{ color:var(--text); font-weight:600; }

.blog-related{ margin-top:48px; }
.blog-related h3{ font-size:13px; font-weight:600; letter-spacing:.5px; text-transform:uppercase; color:var(--text3); margin-bottom:14px; }
.blog-related-grid{ display:flex; flex-direction:column; gap:2px; }
.blog-related-item{
  display:flex; align-items:center; gap:12px;
  padding:12px 14px; border-radius:10px; font-size:14px; color:var(--text2);
  transition:background .15s ease;
}
.blog-related-item:hover{ background:var(--bd05); color:var(--text); }
.blog-related-item .blog-emoji{ font-size:16px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer{ border-top:1px solid var(--bd06); padding:36px 0; margin-top:20px; }
.foot-inner{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.foot-links{ display:flex; gap:22px; }
.foot-links a{ font-size:12.5px; color:var(--text4); }
.foot-links a:hover{ color:var(--text3); }
.foot-meta{ font-size:11.5px; color:var(--text5); font-family:'IBM Plex Mono', monospace; }
