/* NOBBYO SOFT — teaser + dedicated page */

/* ── teaser section ──────────────────────────────────── */
.soft-teaser {
  position: relative; padding: 120px 0;
  background: linear-gradient(180deg, #0B0F2D 0%, #1A1247 50%, #2D1B69 100%);
  color: #fff;
  overflow: hidden;
}

.soft-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.soft-bg-orbs .orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: orbDrift 20s ease-in-out infinite alternate;
}
.soft-bg-orbs .o1 { width: 500px; height: 500px; top: -150px; left: -100px; background: rgba(139,92,246,.4); }
.soft-bg-orbs .o2 { width: 400px; height: 400px; bottom: -100px; right: -80px; background: rgba(255,77,141,.35); animation-delay: -7s; }
.soft-bg-orbs .o3 { width: 300px; height: 300px; top: 50%; left: 50%; background: rgba(6,182,212,.25); animation-delay: -14s; }
@keyframes orbDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(.95); }
}

.soft-teaser .container { position: relative; z-index: 1; }

.soft-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.soft-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(139,92,246,.25), rgba(255,77,141,.25));
  border: 1px solid rgba(255,255,255,.18);
  color: #fff !important;
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  backdrop-filter: blur(8px);
}
.soft-title {
  color: #fff !important;
  margin: 18px 0 16px !important;
  font-size: clamp(34px, 5vw, 56px) !important;
  line-height: 1.1 !important;
  letter-spacing: -.025em !important;
}
.soft-title .grad-text {
  background: linear-gradient(135deg, #FF4D8D 0%, #8B5CF6 50%, #06B6D4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.soft-lede {
  color: rgba(255,255,255,.72) !important;
  font-size: 17px !important;
  line-height: 1.6;
  margin: 0 !important;
}

/* ── columns ──────────────────────────────────────────── */
.soft-cols {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
  margin-bottom: 44px;
}
@media (max-width: 980px) { .soft-cols { grid-template-columns: 1fr; } }

.soft-col-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding: 0 4px;
}
.soft-status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  border: 1px solid;
}
.soft-status-pill.live {
  background: rgba(16,185,129,.18); color: #34D399; border-color: rgba(52,211,153,.4);
}
.soft-status-pill.live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #34D399;
  animation: livePulse 2s ease-in-out infinite;
}
.soft-status-pill.soon {
  background: rgba(245,158,11,.18); color: #FBBF24; border-color: rgba(251,191,36,.4);
}
.soft-count {
  font-size: 12px; color: rgba(255,255,255,.55); font-weight: 600;
}

/* ── live cards stack ───────────────────────────────── */
.soft-stack { display: flex; flex-direction: column; gap: 14px; }

.soft-card {
  display: flex; align-items: center; gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  text-decoration: none; color: #fff;
  position: relative; overflow: hidden;
  cursor: pointer;
  opacity: 0; animation: softCardIn .6s var(--ease-spring, cubic-bezier(.34,1.56,.64,1)) forwards;
  transition: all .35s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
}
.soft-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bg1), transparent 50%, var(--bg2));
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.soft-card:hover {
  transform: translateY(-3px);
  border-color: var(--ac);
  box-shadow: 0 20px 50px -12px var(--bg1);
}
.soft-card:hover::before { opacity: 1; }
.soft-card > * { position: relative; z-index: 1; }

@keyframes softCardIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.soft-card-glyph {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  box-shadow: 0 8px 24px -6px var(--ac);
  position: relative;
  transition: transform .4s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
}
.soft-card:hover .soft-card-glyph { transform: scale(1.08) rotate(-6deg); }
.soft-card-glyph .glyph {
  font-size: 32px; font-weight: 800; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
}
.soft-card-glyph::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 50%);
  pointer-events: none;
}

.soft-card-body { flex: 1; min-width: 0; }
.soft-card-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}
.soft-card-body h3 {
  margin: 0; font-size: 19px; font-weight: 700; color: #fff;
  letter-spacing: -.01em;
}
.soft-rating {
  font-size: 12px; font-weight: 700; color: #FBBF24;
  background: rgba(251,191,36,.12); padding: 2px 8px; border-radius: 6px;
}
.soft-card-body p {
  margin: 0 0 10px; font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.45;
}
.soft-card-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.soft-users {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.55);
}
.soft-platform { display: flex; gap: 4px; }
.plat-chip {
  display: inline-block;
  padding: 2px 8px; border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,.7);
  letter-spacing: .02em;
}

