/* ============================================================
   Tawle — interactive "Restaurant OS" experience styles
   Layered on top of styles.css. No dependencies.
   ============================================================ */

:root {
  --os-bg:    #1b110c;
  --os-bg2:   #241711;
  --os-panel: #2c1d14;
  --os-line:  #44301f;
  --os-glow:  rgba(232,120,74,.55);
}

/* ---------- OS Hero ---------- */
.os-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% 0%, rgba(196,84,26,.22), transparent 60%),
    radial-gradient(700px 460px at 10% 12%, rgba(217,142,43,.14), transparent 55%),
    linear-gradient(180deg, var(--os-bg), var(--os-bg2));
  color: #cbd6ea; padding: 96px 0 80px;
}
.os-hero h1 { color: #fff; }
.os-hero .lead { color: #93a4c4; }
.os-hero .eyebrow { color: var(--teal-500); }
.os-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--os-line) 1px, transparent 1px), linear-gradient(90deg, var(--os-line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.os-hero .container { position: relative; z-index: 1; }
.os-hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; }

.os-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(196,84,26,.12); border: 1px solid rgba(196,84,26,.35);
  color: #F3B68E; font-weight: 600; font-size: .82rem;
  padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.os-badge .dot { width: 8px; height: 8px; border-radius: 99px; background: var(--teal-500); box-shadow: 0 0 0 0 var(--os-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 var(--os-glow);} 70%{box-shadow:0 0 0 9px rgba(196,84,26,0);} 100%{box-shadow:0 0 0 0 rgba(196,84,26,0);} }

.os-typewriter { color: var(--teal-500); border-right: 2px solid var(--teal-500); padding-right: 3px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { border-color: transparent; } }

/* OS "desktop" of module apps in hero */
.os-window {
  background: rgba(19,29,51,.78); border: 1px solid var(--os-line); border-radius: 20px;
  backdrop-filter: blur(8px); box-shadow: 0 30px 80px -30px rgba(0,0,0,.7);
  overflow: hidden;
}
.os-titlebar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--os-line); background: rgba(10,15,28,.6); }
.os-titlebar .dotrow { display: flex; gap: 6px; }
.os-titlebar .tb { width: 11px; height: 11px; border-radius: 99px; }
.os-titlebar .tb.r { background: #f87171; } .os-titlebar .tb.y { background: #fbbf24; } .os-titlebar .tb.g { background: #34d399; }
.os-titlebar .tb-title { color: #6b7da0; font-size: .8rem; font-weight: 600; margin-left: 6px; }
.os-titlebar .tb-live { margin-left: auto; color: #F3B68E; font-size: .72rem; display: flex; align-items: center; gap: 5px; }
.os-titlebar .tb-live i { width: 7px; height: 7px; border-radius: 99px; background: #34d399; display: inline-block; animation: pulse 2s infinite; }

.os-apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 18px; }
.os-app {
  background: rgba(255,255,255,.03); border: 1px solid var(--os-line); border-radius: 14px;
  padding: 14px 10px; text-align: center; cursor: default;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.os-app:hover { transform: translateY(-3px); border-color: var(--teal-500); background: rgba(196,84,26,.08); }
.os-app .ic { width: 38px; height: 38px; margin: 0 auto 8px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.os-app .ic svg { width: 20px; height: 20px; }
.os-app span { color: #aebbd6; font-size: .76rem; font-weight: 600; display: block; }
.bg-teal { background: linear-gradient(135deg,#E8784A,#A8410F); }
.bg-amber{ background: linear-gradient(135deg,#E0A458,#B5731C); }
.bg-blue { background: linear-gradient(135deg,#3BA4C9,#008BBA); }
.bg-rose { background: linear-gradient(135deg,#D9694B,#B23A2E); }
.bg-violet{background: linear-gradient(135deg,#9A6CA8,#6E4A7E); }
.bg-slate{ background: linear-gradient(135deg,#A89A88,#6E6258); }

.os-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 16px; }

/* ---------- Marquee replace bar ---------- */
.replace-bar { background: var(--ink); color: #cbd5e1; padding: 16px 0; overflow: hidden; }
.replace-track { display: flex; gap: 40px; white-space: nowrap; animation: marquee 26s linear infinite; width: max-content; }
.replace-track span { font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 10px; color: #94a3b8; }
.replace-track span b { color: #fff; }
.replace-track span .x { color: var(--teal-500); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Journey Simulator ---------- */
.sim { background: linear-gradient(180deg, var(--os-bg2), var(--os-bg)); color: #c7d3e8; padding: 90px 0; position: relative; overflow: hidden; }
.sim h2, .sim h3 { color: #fff; }
.sim .eyebrow { color: var(--teal-500); }
.sim-shell { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: stretch; }

.sim-stage {
  background: var(--os-panel); border: 1px solid var(--os-line); border-radius: 20px; padding: 26px;
  position: relative; min-height: 420px; display: flex; flex-direction: column;
}
.sim-actor-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #F3B68E; margin-bottom: 14px; }
.sim-actor-tag .av { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-size: .8rem; }
.sim-stage h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.sim-stage .desc { color: #9fb0cf; font-size: 1rem; margin-bottom: 18px; }
.sim-stage .module-chip { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: rgba(196,84,26,.1); border: 1px solid rgba(196,84,26,.3); color: #F3B68E; font-size: .8rem; font-weight: 600; padding: .4rem .8rem; border-radius: 999px; }
.sim-stage .stage-visual { background: rgba(10,15,28,.5); border: 1px solid var(--os-line); border-radius: 14px; padding: 14px; margin-bottom: 18px; font-size: .88rem; }
.sv-row { display: flex; justify-content: space-between; padding: 7px 2px; border-bottom: 1px dashed var(--os-line); color: #aebbd6; }
.sv-row:last-child { border-bottom: 0; }
.sv-row b { color: #fff; }
.sv-row .tick { color: #34d399; }
.sv-pill { display: inline-block; padding: 2px 10px; border-radius: 99px; font-size: .72rem; font-weight: 700; }
.sv-pill.new { background: rgba(96,165,250,.18); color: #93c5fd; }
.sv-pill.prep { background: rgba(251,191,36,.18); color: #fcd34d; }
.sv-pill.ready { background: rgba(52,211,153,.18); color: #6ee7b7; }
.sv-pill.paid { background: rgba(196,84,26,.18); color: #F3B68E; }

/* right side: pipeline + actor rail + controls */
.sim-right { display: flex; flex-direction: column; gap: 22px; }
.sim-pipeline { display: flex; flex-wrap: wrap; gap: 10px; }
.sim-node {
  flex: 1 1 0; min-width: 92px; background: var(--os-panel); border: 1px solid var(--os-line);
  border-radius: 12px; padding: 12px 10px; cursor: pointer; text-align: center; position: relative;
  transition: border-color .25s ease, background .25s ease, transform .2s ease; color: #8294b5;
}
.sim-node:hover { transform: translateY(-2px); border-color: #34557e; }
.sim-node .n-ic { width: 30px; height: 30px; margin: 0 auto 6px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,.05); color: #93a4c4; transition: .25s; }
.sim-node .n-ic svg { width: 17px; height: 17px; }
.sim-node small { font-size: .72rem; font-weight: 600; display: block; line-height: 1.2; }
.sim-node.active { border-color: var(--teal-500); background: rgba(196,84,26,.1); color: #fff; box-shadow: 0 0 0 1px var(--teal-500), 0 12px 30px -16px var(--os-glow); }
.sim-node.active .n-ic { background: var(--teal-600); color: #fff; }
.sim-node.done { color: #e7d8c8; border-color: #5a4030; }
.sim-node.done .n-ic { background: rgba(196,84,26,.2); color: #6ee7b7; }
.sim-node.done::after { content: "✓"; position: absolute; top: 6px; right: 8px; color: #34d399; font-size: .7rem; font-weight: 800; }

.sim-rail { background: var(--os-panel); border: 1px solid var(--os-line); border-radius: 16px; padding: 16px; }
.sim-rail h4 { color: #6b7da0; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 12px; }
.actor-row { display: flex; gap: 10px; flex-wrap: wrap; }
.actor {
  display: flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.03); border: 1px solid var(--os-line); color: #8294b5;
  font-size: .82rem; font-weight: 600; transition: .25s; opacity: .55;
}
.actor .av { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; color: #fff; font-size: .75rem; }
.actor.lit { opacity: 1; border-color: var(--teal-500); background: rgba(196,84,26,.1); color: #fff; transform: translateY(-1px); }

.sim-controls { display: flex; align-items: center; gap: 14px; background: var(--os-panel); border: 1px solid var(--os-line); border-radius: 14px; padding: 12px 16px; }
.sim-play { width: 44px; height: 44px; border-radius: 12px; border: 0; cursor: pointer; background: var(--teal-600); color: #fff; display: grid; place-items: center; flex: none; transition: background .2s, transform .15s; touch-action: manipulation; -webkit-tap-highlight-color: transparent; user-select: none; box-shadow: 0 4px 12px rgba(0,139,186,.3); }
.sim-play:hover { background: var(--teal-500); }
.sim-play:active { transform: scale(0.94); background: var(--teal-700); }
.sim-progress { flex: 1; height: 7px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; }
.sim-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg,#E8784A,#34d399); border-radius: 99px; transition: width .25s linear; }
.sim-step-label { font-size: .82rem; color: #8294b5; font-weight: 600; flex: none; min-width: 64px; text-align: right; }
.sim-controls .scrub { background: none; border: 0; color: #8294b5; cursor: pointer; padding: 6px; border-radius: 8px; }
.sim-controls .scrub:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ---------- Scroll-drawn SVG flow ---------- */
.flow-svg { width: 100%; height: auto; }
.flow-svg .edge { stroke: var(--teal-500); stroke-width: 2.5; fill: none; stroke-dasharray: var(--len, 600); stroke-dashoffset: var(--len, 600); transition: stroke-dashoffset 1.1s ease; }
.flow-svg .edge.alt { stroke: #D98E2B; }
.flow-svg .edge.danger { stroke: #FB4E4E; stroke-dasharray: 6 6; }
.flow-in .flow-svg .edge { stroke-dashoffset: 0; }
.flow-svg .node-box { fill: #fff; stroke: var(--line); stroke-width: 1.5; }
.flow-svg .node-box.start { fill: #ecfdf5; stroke: #34d399; }
.flow-svg .node-box.end { fill: #A8410F; stroke: #A8410F; }
.flow-svg .node-box.warn { fill: #fff1f2; stroke: #FB4E4E; }
.flow-svg text { font-family: var(--font); font-size: 13px; font-weight: 600; fill: var(--ink); }
.flow-svg text.end { fill: #fff; }
.flow-svg text.sub { font-size: 11px; font-weight: 500; fill: var(--muted); }
.flow-svg .arrow { fill: var(--teal-500); opacity: 0; transition: opacity .4s ease .9s; }
.flow-in .flow-svg .arrow { opacity: 1; }
.flow-svg .arrow.alt { fill: #D98E2B; }
.flow-svg .arrow.danger { fill: #FB4E4E; }
.flow-svg .pop { opacity: 0; transform: scale(.9); transform-origin: center; transition: opacity .5s ease, transform .5s ease; transform-box: fill-box; }
.flow-in .flow-svg .pop { opacity: 1; transform: scale(1); }
.flow-svg .pop.d1 { transition-delay: .15s; } .flow-svg .pop.d2 { transition-delay: .3s; }
.flow-svg .pop.d3 { transition-delay: .45s; } .flow-svg .pop.d4 { transition-delay: .6s; }
.flow-svg .pop.d5 { transition-delay: .75s; } .flow-svg .pop.d6 { transition-delay: .9s; }
.flow-svg .pop.d7 { transition-delay: 1.05s; }

.flow-legend { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 24px; font-size: .85rem; color: var(--muted); }
.flow-legend span { display: inline-flex; align-items: center; gap: 7px; }
.flow-legend i { width: 22px; height: 3px; border-radius: 2px; display: inline-block; }
.flow-legend i.main { background: var(--teal-500); } .flow-legend i.alt { background: #D98E2B; }
.flow-legend i.danger { background: #FB4E4E; }

/* ---------- Role switcher ---------- */
.roles-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.role-tab {
  display: inline-flex; align-items: center; gap: 9px; padding: .65rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); cursor: pointer; font-weight: 600; color: var(--ink-soft);
  transition: .2s; font-size: .94rem;
}
.role-tab .av { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-size: .78rem; }
.role-tab:hover { border-color: var(--teal-500); }
.role-tab.active { background: var(--teal-900); color: #fff; border-color: var(--teal-900); }
.role-panel { display: none; }
.role-panel.active { display: block; animation: fadeUp .45s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.role-card { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 38px; box-shadow: var(--shadow); }
.role-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.role-head .av { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; color: #fff; font-size: 1.2rem; flex: none; }
.role-head h3 { margin: 0; font-size: 1.5rem; }
.role-head .sub { color: var(--muted); font-size: .9rem; }
.role-tools { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.role-tools .t { background: var(--teal-50); color: var(--teal-700); border-radius: 8px; padding: 5px 11px; font-size: .82rem; font-weight: 600; }
.role-journey { list-style: none; margin: 0; padding: 0; counter-reset: rj; }
.role-journey li { position: relative; padding: 0 0 22px 44px; counter-increment: rj; }
.role-journey li::before { content: counter(rj); position: absolute; left: 0; top: -2px; width: 30px; height: 30px; border-radius: 9px; background: var(--teal-900); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; }
.role-journey li::after { content: ""; position: absolute; left: 14px; top: 30px; bottom: 2px; width: 2px; background: var(--line); }
.role-journey li:last-child { padding-bottom: 0; }
.role-journey li:last-child::after { display: none; }
.role-journey li strong { display: block; color: var(--ink); }
.role-journey li span { color: var(--ink-soft); font-size: .94rem; }

/* ---------- Channel toggle ---------- */
.chan-toggle { display: inline-flex; background: var(--soft-2); border-radius: 999px; padding: 5px; gap: 4px; margin: 0 auto 36px; }
.chan-toggle button { border: 0; background: none; cursor: pointer; font-weight: 600; color: var(--ink-soft); padding: .6rem 1.3rem; border-radius: 999px; transition: .2s; font-size: .94rem; }
.chan-toggle button.active { background: var(--surface); color: var(--teal-700); box-shadow: var(--shadow-sm); }
.chan-flow { display: none; }
.chan-flow.active { display: block; animation: fadeUp .4s ease; }
.chan-steps { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; justify-content: center; }
.chan-step { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px 18px; flex: 1 1 150px; max-width: 200px; text-align: center; box-shadow: var(--shadow-sm); position: relative; }
.chan-step .ic { width: 44px; height: 44px; margin: 0 auto 10px; border-radius: 11px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; }
.chan-step h4 { font-size: 1rem; margin: 0 0 4px; }
.chan-step p { font-size: .85rem; margin: 0; color: var(--muted); }
.chan-arrow { display: grid; place-items: center; color: var(--teal-500); flex: 0 0 32px; align-self: center; }
@media (max-width: 720px) { .chan-arrow { transform: rotate(90deg); flex-basis: 100%; height: 28px; } .chan-step { max-width: none; } }

/* ---------- Branch scaler ---------- */
.scaler { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.branch-viz { background: var(--teal-900); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.branch-hub { background: linear-gradient(135deg,#E8784A,#A8410F); color: #fff; border-radius: 14px; padding: 16px 18px; text-align: center; font-weight: 700; margin-bottom: 22px; box-shadow: 0 14px 30px -14px var(--os-glow); }
.branch-hub small { display: block; font-weight: 500; opacity: .85; font-size: .78rem; }
.branch-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.branch-node { background: rgba(255,255,255,.05); border: 1px solid var(--os-line); border-radius: 12px; padding: 14px 10px; text-align: center; color: #cbd6ea; opacity: 0; transform: translateY(10px); }
.scaler.in .branch-node { animation: fadeUp .5s ease forwards; }
.scaler.in .branch-node:nth-child(2){ animation-delay:.12s; } .scaler.in .branch-node:nth-child(3){ animation-delay:.24s; }
.branch-node .b-ic { width: 30px; height: 30px; margin: 0 auto 6px; border-radius: 8px; background: rgba(196,84,26,.18); color: #F3B68E; display: grid; place-items: center; }
.branch-node b { font-size: .85rem; color: #fff; display: block; }
.branch-node span { font-size: .72rem; color: #8294b5; }
.branch-link { position: absolute; left: 50%; width: 2px; background: linear-gradient(180deg, var(--teal-500), transparent); }

/* ---------- Section dark variant for experience ---------- */
.exp-dark { background: var(--os-bg); color: #c7d3e8; }
.exp-dark h2, .exp-dark h3 { color: #fff; }
.exp-dark .eyebrow { color: var(--teal-500); }
.exp-dark .section-head p { color: #93a4c4; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .os-hero { padding: 56px 0 48px; }
  .os-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .sim { padding: 56px 0; }
  .sim-shell { grid-template-columns: 1fr; }
  .role-card { grid-template-columns: 1fr; gap: 26px; padding: 28px; }
  .scaler { grid-template-columns: 1fr; }
  .os-apps { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 720px) {
  .os-hero { padding: 40px 0 32px; }
  .sim { padding: 40px 0; }
  .sim-stage { min-height: 320px; }
  .sim-node { min-width: calc(50% - 8px); }
  .sim-step-label { display: none; }
  .os-apps { grid-template-columns: repeat(2,1fr); }
  .roles-tabs { gap: 7px; }
  .role-tab span.lbl { display: none; }
  .role-tab { padding: .55rem .7rem; }
  .role-card { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .replace-track { animation: none; }
  .flow-svg .edge { transition: none; stroke-dashoffset: 0; }
  .os-typewriter { border-right: 0; }
}

/* ---------- Benefits grid ---------- */
.benefit-grid .card { display: flex; flex-direction: column; }
.benefit-grid .card .ic { background: var(--brand-pale); color: var(--brand); }
.benefit-grid .card h3 { font-size: 1.08rem; }
.benefit-grid .card .kpi { margin-top: auto; padding-top: 12px; font-weight: 800; color: var(--brand); font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Touchpoints relay ---------- */
.touch-lane { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.touch-lane.tawle { border-color: var(--brand); background: linear-gradient(180deg, var(--brand-pale), #fff); }
.lane-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.lane-head h3 { margin: 0; font-size: 1.12rem; display: flex; align-items: center; gap: 10px; }
.lane-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 11px; border-radius: 99px; }
.lane-tag.bad  { background: #FBEEE9; color: #B23A2E; }
.lane-tag.good { background: var(--brand); color: #fff; }
.metric-chip { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 700; color: var(--brand-dark); background: rgba(196,84,26,.1); padding: 6px 13px; border-radius: 99px; }
.metric-chip.dim { color: #8a5a3a; background: #F3EBE2; }
.metric-chip span { display: inline-flex; }
.metric-chip svg { width: 15px; height: 15px; }
.touch-step .who { min-height: 1.5em; }
.touch-step .who { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-top: 7px; display: block; }
.touch-step .who.cust { color: var(--brand); }
.touch-step .who.wait { color: #008BBA; }
.touch-step .who.kit  { color: #C0392B; }
.touch-step .who.auto { color: #1AB759; }
.touch-lane .chan-step { box-shadow: none; }
.touch-lane.tawle .chan-step { border-color: #F1CDB6; }

/* ---------- "Coming soon" badges ---------- */
.os-app.soon { opacity: .92; }
.os-app .soon-tag {
  display: inline-block; margin-top: 5px; font-size: .6rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--gold-dark);
  background: rgba(217,142,43,.16); padding: 1px 7px; border-radius: 99px;
}
.exp-dark .os-app .soon-tag { color: #F0C38A; background: rgba(217,142,43,.18); }
.roadmap-grid .card { position: relative; overflow: hidden; }
.roadmap-grid .card .soon-corner {
  position: absolute; top: 14px; right: 14px; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--gold-dark);
  background: rgba(217,142,43,.14); padding: 4px 10px; border-radius: 99px;
}
.roadmap-grid .card .progress-corner {
  position: absolute; top: 14px; right: 14px; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: #059669;
  background: rgba(5,150,105,.14); padding: 4px 10px; border-radius: 99px;
}
[dir="rtl"] .roadmap-grid .card .progress-corner,
[dir="rtl"] .roadmap-grid .card .soon-corner {
  right: auto; left: 14px;
}
.roadmap-grid .card .ic { background: rgba(217,142,43,.12); color: var(--gold-dark); }
