:root {
  --dop-primary:        #dd4b95;
  --dop-secondary:      #f379b6;
  --dop-primary-dark:   #a8316f;
  --dop-primary-soft:   rgba(221,75,149,0.16);
  --dop-gradient:       #dd4b95;
  --dop-purple:         #8d67fb;
  --dop-purple-gradient:#dd4b95;
  --dop-bg:             #0f1117;
  --dop-bg-2:           #161922;
  --dop-bg-3:           #1d2130;
  --dop-card:           #181c28;
  --dop-card-2:         #1f2333;
  --dop-overlay:        rgba(23,25,37,0.85);
  --dop-text:           #f5eef3;
  --dop-text-muted:     #8a8597;
  --dop-text-on-pink:   #ffffff;
  --dop-border:         rgba(221,75,149,0.18);
  --dop-border-soft:    rgba(255,255,255,0.06);
  --dop-border-strong:  rgba(255,255,255,0.12);
  --dop-success:        #6ad36b;
  --dop-warning:        #ffcf5c;
  --dop-energy-low:     #6ad36b;
  --dop-energy-mid:     #ffcf5c;
  --dop-energy-high:    #ef5aa5;
  --dop-shadow-pink:    0 14px 28px rgba(221,75,149,0.24);
  --dop-shadow-pink-lg: 0 16px 34px rgba(221,75,149,0.30);
  --dop-shadow-card:    0 12px 28px rgba(0,0,0,0.28);
  --dop-shadow-phone:   0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.05);
  --dop-glow-mascot:    drop-shadow(0 16px 24px rgba(221,75,149,0.28));
  --dop-radius-xs:  8px;
  --dop-radius-sm: 12px;
  --dop-radius-md: 14px;
  --dop-radius-lg: 18px;
  --dop-radius-xl: 22px;
  --dop-radius-2xl:30px;
  --dop-radius-pill: 999px;
  --dop-font-display: 'Nunito', system-ui, sans-serif;
  --dop-font-body:    'DM Sans', system-ui, sans-serif;
  --dop-dur-fast: .15s;
  --dop-dur:      .25s;
  --dop-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dop-tracking-tight: -0.02em;
  --primary: var(--dop-primary);
  --secondary: var(--dop-secondary);
  --primary-dark: var(--dop-primary-dark);
  --primary-soft: var(--dop-primary-soft);
  --bg: var(--dop-bg);
  --bg2: var(--dop-bg-2);
  --bg3: var(--dop-bg-3);
  --card: var(--dop-card);
  --card2: var(--dop-card-2);
  --text: var(--dop-text);
  --muted: var(--dop-text-muted);
  --border: var(--dop-border);
  --gradient: var(--dop-gradient);
  --nav-height: 68px;
  --beta-banner-height: 0px;
  --beta-banner-space: 0px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 60px; background: rgba(23,25,37,0.85);
  backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(221,75,149,0.45)); }