.soft-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  transition: all .3s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
}
.soft-card:hover .soft-arrow {
  background: var(--ac); color: #fff; transform: translateX(4px);
}

/* ── coming soon mini-cards ─────────────────────────── */
.soft-soon-grid { display: flex; flex-direction: column; gap: 10px; }

.soft-soon-card {
  position: relative;
  padding: 16px 18px;
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 14px;
  display: grid; grid-template-columns: auto 1fr; gap: 4px 14px;
  align-items: center;
  opacity: 0; animation: softCardIn .6s var(--ease-spring, cubic-bezier(.34,1.56,.64,1)) forwards;
  transition: all .3s;
}
.soft-soon-card:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--ac);
  border-style: solid;
}
.soft-soon-q {
  position: absolute; top: 12px; right: 14px;
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  color: var(--ac); background: rgba(255,255,255,.06);
  padding: 3px 8px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
}
.soft-soon-glyph {
  grid-row: span 2;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  font-size: 22px; font-weight: 800; color: #fff;
  opacity: .85;
}
.soft-soon-name {
  font-size: 15px; font-weight: 700; color: #fff;
  padding-right: 70px; /* space for Q badge */
}
.soft-soon-desc {
  font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.4;
}

.soft-roadmap-tease {
  margin-top: 14px; padding: 12px 14px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65);
}
.soft-roadmap-tease svg { color: rgba(255,255,255,.5); }

/* ── CTA row ─────────────────────────────────────────── */
.soft-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  padding-top: 8px;
}
.soft-cta {
  background: linear-gradient(135deg, #FF4D8D 0%, #8B5CF6 100%) !important;
  color: #fff !important;
  padding: 14px 28px !important;
  font-size: 15px !important; font-weight: 700;
  box-shadow: 0 16px 40px -12px rgba(139,92,246,.6);
  position: relative; overflow: hidden;
}
.soft-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s;
}
.soft-cta:hover::before { transform: translateX(100%); }

.soft-cta-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.soft-cta-stat b { color: #fff; font-weight: 700; }
.soft-cta-dot { color: rgba(255,255,255,.3); }
@media (max-width: 540px) { .soft-cta-meta { font-size: 12px; gap: 8px; } }

/* ════════════════════════════════════════════════════
   DEDICATED PAGE  (nobbyo-soft.html)
   ══════════════════════════════════════════════════ */

body.soft-page {
  background: #0B0F2D;
  color: #fff;
}

.soft-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #0B0F2D 0%, #1A1247 100%);
  overflow: hidden;
  text-align: center;
}
.soft-hero .soft-bg-orbs .o1 { left: 10%; top: 20%; }
.soft-hero .soft-bg-orbs .o2 { right: 5%; top: 40%; }

.soft-hero-content { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; padding: 0 24px; }
.soft-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  color: #fff; margin: 18px 0 18px;
}
.soft-hero h1 .grad-text {
  background: linear-gradient(135deg, #FF4D8D 0%, #8B5CF6 50%, #06B6D4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.soft-hero .lede {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto;
}
.soft-hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  margin-top: 40px;
}
.soft-hero-stat .num {
  font-size: 36px; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(135deg, #FF4D8D, #8B5CF6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.soft-hero-stat .label {
  font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px;
}

.soft-section {
  padding: 100px 0;
  position: relative;
}
.soft-section.alt { background: rgba(255,255,255,.02); }
.soft-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; letter-spacing: -.02em;
  color: #fff; margin: 0;
}
.soft-section .section-lede {
  color: rgba(255,255,255,.65);
  font-size: 16px; line-height: 1.6;
  max-width: 640px; margin: 14px auto 0;
}
.soft-section .section-head { text-align: center; margin-bottom: 56px; }
.soft-section .eyebrow { color: #8B5CF6 !important; }

/* ── Live products grid (full page) ─────────────────── */
.soft-live-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 980px) { .soft-live-grid { grid-template-columns: 1fr; } }

.soft-product-card {
  position: relative;
  padding: 32px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all .4s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
}
.soft-product-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 0 0, var(--bg1), transparent 50%);
  opacity: .6; pointer-events: none;
}
.soft-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--ac);
  box-shadow: 0 30px 60px -16px var(--bg1);
}
.soft-product-card > * { position: relative; z-index: 1; }