.brand-name { margin: 0; font-family: 'Nunito', sans-serif; font-size: 1.15rem; font-weight: 900; letter-spacing: -0.02em; }
.brand-name > img { width: 100px;}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--primary); color: #fff; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 12px 22px; font-size: 13px; font-weight: 800;
  font-family: 'Nunito', inherit; box-shadow: 0 10px 22px rgba(221,75,149,0.22);
}
.nav-cta:hover { background: var(--secondary); }
section { padding: 90px 60px; }
.hero { padding-top: 150px; overflow: hidden; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
h1, .section-title, .card-title, .faq-question, .tool-result-title { font-family: 'Nunito', sans-serif; }
h1 { font-size: 54px; line-height: 1.08; margin-bottom: 18px; overflow-wrap: anywhere; }
h1 span, .section-title span, .faq-question span { color: var(--dop-primary, var(--primary)); }
.hero p, .section-desc, .card-body, .faq-answer, .article-copy p, .article-copy li { color: var(--muted); line-height: 1.75; }
.hero p { font-size: 18px; margin-bottom: 24px; max-width: 68ch; }
.section-header { max-width: 760px; margin-bottom: 36px; }
.section-title { font-size: 42px; line-height: 1.15; margin-bottom: 14px; }
.section-desc { font-size: 17px; }
.card-grid, .tool-grid, .compare-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card, .tool-panel, .faq-card, .cta-card, .disclosure {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px;
}
.card-title { font-size: 22px; margin-bottom: 12px; }
.card-body { font-size: 15px; }
.card ul, .article-copy ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.card li, .article-copy li { position: relative; padding-left: 20px; }
.card li::before, .article-copy li::before { content: ''; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); }
.article-copy { max-width: 860px; }
.article-copy h2 { font-family: 'Nunito', sans-serif; font-size: 30px; margin: 38px 0 14px; }
.article-copy h3 { font-family: 'Nunito', sans-serif; font-size: 22px; margin: 24px 0 10px; }
.article-copy p + p { margin-top: 14px; }
.disclosure { margin-top: 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.tool-panel label { display: block; margin-bottom: 8px; color: var(--text); font-weight: 800; font-size: 14px; }
.tool-panel select, .tool-panel input[type="range"] {
  width: 100%; min-height: 46px; margin-bottom: 18px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--card2); color: var(--text); padding: 10px 12px;
}
.option-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; }
.choice {
  min-height: 44px; border-radius: 12px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.03); color: var(--text); font-weight: 800; cursor: pointer;
}
.choice[aria-pressed="true"] { background: var(--primary-soft); border-color: rgba(221,75,149,0.52); }
.tool-result { margin-top: 22px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 14px; padding: 22px; min-height: 120px; }
.tool-result-title { font-size: 21px; margin-bottom: 10px; }
.tool-result ol, .tool-result ul { margin-left: 20px; color: var(--muted); line-height: 1.75; }
.timer-face {
  display: grid; place-items: center; width: min(100%, 320px); aspect-ratio: 1;
  margin: 0 auto 22px; border-radius: 50%; border: 2px solid rgba(221,75,149,0.36);
  background: radial-gradient(circle, rgba(221,75,149,0.18), rgba(31,35,51,0.55));
  font-family: 'Nunito', sans-serif; font-size: clamp(48px, 9vw, 74px); font-weight: 900;
}
.cta-card { text-align: center; max-width: 880px; margin: 0 auto; }
.cta-card h2 { font-size: 36px; margin-bottom: 12px; }
.cta-card p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-card .actions { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 20px; border-radius: 14px; border: 1px solid transparent;
  color: var(--text); font-family: 'Nunito', 'DM Sans', sans-serif; font-size: 14px;
  font-weight: 800; line-height: 1.2; text-align: center; cursor: pointer;
}
.btn-primary { background: var(--dop-primary, var(--primary)); color: #fff; box-shadow: 0 14px 28px rgba(221,75,149,0.24); }
.btn-secondary { background: rgba(255,255,255,0.03); border-color: var(--border); color: var(--text); }
.btn:hover { transform: translateY(-1px); opacity: .95; }
.faq-grid { display: grid; gap: 18px; }
.faq-question { font-size: 19px; margin-bottom: 10px; }
footer {
  background: var(--bg); border-top: 1px solid var(--border); padding: 48px 60px;
  display: flex; justify-content: space-between; align-items: center; gap: 22px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; list-style: none; justify-content: center; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 13px; }
@media (max-width: 980px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 128px; }
  .hero-grid, .card-grid, .tool-grid, .compare-grid { grid-template-columns: 1fr; }
  .tool-panel[style] { grid-column: auto !important; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  h1 { font-size: 30px; max-width: 300px; line-height: 1.12; }
  .hero p { max-width: 320px; }
  .section-title { font-size: 30px; }
  .card, .tool-panel, .faq-card, .cta-card, .disclosure { padding: 22px; }
  .option-row { grid-template-columns: 1fr; }
  .hero .actions { width: 100%; max-width: 320px; }
  .actions, .actions .btn { width: 100%; }
}


/* DOPAMI INDEX STYLE PARITY */
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  background: var(--dop-bg) !important;
  color: var(--dop-text) !important;
  font-family: var(--dop-font-body) !important;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
h1, h2, h3, h4 {
  font-family: var(--dop-font-display) !important;
  letter-spacing: var(--dop-tracking-tight);
}
::selection { background: rgba(221,75,149,0.32); color: #fff; }
.grad,
h1 span,
h2 span,
.section-title span,
.faq-question span,
.page-header h1 span,
.section-block h2 span {
  color: var(--dop-primary);
}
nav.bar, nav {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  z-index: 50 !important;
  background: var(--dop-overlay) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--dop-border-soft) !important;
  padding: 0 !important;
}
nav.bar .inner, nav > .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 11px !important;
  min-width: 0;
}
.brand img, .brand-logo {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 4px 10px rgba(221,75,149,0.45)) !important;
  transition: transform var(--dop-dur) !important;
}
.brand:hover img, .brand:hover .brand-logo { transform: rotate(-6deg) scale(1.05); }
.brand .brand-title { width: 100px !important; height: auto !important; filter: none !important; transform: none !important; }
.brand:hover .brand-title { transform: none !important; }
.brand span, .brand-name-text {
  font-family: var(--dop-font-display) !important;
  font-weight: 900 !important;
  font-size: 19px !important;
  letter-spacing: var(--dop-tracking-tight) !important;
  color: var(--dop-text) !important;
}
.navlinks, .nav-links { display: flex; gap: 30px; list-style: none; }
.navlinks a, .nav-links a {
  color: var(--dop-text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--dop-dur);
  text-decoration: none;
}
.navlinks a:hover,
.nav-links a:hover,
.navlinks a[aria-current="page"],
.nav-links a[aria-current="page"] { color: var(--dop-text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn-nav, a.nav-cta {
  background: var(--dop-primary) !important;
  color: var(--dop-text-on-pink) !important;
  padding: 11px 18px !important;
  border-radius: var(--dop-radius-sm) !important;
  font-family: var(--dop-font-display) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  box-shadow: var(--dop-shadow-pink) !important;
  border: none !important;
}
.nav-cta .btn-nav:hover, a.nav-cta:hover {
  box-shadow: var(--dop-shadow-pink-lg) !important;
  transform: translateY(-1px) !important;
}
.wrap, .section-inner {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
section { background: var(--dop-bg); }
.bg2, .tools-section, section.bg2 { background: var(--dop-bg-2) !important; }
.hero, .page-header {
  background: var(--dop-bg) !important;
  padding-top: 88px !important;
}
.hero::before, .hero::after, .page-header::before, .page-header::after { content: none !important; }
.hero h1, .page-header h1 {
  font-family: var(--dop-font-display) !important;
  font-weight: 900 !important;
  letter-spacing: var(--dop-tracking-tight) !important;
}
footer.site, footer {
  background: var(--dop-bg-2) !important;
  border-top: 1px solid var(--dop-border-soft) !important;
  padding: 56px 60px 36px !important;
  display: block !important;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 34px; }
.foot-brand p { color: var(--dop-text-muted); font-size: 14px; margin: 14px 0 0; max-width: 260px; line-height: 1.6; }
.foot-col h4 {
  font-family: var(--dop-font-display) !important;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  color: var(--dop-text);
}
.foot-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.foot-col a { color: var(--dop-text-muted); font-size: 14px; transition: color var(--dop-dur); text-decoration: none; }
.foot-col a:hover { color: var(--dop-text); }
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--dop-border-soft);
  color: var(--dop-text-muted);
  font-size: 13px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--dop-font-display) !important;
  font-weight: 800 !important;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--dop-dur), box-shadow var(--dop-dur), transform var(--dop-dur), border-color var(--dop-dur);
}
.btn-primary {
  background: var(--dop-primary) !important;
  color: var(--dop-text-on-pink) !important;
  padding: 15px 26px;
  border-radius: var(--dop-radius-md) !important;
  font-size: 16px;
  box-shadow: var(--dop-shadow-pink) !important;
}
.btn-primary:hover {
  box-shadow: var(--dop-shadow-pink-lg) !important;
  transform: translateY(-1px) !important;
}
.btn-secondary, .btn-ghost {
  background: var(--dop-card-2) !important;
  color: var(--dop-text) !important;
  border: 1px solid var(--dop-border-strong) !important;
  border-radius: var(--dop-radius-md) !important;
}
.btn-secondary:hover, .btn-ghost:hover {
  border-color: rgba(221,75,149,0.55) !important;
  background: rgba(221,75,149,0.10) !important;
  transform: translateY(-1px) !important;
}
.card, .tool-panel, .faq-card, .cta-card, .disclosure, .compare-card, .fact-card, .alt-card, .insight-card, .highlight-box, .warning-box, .contact-card, .faq-item, .search-box, .stuck-card {
  background: var(--dop-card) !important;
  border-color: var(--dop-border-soft) !important;
  transition: border-color .25s, transform .25s, box-shadow .25s !important;
}
.compare-card:hover, .alt-card:hover, .insight-card:hover {
  border-color: rgba(221,75,149,0.4) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18) !important;
}
@media(max-width:920px){
  nav.bar .inner, nav > .inner { padding: 12px 22px !important; }
  .navlinks, nav .nav-links { display: none; }
  footer.site, footer { padding: 40px 22px 28px !important; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media(max-width:560px){
  .foot-grid { grid-template-columns: 1fr; }
}