.spc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.spc-glyph {
  width: 72px; height: 72px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  box-shadow: 0 12px 32px -6px var(--ac);
  font-size: 36px; font-weight: 800; color: #fff;
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  position: relative;
}
.spc-glyph::after {
  content: ""; position: absolute; inset: 4px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent 50%);
}
.spc-status-tag {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(52,211,153,.15); color: #34D399;
  border: 1px solid rgba(52,211,153,.3);
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 5px;
}
.spc-status-tag .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #34D399;
  animation: livePulse 2s ease-in-out infinite;
}

.spc-name {
  font-size: 24px; font-weight: 800; color: #fff;
  letter-spacing: -.015em; margin-bottom: 4px;
}
.spc-tagline {
  font-size: 14px; font-weight: 600; color: var(--ac);
  margin-bottom: 14px;
}
.spc-desc {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,.65); margin-bottom: 18px;
}

.spc-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 22px;
}
.spc-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.75);
}
.spc-feat svg { color: var(--ac); flex-shrink: 0; }

.spc-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08);
}
.spc-foot-stats { display: flex; gap: 16px; align-items: baseline; }
.spc-foot-stats .stat .n { font-size: 18px; font-weight: 800; color: #fff; }
.spc-foot-stats .stat .l { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }

.spc-foot-btn {
  padding: 9px 18px; border-radius: 10px;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  color: #fff; border: 0; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .25s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
  text-decoration: none;
}
.spc-foot-btn:hover { transform: translateX(2px); box-shadow: 0 8px 20px -4px var(--ac); }

/* ── Roadmap timeline ─────────────────────────────── */
.soft-roadmap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.soft-roadmap::before {
  content: ""; position: absolute; top: 64px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, #10B981 0%, #8B5CF6 33%, #FF5A3C 66%, #06B6D4 100%);
  opacity: .35;
  z-index: 0;
}
@media (max-width: 980px) {
  .soft-roadmap { grid-template-columns: 1fr 1fr; }
  .soft-roadmap::before { display: none; }
}
@media (max-width: 600px) { .soft-roadmap { grid-template-columns: 1fr; } }

.rm-col { position: relative; z-index: 1; }
.rm-head {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 20px;
}
.rm-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ac);
  box-shadow: 0 0 0 6px rgba(255,255,255,.04), 0 0 0 1px var(--ac), 0 0 24px var(--ac);
  margin-bottom: 14px;
}
.rm-quarter {
  font-size: 12px; font-weight: 800; letter-spacing: .12em;
  color: var(--ac);
}
.rm-label {
  font-size: 16px; font-weight: 700; color: #fff;
  margin-top: 4px;
}

.rm-items { display: flex; flex-direction: column; gap: 10px; }
.rm-item {
  padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 12px;
  transition: all .25s;
}
.rm-item:hover { background: rgba(255,255,255,.07); border-color: var(--ac); }
.rm-item-glyph {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ac), rgba(255,255,255,.05));
  font-size: 18px; font-weight: 800; color: #fff;
}
.rm-item-body { min-width: 0; }
.rm-item-name { font-size: 14px; font-weight: 700; color: #fff; }
.rm-item-desc { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; line-height: 1.3; }

/* ── Beta CTA / footer area ─────────────────────────── */
.soft-cta-band {
  text-align: center;
  padding: 100px 24px;
  background: radial-gradient(circle at 50% 0%, rgba(139,92,246,.3), transparent 60%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.soft-cta-band h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; color: #fff;
  letter-spacing: -.02em; line-height: 1.1; margin: 0 0 18px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.soft-cta-band p {
  color: rgba(255,255,255,.7);
  font-size: 17px; line-height: 1.6;
  max-width: 540px; margin: 0 auto 28px;
}

.soft-back-link {
  position: fixed; top: 24px; left: 24px; z-index: 100;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(11,15,45,.7); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: all .25s;
}
.soft-back-link:hover { background: rgba(255,255,255,.08); transform: translateX(-2px); }

/* nav override on soft-page */
body.soft-page .nav { background: rgba(11,15,45,.7) !important; backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,.08) !important; }
body.soft-page .nav .brand { color: #fff !important; }
body.soft-page .nav-link { color: rgba(255,255,255,.8) !important; }
body.soft-page .nav-link:hover { background: rgba(255,255,255,.08) !important; color: #fff !important; }
body.soft-page .nav-search input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: #fff; }
body.soft-page .nav-search input::placeholder { color: rgba(255,255,255,.45); }
body.soft-page .lang-toggle { background: rgba(255,255,255,.06); }
body.soft-page .lang-toggle button { color: rgba(255,255,255,.7); }
body.soft-page .lang-toggle button.active { background: #fff; color: #1E2A78; }
