:root {
  --bs-theme: #daa520;
  --bs-theme-secondary: #daa520;
  --color-primary: #e5e7eb;
  --color-primary-container: #0f0f10;
  --color-on-primary: #070708;
  --color-surface-tint: #a3a3a3;
  --color-secondary: #9ca3af;
  --color-on-surface: #f3f4f6;
  --color-on-surface-variant: #d1d5db;
  --color-surface: #000000;
  --color-surface-container: #0a0a0a;
  --color-surface-container-low: #050505;
  --color-surface-container-high: #151515;
  --color-surface-container-highest: #1f1f1f;
  --color-surface-container-lowest: #0f0f0f;
  --color-secondary-container: #141414;
  --color-on-secondary-container: #d4d4d8;
  --color-primary-fixed: #212121;
  --color-primary-fixed-dim: #3f3f46;
  --color-on-primary-fixed-variant: #e5e7eb;
  --color-tertiary: #d4d4d8;
  --color-tertiary-fixed: #121212;
  --color-outline-variant: #2a2a2a;
  --color-slate-50: #0a0a0a;
  --color-slate-200: #262626;
  --color-slate-300: #404040;
  --color-slate-400: #737373;
  --color-slate-500: #a3a3a3;
  --color-slate-600: #d4d4d8;
  --color-slate-800: #e5e7eb;
  --color-slate-900: #f5f5f5;
  --color-blue-100: #d4d4d8;
  --color-blue-200: #a3a3a3;
  --color-blue-100-app: #d4d4d8;
  --font-headline: "Roboto Condensed", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-pill: 9999px;
  --shadow-header: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.35);
  --container-max: 80rem;
  --header-height: 5.5rem;
  --surface: #0f0f0f;
  --surface2:#1a1e29;
  --surface3:#222637;
  --border: #292929;
  --accent:#387ed1;
  --accent2:#5b9cf6;
  --profit:#1db954;
  --profit-bg:rgba(29,185,84,0.10);
  --loss:#e05c5c;
  --loss-bg:rgba(224,92,92,0.10);
  --text:#e8eaf6;
  --text2:#8f96b0;
  --text3:#555e7a;
  --yellow:#f0b429;
  --purple:#9b8cff;
  --buy:#5b9cf6;
  --sell:#ff8c42;
  --tag-call:rgba(91,156,246,0.15);
  --tag-put:rgba(240,180,41,0.13);
  --primary-rgb: 3, 181, 98;
  --primary-color: rgb(var(--primary-rgb));
  --primary-border: rgb(var(--primary-rgb));
  --primary01: rgba(var(--primary-rgb), 0.1);
  --primary02: rgba(var(--primary-rgb), 0.2);
  --primary03: rgba(var(--primary-rgb), 0.3);
  --primary04: rgba(var(--primary-rgb), 0.4);
  --primary05: rgba(var(--primary-rgb), 0.5);
  --primary06: rgba(var(--primary-rgb), 0.6);
  --primary07: rgba(var(--primary-rgb), 0.7);
  --primary08: rgba(var(--primary-rgb), 0.8);
  --primary09: rgba(var(--primary-rgb), 0.9);
  --primary005: rgba(var(--primary-rgb), 0.05);
  --secondary-rgb: 127, 103, 257;
  --warning-rgb: 255, 169, 9;
  --info-rgb: 15, 188, 249;
  --success-rgb: 83, 196, 5;
  --danger-rgb: 253, 73, 99;
  --light-rgb: 244, 244, 244;
  --dark-rgb: 10, 10, 10;
  --orange-rgb: 254, 124, 88;
  --pink-rgb: 254, 84, 155;
  --teal-rgb: 0, 216, 216;
  --purple-rgb: 123, 118, 254;
  --green-rgb: 1, 239, 140;
  --bs-border-radius: 0.375rem;
}

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

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-on-surface);
  background-color: #0c0c0c;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* Icons                                                                      */
/* -------------------------------------------------------------------------- */

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-family: "Material Symbols Outlined", sans-serif;
  font-style: normal;
  line-height: 1;
  vertical-align: middle;
}

.icon--md {
  font-size: 1.5rem;
}

.icon--lg {
  font-size: 1.5rem;
}

.icon--xl {
  font-size: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/* Layout                                                                     */
/* -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.main {
  padding-top: var(--header-height);
}

.section {
  padding: 60px 0;
}

.section--muted {
  background-color: var(--color-surface-container-low);
}

.section--flush-x {
  padding-left: 0;
  padding-right: 0;
}

.section--overflow {
  overflow: hidden;
}

.section__inner {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .sticky-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
  }
}

/* -------------------------------------------------------------------------- */
/* Typography                                                                 */
/* -------------------------------------------------------------------------- */

.heading {
  font-family: var(--font-headline);
  font-weight: normal;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
  margin-top: 0;
}

.heading--1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

.heading--2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
}

.heading--3 {
  font-size: 1.5rem;
  font-weight: normal;
  /* text-transform: uppercase; */
}

.heading--4 {
  font-size: 1.125rem;
  font-weight: 700;

}
.category-card .heading--4 {
    padding-left: 60px;
}
.text-accent {
  color: var(--color-surface-tint);
}

.text-muted {
  color: var(--color-secondary);
}

.text-lead {
  font-size: 15px;
  line-height: 1.65;
  color: #e1e1e1;
  max-width: 32rem;
}

.hero__lead {
  margin-bottom: 2.5rem;
}

.section-head--center .heading--edge {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.section-head--center .text-lead {
  max-width: none;
}

.text-small {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* Site header                                                                */
/* -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgb(0 0 0 / 92%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(49 49 49 / 90%);
  box-shadow: var(--shadow-header);
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
  /* gap: 0.75rem 1rem; */
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
}

.site-brand {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3rem;
  gap: 10px;
}
.site-brand small{
      font-size: 14px;
      text-transform: uppercase;
      color: #9d9d9d;
      font-weight: normal;
      letter-spacing: 1px;
}
.site-brand img{
  filter: brightness(0) invert(1);
  height: 65px;
}
.site-nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0.5rem 2rem;
  min-width: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-slate-500);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-slate-600);
  cursor: pointer;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: #111a2b;
}

@media (min-width: 768px) {
  
  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-slate-200);
  background: var(--color-surface-container);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--color-slate-600);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-outline-variant);
}

.mobile-menu a:hover {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: var(--radius-md);
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  border: none;
  transition: filter 0.2s, background 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, #e5e7eb 0%, #a3a3a3 100%);
  color: #0a0a0a;
  box-shadow: 0 10px 20px rgba(0, 30, 64, 0.15);
}

.btn--primary:hover {
  filter: brightness(1.06);
}

.btn--primary .material-symbols-outlined {
  color: var(--color-on-primary);
}

.btn--primary-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
}

.btn--ghost {
  background: transparent;
  color: var(--color-slate-600);
  border: 1px solid var(--color-slate-200);
  font-weight: 500;
}

.btn--ghost:hover {
  background: rgba(241, 245, 249, 0.9);
}

.btn--secondary {
  background: var(--color-surface-container-high);
  color: var(--color-primary);
  border: 1px solid rgba(195, 198, 209, 0.5);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
}

.btn--secondary:hover {
  background: var(--color-surface-container-highest);
}

.daily-performance-btn {
  background: #0b0b0b;
  color: #f5f5f5;
  border: 1px solid #f4c430;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.daily-performance-btn:hover {
  background: rgba(244, 196, 48, 0.08);
  border-color: #ffd24d;
  color: #ffffff;
}

.btn--outline-dark {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #2b2b2b;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-primary);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-on-primary);
}

.btn--link {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--color-primary);
  cursor: pointer;
}

.btn--link .material-symbols-outlined {
  transition: transform 0.2s;
}

.btn--link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--white {
  background: #fff;
  color: #111827;
  border-radius: var(--radius-2xl);
  padding: 1rem 2rem;
  font-weight: 700;
  gap: 0.75rem;
  border: 1px solid #e5e7eb;
}

.btn--white:hover {
  background: #d4d4d8;
}

/* -------------------------------------------------------------------------- */
/* Badges & pills                                                             */
/* -------------------------------------------------------------------------- */

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-pill);
  border: #f4c430 solid 1px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 60px 1.5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    padding: 60px 4.5rem;
  }
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero__visual {
  position: relative;
}

.fadeleft {
  animation-name: heroFadeLeft;
}

.faderigt,
.faderight {
  animation-name: heroFadeRight;
}

.slight-bounce {
  display: inline-block;
  transform-origin: center bottom;
  animation: heroSlightBounce 4.5s ease-in-out infinite;
}

.hero-rotating-text {
  display: inline-block;
  min-height: 1.1em;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.hero-rotating-text.is-fading {
  opacity: 0.2;
  transform: translateY(4px);
}

.hero-tagline {
  margin: 0.25rem 0 1rem;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: #d8a73c;
  letter-spacing: -0.01em;
}

.hero__glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: transparent;
  filter: blur(100px);
  pointer-events: none;
}

.glass-card {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(44, 59, 83, 0.9);
  background: rgba(17, 26, 43, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px -12px rgba(0, 30, 64, 0.15);
}

.glass-card img {
  border-radius: var(--radius-md);
}

.hero-phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.hero-phone-frame {
  /* position: relative; */
  /* width: min(295px, 82vw); */
  /* aspect-ratio: 9 / 17; */
  /* border-radius: 1.75rem; */
  overflow: hidden;
  /* border: 6px solid #1a1a1a; */
  /* background: #080808; */
}

.hero-phone-notch {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #000;
  z-index: 2;
}

.hero-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroFadeLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroFadeRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroSlightBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fadeleft,
  .faderigt,
  .faderight,
  .slight-bounce {
    animation: none !important;
    transform: none !important;
  }
}

.hero-feature-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.hero-feature-chips span {
  font-size: 0.75rem;
  color: var(--color-on-surface);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__actions .btn {
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.hero__actions .btn--primary {
  background: #f4c430;
  color: #111111;
  border: 1px solid #f4c430;
}

.hero__actions .btn--primary:hover {
  background: #ffd24d;
  border-color: #ffd24d;
}

.hero__actions .btn--secondary {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid #f4c430;
}

.hero__actions .btn--secondary:hover {
  background: rgba(244, 196, 48, 0.08);
  border-color: #ffd24d;
}

.hero__actions .btn .material-symbols-outlined {
  display: none;
}

.hero-feature-grid {
  display: flex;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 1.5rem;
}

.hero-feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 5px;
  color: #f5f5f5;
}

.hero-feature-item .material-symbols-outlined {
  font-size: 1.15rem;
  color: #f4c430;
}

.hero-feature-item__text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .hero-feature-grid {
    /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
  }
}

/* -------------------------------------------------------------------------- */
/* Section headings                                                           */
/* -------------------------------------------------------------------------- */

.section-head {
  margin-bottom: 4rem;
}

.section-head--row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-head--row {
    flex-direction: row;
    align-items: flex-end;
  }
}

.section-head--center {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 5rem;
}

.section-head p {
  margin: 0.5rem 0 0;
  color: var(--color-secondary);
}

/* -------------------------------------------------------------------------- */
/* Grids                                                                      */
/* -------------------------------------------------------------------------- */

.grid-categories {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-categories {
    grid-template-columns: repeat(5, 1fr);
  }
}

.category-tab {
  border: none;
  text-align: left;
  cursor: pointer;
  background: var(--color-surface-container);
  border-top: 3px solid transparent;
}

.category-tab--active {
  /* outline: 1px solid var(--color-primary); */
  box-shadow: var(--shadow-card);
  background: #ccc;
  border-top-color: var(--offer-color, rgb(244, 196, 48));
}

.offer-panels {
  margin-top: 2.5rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.offer-panel {
  display: none;
}

.offer-panel--active {
  display: block;
}

.offer-slider {
  position: relative;
  margin: 0;
  /* padding: 0 2.8rem; */
}

.offer-swiper {
  overflow: hidden;
}

.offer-swiper .swiper-wrapper {
  align-items: stretch;
}

.offer-swiper .swiper-slide {
  height: auto;
}

.offer-swiper .ipo-card {
  height: 100%;
}

.offer-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 22, 30, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.offer-slider-btn:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(26, 31, 42, 0.96);
}

.offer-slider-btn.swiper-button-disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.offer-slider-btn--prev {
  left: -4%;
}

.offer-slider-btn--next {
  right: -4%;
}

@media (max-width: 767px) {
      .tabs{
        flex-wrap:wrap !important;
    }
  .offer-slider {
    padding: 0 2.4rem;
  }

  .offer-slider-btn {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.offer-panel__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}

.ipo-subtabs {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: var(--color-surface-container-high);
}

.ipo-subtab {
  border: none;
  border-radius: 999px;
  padding: 0.4rem 1.25rem;
  background: transparent;
  color: var(--color-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
}

.ipo-subtab--active {
  background: var(--color-surface-container-lowest);
  color: var(--color-primary);
  font-weight: 600;
}

.offer-panel__body {
  margin-top: 1rem;
}

.ipo-subpanel {
  display: none;
}

.ipo-subpanel--active {
  display: block;
}

.grid-ipo {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-ipo {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-analysis {
  display: block;
}

.analysis-stack {
  display: grid;
  gap: 2rem;
}

.analysis-stack-row {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.analysis-stack__list {
  display: grid;
  gap: 1rem;
}

.analysis-stack .analysis-stack__feature {
  height: 100%;
  align-self: stretch;
}

@media (min-width: 1024px) {
  .analysis-stack-row {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  }
}

.grid-edge {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .grid-edge {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-edge {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-blogs {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .grid-blogs {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid-blogs__featured {
    grid-column: span 7;
  }

  .grid-blogs__list {
    grid-column: span 5;
  }
}

/* -------------------------------------------------------------------------- */
/* Cards                                                                      */
/* -------------------------------------------------------------------------- */

.card {
  background: var(--color-surface-container-lowest);
  border-radius: var(--radius-2xl);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-card);
}

.category-card {
  padding: 15px;
  border-radius: 10px;
  background: var(--color-surface-container-lowest);
  transition: box-shadow 0.2s;
  /* display: flex; */
  gap: 20px;
  /* padding-left: 40px; */
}

.category-card:hover {
  box-shadow: var(--shadow-card);
}

.category-card--accent {
  border-top: 4px solid var(--color-surface-tint);
}

.category-card__icon {
  width: 3rem;
  height: 3rem;
  /* border-radius: var(--radius-xl); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease;
}
.category-card__icon .material-symbols-outlined {
  position: relative;
  z-index: 1;
}
.category-card__icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--offer-color, rgb(244, 196, 48));
    border-radius: 8px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.home-page .category-card:hover .category-card__icon {
  color: #ffffff;
}
.category-card__icon--secondary {
 background: #fff;
    color: #000;
  position: absolute;
  top: -15px;
  border-radius: 8px;
}

.category-card__icon--primary-fixed {
  background: var(--color-primary-fixed);
}

.category-card__icon--tint {
  background: rgba(58, 95, 148, 0.1);
  color: var(--color-surface-tint);
}

.category-card__icon--tertiary {
  background: var(--color-tertiary-fixed);
  color: var(--color-tertiary);
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-surface-tint);
  text-decoration: none;
  transition: gap 0.2s;
}

.category-card:hover .category-card__link {
  gap: 0.5rem;
}

.category-card .text-muted {
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.icon--sm {
  font-size: 0.875rem;
}

.ipo-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--color-surface-container-high);
  border-radius: var(--radius-pill);
}

.ipo-filters__btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s;
}

.ipo-filters__btn:hover {
  color: var(--color-primary);
}

.ipo-filters__btn--active {
  background: var(--color-surface-container-lowest);
  color: var(--color-primary);
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ipo-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(195, 198, 209, 0.35);
  background: var(--color-surface-container-lowest);
  transition: box-shadow 0.2s;
}

.ipo-card:hover {
  box-shadow: var(--shadow-card);
}

.ipo-card .btn--outline-dark {
  margin-top: auto;
}

.ipo-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
}

.ipo-card__logo {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-xl);
  background: var(--color-surface-container);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.ipo-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
  border-radius: var(--radius-xl);
}

.tag {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgb(0 0 0 / 44%);
  color: var(--color-on-primary-fixed-variant);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ipo-card__rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ipo-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.ipo-row span:first-child {
  color: var(--color-secondary);
}

.ipo-row span:last-child {
  font-weight: 600;
  color: var(--color-primary);
}

.analysis-featured {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  transition: box-shadow 0.2s;
}

.analysis-featured:hover {
  box-shadow: var(--shadow-card);
}

.analysis-featured__media {
  overflow: hidden;
  width: clamp(120px, 16vw, 180px);
  height: clamp(120px, 16vw, 180px);
  border-radius: var(--radius-2xl);
  flex-shrink: 0;
}

.analysis-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.analysis-featured:hover .analysis-featured__media img {
  transform: scale(1.05);
}

.analysis-featured__body {
  padding: 0.2rem 0.75rem 0.4rem 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .analysis-featured__body {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
  }
}

.analysis-featured__body .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-surface-tint);
  margin-bottom: 0.25rem;
}

.analysis-featured__body .heading {
  margin-bottom: 0.35rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.analysis-featured__body > .text-muted {
  margin-bottom: 0;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
}

.analysis-featured__body .btn--link {
  margin-top: 0;
}

.analysis-card-dark {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--color-outline-variant);
  background: linear-gradient(170deg, #1a1a1a 0%, #0b0b0b 100%);
  color: var(--color-on-surface);
  align-self: start;
}

@media (min-width: 1024px) {
  .analysis-card-dark {
    padding: 2.5rem;
  }
}

.analysis-card-dark .eyebrow {
  color: #a3a3a3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.analysis-card-dark .heading {
  color: var(--color-on-surface);
  margin-bottom: 1.5rem;
}

.analysis-card-dark p {
  color: #d4d4d8;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  flex-grow: 1;
}

.analysis-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.analysis-metric {
  font-size: 0.75rem;
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
}

.edge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.edge-item__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.edge-item__icon--secondary {
  background: var(--color-secondary-container);
}

.edge-item__icon--primary-fixed {
  background: var(--color-primary-fixed);
}

.edge-item .text-muted {
  line-height: 1.65;
}

.blog-featured {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background: var(--color-surface-container-lowest);
  transition: box-shadow 0.2s;
}

.blog-featured:hover {
  box-shadow: var(--shadow-card);
}

.blog-featured__image {
  height: 16rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .blog-featured__image {
    height: 20rem;
  }
}

.blog-featured__image img {
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
  /*object-position:top;*/
  transition: transform 0.7s;
}

.blog-featured:hover .blog-featured__image img {
  transform: scale(1.05);
}

.blog-featured__content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
}

.blog-meta__tag {
  font-weight: 700;
  color: var(--color-surface-tint);
}

.blog-meta__date {
  color: var(--color-secondary);
}

.blog-featured__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  transition: color 0.2s;
}

.blog-featured:hover .blog-featured__title {
  color: var(--color-surface-tint);
}

.blog-featured__excerpt {
  color: var(--color-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.blog-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-compact {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-3xl);
  background: var(--color-surface-container-lowest);
  transition: box-shadow 0.2s;
}

.blog-compact:hover {
  box-shadow: var(--shadow-card);
}

.blog-compact__thumb {
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blog-compact__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-compact__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-compact__eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-surface-tint);
  margin-bottom: 0.5rem;
}

.blog-compact__title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
  margin: 0;
  transition: color 0.2s;
}

.blog-compact:hover .blog-compact__title {
  color: var(--color-surface-tint);
}

.blog-compact__meta {
  font-size: 0.75rem;
  color: var(--color-secondary);
  margin-top: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/* App promo                                                                  */
/* -------------------------------------------------------------------------- */

.app-promo {
  padding-bottom: 60px;
}

.app-promo__panel {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  color: var(--color-on-primary);
}

.app-promo__decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-20deg) translateX(8rem);
  pointer-events: none;
}

.app-promo__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
}

@media (min-width: 1024px) {
  .app-promo__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 3rem;
  }
}

.app-promo__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: #fff;
}

.app-promo__subtitle {
  margin: 0 0 1.2rem;
  color: #b5bac3;
  max-width: 34rem;
}

.app-promo__list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
}

.app-promo__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-blue-100);
}

.app-promo__list .material-symbols-outlined {
  color: var(--color-surface-tint);
}

.app-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.app-promo__social-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack__item {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #f8fafc;
  margin-left: -0.75rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.avatar-stack__item:first-child {
  margin-left: 0;
}

.avatar-stack__item--n1 {
  background: linear-gradient(135deg, #fb7185, #e11d48);
}
.avatar-stack__item--n2 {
  background: linear-gradient(135deg, #60a5fa, #1d4ed8);
}
.avatar-stack__item--n3 {
  background: linear-gradient(135deg, #34d399, #059669);
}

.app-promo__social-text {
  font-size: 0.875rem;
  color: #a3a3a3;
  font-weight: 500;
  margin-left: 0.5rem;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup__frame {
  width: 16rem;
  height: 535px;
  border-radius: 3rem;
  /* border: 8px solid var(--color-slate-800); */
  /* background: var(--color-slate-900); */
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35); */
}

@media (min-width: 1024px) {
  .phone-mockup__frame {
    width: 20rem;
  }
}

.phone-mockup__notch {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* right: 0; */
  /* height: 1.5rem; */
  /* background: var(--color-slate-800); */
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
}

.phone-mockup__notch-bar {
  width: 4rem;
  height: 0.75rem;
  background: #000;
  border-radius: var(--radius-pill);
}

.phone-mockup__frame > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* opacity: 0.6; */
}

.phone-mockup__overlay {
  /* position: absolute; */
  /* inset: 0; */
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: flex-end; */
  /* padding: 1.5rem; */
  /* background: linear-gradient(to top, rgba(0, 30, 64, 0.9), transparent); */
}

.phone-mockup__skeleton {
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

.phone-mockup__skeleton--short {
  width: 75%;
  margin-bottom: 1.5rem;
}

.phone-mockup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.phone-mockup__tile {
  height: 3rem;
  border-radius: var(--radius-xl);
}

.phone-mockup__tile--primary {
  background: var(--color-surface-tint);
}

.phone-mockup__tile--muted {
  background: rgba(255, 255, 255, 0.1);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
  background: var(--color-slate-50);
  border-top: 1px solid var(--color-slate-200);
  width: 100%;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.site-footer__brand {
  grid-column: span 2;
}

.site-footer__logo {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.site-footer__about {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  line-height: 1.65;
  max-width: 24rem;
  margin-bottom: 2rem;
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-row a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-container-high);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-400);
  text-decoration: none;
  transition: color 0.2s;
}

.social-row a:hover {
  color: var(--color-primary);
}

.site-footer h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1.5rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 1rem;
}

.site-footer__link {
  font-size: 0.875rem;
  color: var(--color-slate-500);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__link:hover {
  color: #f5f5f5;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer__disclaimer{
   max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  padding-bottom: 0;
}
.site-footer__disclaimer p,.site-footer__disclaimer strong{
      font-size: 0.875rem;
    color: var(--color-slate-600);
    line-height: 1.65;
     font-weight: normal !important;
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--color-slate-200);
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
  }
}

.site-footer__legal {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  margin: 0;
}

.site-footer__badges {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 5px;
  align-items: center;
  position: absolute;
  right: 7%;
}
.site-footer__badges img{width: 30px;}
.site-footer__badges span {
  font-size: 0.75rem;
  color: var(--color-slate-400);
  font-size: 0.875rem;
  color: var(--color-slate-600);
  margin: 0;
}

/* -------------------------------------------------------------------------- */
/* Blogs section header                                                       */
/* -------------------------------------------------------------------------- */

.blogs-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.blogs-head .heading {
  margin: 0;
}

.section-link {
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgba(0, 30, 64, 0.15);
  transition: text-decoration-color 0.2s;
}

.section-link:hover {
  text-decoration-color: var(--color-primary);
}

/* -------------------------------------------------------------------------- */
/* Section title block (simple)                                               */
/* -------------------------------------------------------------------------- */

.section-title-block {
  margin-bottom: 4rem;
}

.section-title-block h2 {
  margin: 0 0 0.5rem;
}

.analysis-section-title {
  margin-bottom: 0.5rem;
}

.analysis-head {
  margin-bottom: 2rem;
}

.analysis-head .text-muted {
  max-width: 42rem;
}

/* -------------------------------------------------------------------------- */
/* Modal                                                                       */
/* -------------------------------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 28rem);
  margin: 8vh auto 0;
  background: var(--color-surface-container);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow-card);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 1px solid var(--color-outline-variant);
  background: var(--color-surface-container-high);
  color: var(--color-on-surface);
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal__qr-wrap {
  margin: 1rem 0 1.25rem;
  display: flex;
  justify-content: center;
}

.modal__qr {
  width: 220px;
  height: 220px;
  border-radius: 0.75rem;
  border: 1px solid var(--color-outline-variant);
  background: #fff;
  padding: 0.5rem;
}

.modal__cta {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

/* -------------------------------------------------------------------------- */
/* Blog Pages                                                                  */
/* -------------------------------------------------------------------------- */

.page-hero {
  padding: 2.5rem 0 1rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.page-title {
  margin: 0 0 0.6rem;
}

.page-subtitle {
  margin: 0;
  color: var(--color-secondary);
  max-width: 44rem;
}

.featured-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

.featured-card {
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-surface-container-lowest);
}

.featured-card__media {
  /*height: 253px;*/
  overflow: hidden;
}

.featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card__body {
  padding: 1.25rem;
}

.kicker {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-surface-tint);
  font-weight: 700;
}

.featured-card__title {
  margin: 0.6rem 0 0.5rem;
  font-size: 1.6rem;
}

.featured-card__excerpt {
  margin: 0;
  color: var(--color-secondary);
}

.mini-list {
  display: grid;
  gap: 1rem;
}

.mini-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0.8rem;
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface-container-lowest);
}

.mini-card img {
  margin: auto;
  width: 100%;
  /* height: 100%; */
  /* max-height: 160px; */
  /* object-fit: cover; */
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  /* margin-left: 10px; */
  margin: 10px;
}

.mini-card__body {
  padding: 0.75rem 0.75rem 0.75rem 0;
}

.mini-card__title {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}

.blog-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: minmax(0, 2fr) minmax(290px, 1fr);
    align-items: start;
  }
}

.post-list {
  display: grid;
  gap: 1rem;
}

.post-card {
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface-container-lowest);
}

@media (min-width: 768px) {
  .post-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

.post-card__media {
  height: 170px;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  padding: 1rem 1rem 1rem 0.2rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: var(--color-secondary);
}

.author-share {
  margin: 0.95rem 0 1.1rem;
  padding: 0.8rem;
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  background: var(--color-surface-container);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem 1rem;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.author-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--color-surface-container-high);
  border: 1px solid var(--color-outline-variant);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.author-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.author-role {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  color: var(--color-secondary);
}

.share-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-label {
  font-size: 0.78rem;
  color: var(--color-secondary);
}

.share-icons {
  display: flex;
  gap: 0.4rem;
}

.share-icons a {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--color-outline-variant);
  background: var(--color-surface-container-high);
  color: var(--color-on-surface);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.post-card__title {
  margin: 0.45rem 0;
  font-size: 1.15rem;
}

.post-card__excerpt {
  margin: 0 0 0.7rem;
  color: var(--color-secondary);
  line-height: 1.55;
}

.daily-update-feed {
  display: grid;
  gap: 3rem;
}

.daily-date-group {
  /* border: 1px solid rgba(255, 255, 255, 0.07); */
  /* border-radius: 1rem; */
  /* background: linear-gradient(165deg, #0f131b 0%, #0b0f16 100%); */
  /* padding: 0.9rem; */
  /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); */
}

.daily-date-ribbon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.daily-date-ribbon__tag {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.92rem 0 0.82rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1e2a12;
  background: linear-gradient(135deg, #daa520 0%, #b38511 100%);
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 8% 50%);
  text-transform: uppercase;
}

.daily-date-ribbon__line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgb(90 90 90 / 36%), rgb(75 75 75 / 5%));
}

.daily-date-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .daily-date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.daily-update-card {
  border: 1px solid #1b1b1b;
  border-radius: 0.82rem;
  background: #050505;
  padding: 0.78rem;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.daily-update-card--morning {
  border-color: rgba(233, 199, 77, 0.36);
}

.daily-update-card--evening {
  border-color: rgba(132, 118, 255, 0.36);
}

.daily-update-card--empty {
  opacity: 0.72;
}

.daily-update-card:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 218, 230, 0.5);
}

.daily-update-card__thumb {
  width: 116px;
  height: 116px;
  border-radius: 0.64rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2030;
}

.daily-update-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daily-update-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1d2434 0%, #171d2b 100%);
  color: #dce3ef;
}

.daily-update-card__thumb-placeholder .material-symbols-outlined {
  font-size: 1.85rem;
}

.daily-update-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.daily-update-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: #aab4c7;
  font-size: 0.75rem;
}

.daily-update-card__slot {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  border: 1px solid #434f63;
  background: #171f2f;
  color: #e3e9f4;
  font-weight: 700;
}

.daily-update-card__dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  display: inline-block;
}

.daily-update-card__dot--morning {
  background: #f2c84d;
  box-shadow: 0 0 0 3px rgba(242, 200, 77, 0.22);
}

.daily-update-card__dot--evening {
  background: #8792ff;
  box-shadow: 0 0 0 3px rgba(135, 146, 255, 0.22);
}

.daily-update-card__slot--morning {
  border-color: rgba(242, 200, 77, 0.42);
}

.daily-update-card__slot--evening {
  border-color: rgba(135, 146, 255, 0.42);
}

.daily-update-card__title {
  margin: 0 0 0.36rem;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 700;
  color: #f3f6fc;
}

.daily-update-card__excerpt {
  margin: 0 0 0.55rem;
  color: #b4bed1;
  line-height: 1.58;
  font-size: 13px;
}

.daily-update-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  margin-top: auto;
  font-weight: 700;
  color: #f0f4ff;
  text-decoration: none;
  font-size: 11px;
}

.daily-update-card__readmore .material-symbols-outlined {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.daily-update-card__readmore:hover .material-symbols-outlined {
  transform: translateX(2px);
}

@media (max-width: 640px) {
  .daily-update-card {
    grid-template-columns: 1fr;
  }

  .daily-update-card__thumb {
    width: 100%;
    height: 162px;
  }
}

.analysis-pagination-meta {
  margin: 0.4rem 0 0.75rem;
  color: #a8afb9;
  font-size: 0.86rem;
}

.custom-pagination nav {
  width: 100%;
}

.custom-pagination .pagination {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.custom-pagination .page-item {
  margin: 0;
}

.custom-pagination .page-link {
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.78rem;
  border-radius: 0.34rem;
  border: 1px solid #3a3d42;
  background: #0f1012;
  color: #e2e6ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}

.custom-pagination .page-link:hover {
  border-color: #a8afbb;
  color: #fff;
}

.custom-pagination .page-item.active .page-link {
  background: #1a1c21;
  border-color: #d3d7df;
  color: #fff;
}

.custom-pagination .page-item.disabled .page-link {
  opacity: 0.45;
  pointer-events: none;
}

.sidebar-box {
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  background: var(--color-surface-container-lowest);
  padding: 1rem;
  margin-bottom: 1rem;
}

.sidebar-title {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list a {
  text-decoration: none;
  color: var(--color-on-surface);
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--color-outline-variant);
  border-radius: 999px;
  background: var(--color-surface-container);
}

/* -------------------------------------------------------------------------- */
/* Contact Page                                                               */
/* -------------------------------------------------------------------------- */

.contact-page {
  padding-top: 2.2rem;
}

.contact-layout,.founder-layout {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.founder-profile__portrait {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(240, 180, 41, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow: var(--shadow-card);
  /* aspect-ratio: 4 / 5; */
  min-height: 320px;
}

.founder-profile__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-profile__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1.25rem;
  /* border: 1px solid rgba(255, 255, 255, 0.06); */
  /* border-radius: 1.5rem; */
  /* background:
    radial-gradient(circle at top right, rgba(56, 126, 209, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(13, 13, 15, 0.98), rgba(8, 8, 10, 0.98)); */
  /* box-shadow: var(--shadow-card); */
}

.founder-profile__eyebrow {
  margin: 0;
  color: var(--bs-theme);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-profile__name {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 42px;
  line-height: 1.05;
  color: #f8fafc;
  font-weight: normal;
  text-transform: uppercase;
}

.founder-profile__role {
  margin: 0;
  color: #a7b0be;
  font-size: 1rem;
}

.founder-profile__quote {
  margin: 0;
  padding: 0;
  border: 0;
  background: #1a1a1a;
  padding: 10px;
  border-left: #cda520 solid 4px;
  border-radius: 10px;
  font-style: italic;
}

.founder-profile__quote p {
  margin: 0;
  max-width: 44rem;
  color: #eef2f7;
  font-size: 1.04rem;
  line-height: 1.75;
  font-weight: 500;
}

.founder-profile__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding-top: 0.15rem;
}

.founder-profile__social-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #b5bdca;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.founder-profile__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.founder-profile__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.4rem;
}

.founder-profile__fact {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.founder-profile__fact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--bs-theme);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.founder-profile__fact-icon .material-symbols-outlined {
  font-size: 1.25rem;
}

.founder-profile__fact-label {
  margin: 0;
  color: #aab3c0;
  font-size: 14px;
}

.founder-profile__fact-value {
  margin: 0.2rem 0 0;
  color: #f6f8fb;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.founder-showcase {
  padding-top: 0;
}

.founder-showcase__grid {
  display: grid;
  gap: 1.25rem;
}

.founder-showcase__card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: radial-gradient(circle at top right, rgba(44, 58, 84, 0.26), transparent 34%), linear-gradient(180deg, rgb(0 0 0 / 98%), rgb(75 75 75 / 98%));
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}

.founder-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #b6b6b6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-showcase__eyebrow .material-symbols-outlined {
  font-size: 1rem;
}

.founder-showcase__title {
  margin: 0.7rem 0 0;
  font-family: var(--font-headline);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: #f5f8ef;
  font-weight: normal;
}

.founder-showcase__lead {
  margin: 0.65rem 0 0;
  max-width: 46rem;
  color: #a7b1c0;
  font-size: 13px;
  line-height: 1.7;
}

.founder-timeline {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.founder-timeline__item {
  position: relative;
  padding: 0 0 1.4rem 2.2rem;
}

.founder-timeline__item::before {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.45rem;
  bottom: -0.15rem;
  width: 1px;
  background: rgba(223, 232, 193, 0.18);
}

.founder-timeline__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: #dfe8c1;
  box-shadow: 0 0 0 4px rgba(223, 232, 193, 0.12);
}

.founder-timeline__date {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.2rem 0.6rem;
  border-radius: 0.35rem;
  background: #1c2322;
  color: #c8d2b0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-timeline__heading {
  margin: 0.7rem 0 0.45rem;
  color: #edf2f5;
  font-size: 1.1rem;
  line-height: 1.35;
}

.founder-timeline__text {
  margin: 0;
  color: #8b8b8b;
  font-size: 13px;
  line-height: 1.7;
}

.founder-timeline__item[hidden] {
  display: none;
}

.founder-timeline__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.1rem;
  padding: 0;
  border: 0;
  appearance: none;
  font: inherit;
  background: transparent;
  color: #d8e6a6;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
}

.founder-timeline__toggle .material-symbols-outlined {
  font-size: 1.15rem;
}

.founder-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.founder-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  font: inherit;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  aspect-ratio: 1 / 1;
}

.founder-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.28s ease;
}

.founder-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: background 0.24s ease, opacity 0.24s ease;
}

.founder-gallery__overlay-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f6f6f6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.founder-gallery__item:hover img,
.founder-gallery__item:focus-visible img {
  transform: scale(1.06);
}

.founder-gallery__item:hover .founder-gallery__overlay,
.founder-gallery__item:focus-visible .founder-gallery__overlay {
  background: rgba(0, 0, 0, 0.68);
  opacity: 1;
}

.founder-gallery__item:focus-visible {
  outline: 2px solid rgba(216, 230, 166, 0.75);
  outline-offset: 2px;
}

.founder-lightbox.modal {
  z-index: 130;
}

.founder-lightbox .modal__dialog {
  width: min(92vw, 62rem);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: #08090b;
  overflow: hidden;
}

.founder-lightbox__dialog {
  position: relative;
}

.founder-lightbox__close {
  z-index: 2;
}

.founder-lightbox__title {
  margin: 0 3rem 1rem 0;
  color: #f5f8ef;
  font-family: var(--font-headline);
  font-size: 1.35rem;
}

.founder-lightbox__image {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #000;
}

.founder-lightbox__caption {
  margin: 0.8rem 0 0;
  color: #a9b2c0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-info-panel {
  border: 1px solid var(--color-outline-variant);
  border-radius: 1rem;
  background: #0c0d0f;
  padding: 1rem;
}

.contact-info-panel__title {
  margin: 0;
  font-size: 1.35rem;
}

.contact-info-panel__text {
  margin: 0.6rem 0 0;
  color: #a8afb9;
  font-size: 0.9rem;
}

.contact-info-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.72rem;
  border: 1px solid #26282c;
  border-radius: 0.75rem;
  background: #111317;
}

.contact-info-item .material-symbols-outlined {
  color: #d0ad42;
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.contact-info-item__label {
  margin: 0;
  color: #939ba7;
  font-size: 0.78rem;
}

.contact-info-item__value {
  margin: 0.2rem 0 0;
  color: #ecf0f5;
  font-size: 0.9rem;
}

.contact-card {
  max-width: 100%;
  border: 1px solid #1f1f1f;
  border-radius: 1.25rem;
  background: #0c0d0f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.contact-card__intro {
  padding: 1.3rem 1rem 0.8rem;
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
}

.contact-card__title {
  margin: 0;
  font-size: 1.45rem;
}

.contact-card__icon-wrap {
  width: 4.1rem;
  height: 4.1rem;
  margin: 0.95rem auto 0.8rem;
  border-radius: 1rem;
  border: 1px solid #5f4d1f;
  background: #1a1710;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d0ad42;
}

.contact-card__icon-wrap .material-symbols-outlined {
  font-size: 2rem;
}

.contact-card__text {
  margin: 0.4rem 0 0;
  color: #b9bec8;
  font-size: 0.94rem;
}

.contact-card__notice {
  margin: 0.9rem 0 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid #262626;
  border-radius: 0.75rem;
  background: #111214;
  color: #9fa6b2;
  font-size: 0.82rem;
}

.contact-form {
  padding: 1rem;
}

.contact-form__heading {
  margin: 0;
  font-family: var(--font-headline);
  color: #f0f2f5;
  font-size: 1.2rem;
}

.contact-form__heading--space {
  margin-top: 1.05rem;
}

.contact-form__field {
  margin-top: 0.8rem;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.4rem;
  color: #c8ccd4;
  font-size: 0.82rem;
}

.contact-form__field label span {
  color: #e06f6f;
}

.contact-form__field input {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid #2a2a2a;
  background: #17181b;
  color: #f5f5f5;
  padding: 0.72rem 0.78rem;
  outline: none;
}

.contact-form__field input::placeholder {
  color: #81858e;
}

.contact-form__field input:focus {
  border-color: #d0ad42;
  box-shadow: 0 0 0 3px rgba(208, 173, 66, 0.16);
}

.contact-form__field--captcha {
  margin-top: 1rem;
}

.contact-captcha-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.contact-captcha-image {
  width: 170px;
  height: 52px;
  border-radius: 0.62rem;
  border: 1px solid #353739;
  background: #101114;
}

.contact-captcha-refresh {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid #3a3d40;
  background: #17191d;
  color: #cfd4dd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-captcha-refresh:hover {
  border-color: #d0ad42;
  color: #f3d268;
}

.contact-form__subhead {
  margin: 0.7rem 0 0.45rem;
  color: #9ea4af;
  font-size: 0.84rem;
}

.contact-form__subhead--space {
  margin-top: 1rem;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.chip-option {
  cursor: pointer;
}

.chip-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  min-width: 5.85rem;
  border: 1px solid #3b3c3f;
  border-radius: 0.62rem;
  background: #0f1012;
  color: #c7ccd3;
  font-size: 0.83rem;
  padding: 0.3rem 0.7rem;
}

.chip-grid--times .chip-option span {
  min-width: 8.6rem;
}

.chip-option input:checked + span {
  border-color: #d0ad42;
  color: #f3d268;
  background: #201a0e;
}

.contact-form__submit {
  width: 100%;
  margin-top: 1.4rem;
  border-radius: 0.7rem;
  border: 0;
  background: #d0ad42;
  color: #16120a;
  font-weight: 700;
  padding: 0.9rem 1rem;
}

.contact-form__submit:hover {
  filter: brightness(1.04);
}

.contact-form__helper {
  margin: 0.6rem 0 0;
  text-align: center;
  font-size: 0.83rem;
  color: #8e949f;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 1.25rem;
  }

  .founder-layout {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1.5fr);
    gap: 1.25rem;
    align-items: stretch;
  }

  .contact-info-panel {
    padding: 1.1rem;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
  }

  .contact-form {
    padding: 1.2rem 1.35rem 1.3rem;
  }

  .contact-card__intro {
    padding: 1.35rem 1.35rem 0.95rem;
  }

  .founder-showcase {
    padding-top: 0.5rem;
  }

  .founder-showcase__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  }
}

@media (max-width: 767px) {
  .founder-profile__portrait {
    min-height: 260px;
  }

  .founder-profile__facts {
    grid-template-columns: 1fr;
  }

  .founder-profile__fact {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .founder-gallery {
    grid-template-columns: 1fr;
  }

  .founder-showcase__card {
    padding: 1rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Home glossy + engagement                                                   */
/* -------------------------------------------------------------------------- */

.home-page .category-card,
.home-page .ipo-card,
.home-page .analysis-featured,
.home-page .edge-item,
.home-page .blog-featured,
.home-page .blog-compact,
.home-page .app-promo__panel {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-page .category-card:hover,
.home-page .ipo-card:hover,
.home-page .analysis-featured:hover,
.home-page .edge-item:hover,
.home-page .blog-featured:hover,
.home-page .blog-compact:hover,
.home-page .app-promo__panel:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.home-page .category-card {
  position: relative;
  /* overflow: hidden; */
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  text-align: left;
}

.home-page .category-card::before {
  /* content: ""; */
  position: absolute;
  top: -34%;
  left: -18%;
  width: 88%;
  height: 72%;
  background: linear-gradient(130deg, rgb(0 0 0), rgb(0 0 0 / 2%));
  transform: rotate(-8deg);
  pointer-events: none;
}

.home-page .category-card::after {
  content: "";
  position: absolute;
  top: -62%;
  left: -70%;
  width: 86%;
  height: 210%;
  background: linear-gradient(98deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: rotate(8deg);
  opacity: 0;
  transition: opacity 0.35s ease, left 0.55s ease;
  pointer-events: none;
}

.home-page .category-card:hover::after {
  left: 92%;
  opacity: 0;
}
.home-page .category-card:hover .category-card__icon::before {
    transform: scale(1);
    background: var(--offer-color, #ffffff);
}
.home-page .category-tab--active {
  border-color: var(--offer-color, rgb(244, 196, 48));
  /* box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45), 0 22px 40px rgb(0 0 0 / 65%); */
  text-align: left;
}

.home-page .ipo-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015) 42%, rgba(255, 255, 255, 0.01)), #111111;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
}


.home-engagement {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}

.home-testimonials {
  margin-bottom: 3.5rem;
}

.home-testimonials__head {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.home-testimonials__head .heading {
  margin: 0;
  font-weight: 500;
}

.home-testimonials__head .text-lead {
  margin: 0.7rem auto 0;
  max-width: 48rem;
}

.home-testimonials__slider {
  padding: 0 2.5rem;
}

.testimonial-card {
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  min-height: 100%;
  text-align: center;
}

.testimonial-card__bubble {
  position: relative;
  min-height: 210px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 35px rgba(0, 0, 0, 0.24);
  background: #000000;
}

.testimonial-card__bubble::after {
  background: #000;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transform: translateX(-50%) rotate(45deg);
}

.testimonial-card__bubble p {
  margin: 0;
  color: #f4f4f6;
  font-size: 12px;
  line-height: 1.75;
}

.testimonial-card__link {
  position: relative;
  z-index: 1;
  align-self: center;
  color: var(--color-surface-tint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.testimonial-card__person {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding-top: 0.3rem;
}

.testimonial-card__avatar {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 800;
}
.testimonial-card__avatar img{
  width: 74px;
  height: 74px;
  border-radius: 50%;
}
.testimonial-card__person p {
  margin: 0;
  color: var(--color-on-surface-variant);
  font-size: 0.92rem;
  line-height: 1.45;
}

.engagement-panel {
  border: 1px solid #262a31;
  border-radius: 1.25rem;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(20, 24, 34, 0.95), rgba(8, 10, 14, 0.96)), radial-gradient(circle at 16% 12%, rgba(85, 160, 255, 0.22), transparent 46%), radial-gradient(circle at 88% 82%, rgba(216, 177, 74, 0.2), transparent 42%);
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
}

.engagement-panel__intro p {
  margin: 0.5rem 0 0;
  max-width: 52rem;
}

.engagement-stats {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.engagement-stat {
  border: 1px solid #2c3139;
  border-radius: 0.9rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.02);
}

.engagement-stat__value {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.7rem;
  font-weight: 800;
  color: #e8edf6;
}

.engagement-stat__label {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  color: #a5afbf;
}

.engagement-panel__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .engagement-panel {
    padding: 1.45rem;
  }

  .engagement-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-testimonials__slider {
    padding: 0 2.1rem;
  }

  .testimonial-card__bubble {
    min-height: 190px;
    padding: 1.25rem 1rem;
  }
}

.article-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: minmax(0, 2fr) minmax(290px, 1fr);
    align-items: start;
  }
}

.article-card {
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-2xl);
  background: var(--color-surface-container-lowest);
  overflow: hidden;
}

.article-cover {
  /* height: 320px; */
}

.article-cover img {
  width: 100%;
  /* height: 100%; */
  /* object-fit: cover; */
}

.article-body {
  padding: 1.25rem;
}

.article-body h1 {
  margin: 0.5rem 0 0.8rem;
}

.prose h2 {
  margin: 1.2rem 0 0.45rem;
  font-size: 1.1rem;
}

.prose p,
.prose li {
  color: var(--color-on-surface-variant);
  line-height: 1.65;
}

.prose ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.2rem;
}

/* Error Pages */
.error-page {
  /* --error-bg: #050a14; */
  --error-text: #e6eefb;
  --error-muted: #a9b8d0;
  --error-accent: #3bd98f;
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-headline);
  color: var(--error-text);
  display: grid;
  place-items: center;
  padding: 24px;
}

.error-shell {
  width: min(980px, 100%);
  border: 1px solid rgba(146, 171, 209, 0.2);
  /* background: linear-gradient(180deg, rgba(14, 26, 44, 0.92), rgba(8, 15, 27, 0.96)); */
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  overflow: hidden;
}

.error-shell--redirect {
  max-width: 560px;
  grid-template-columns: 1fr;
}

.error-page--500 {
  /* background:
    radial-gradient(820px 520px at 16% -22%, rgba(255, 84, 84, 0.22), transparent 72%),
    radial-gradient(860px 560px at 94% 112%, rgba(72, 127, 255, 0.24), transparent 70%),
    #060912; */
}

.error-shell--500 {
  align-items: stretch;
}

.error-title {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.error-code {
  margin: 0;
  color: var(--bs-theme);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.82rem;
}

.error-copy {
  margin: 0 0 24px;
  color: var(--error-muted);
  font-size: 1.03rem;
  max-width: 44ch;
}

.error-copy a {
  color: #d4e3ff;
}

.error-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.error-page .btn--ghost {
  background: rgba(130, 158, 196, 0.08);
  border-color: rgba(130, 158, 196, 0.28);
  color: var(--error-text);
}

.code-break-wrap {
  position: relative;
  border: 1px solid rgba(157, 178, 214, 0.24);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 20, 35, 0.95), rgba(9, 12, 22, 0.98));
  padding: 14px;
  min-height: 320px;
  overflow: hidden;
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
}

.code-break-panel {
  height: 100%;
  border: 1px solid rgba(155, 173, 205, 0.2);
  border-radius: 12px;
  background: #0a1221;
  overflow: hidden;
  position: relative;
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
}

.code-break-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(154, 175, 205, 0.16);
  background: rgb(5 5 5);
}

.code-break-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

.code-break-topbar span:nth-child(1) { background: #ff5b6a; }
.code-break-topbar span:nth-child(2) { background: #ffc95f; }
.code-break-topbar span:nth-child(3) { background: #59db9d; }

.code-break-topbar p {
  margin: 0 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #98aaca;
}

.code-break-body {
  padding: 14px 14px 18px;
  position: relative;
}

.code-line {
  margin: 0 0 8px;
  color: #cdd8ee;
  font-family: "Roboto Mono", "Consolas", monospace;
  font-size: 0.8rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.code-line--warn {
  color: #ffce74;
}

.code-line--error {
  color: #ff7f95;
  animation: codeLineGlitch 2.1s infinite steps(2, end);
}

.code-line--muted {
  color: #8b9aba;
  margin-top: 16px;
}

.code-break-glitch {
  position: absolute;
  left: -8%;
  right: -8%;
  height: 72px;
  top: 46%;
  background: linear-gradient(180deg, rgba(255, 95, 120, 0), rgba(255, 95, 120, 0.14), rgba(255, 95, 120, 0));
  mix-blend-mode: screen;
  animation: codeGlitchScan 2.8s infinite;
}

.code-break-panel::before,
.code-break-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.code-break-panel::before {
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(129, 151, 190, 0.08) 0,
      rgba(129, 151, 190, 0.08) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.35;
}

.code-break-panel::after {
  border: 1px solid rgba(255, 105, 126, 0.14);
  animation: codeFramePulse 1.6s infinite ease-in-out;
}

.chart-wrap {
  position: relative;
  border: 1px solid rgba(142, 170, 208, 0.2);
  border-radius: 18px;
  background: var(--color-surface-container-lowest);
  padding: 16px;
  min-height: 320px;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 16px;
  border-radius: 12px;
  background-image:
    linear-gradient(rgba(147, 170, 208, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 170, 208, 0.11) 1px, transparent 1px);
  background-size: 100% 54px, 52px 100%;
}

.candles {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
}

.candle {
  width: 18px;
  height: var(--h, 80px);
  position: relative;
  border-radius: 5px;
  transform-origin: bottom;
  animation: errorCandlePulse 2.6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.candle::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(var(--h, 80px) + 28px);
  bottom: -14px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.55;
}

.candle--up {
  background: rgba(59, 217, 143, 0.85);
  color: rgba(59, 217, 143, 0.8);
  box-shadow: 0 0 14px rgba(59, 217, 143, 0.28);
}

.candle--down {
  background: rgba(255, 94, 118, 0.82);
  color: rgba(255, 94, 118, 0.75);
  box-shadow: 0 0 12px rgba(255, 94, 118, 0.24);
}

.trend {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.trend polyline {
  fill: none;
  stroke: #65a8ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(101, 168, 255, 0.45));
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: errorDrawLine 2.7s linear infinite;
}

.ticker {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 14px;
  display: flex;
  justify-content: space-between;
  color: #b4c6e6;
  font-size: 0.75rem;
  z-index: 4;
  opacity: 0.9;
}

.ticker span:last-child {
  color: var(--error-accent);
  font-weight: 700;
  animation: errorBlink 1.1s ease-in-out infinite;
}

@keyframes errorCandlePulse {
  0%, 100% { transform: scaleY(0.92); opacity: 0.85; }
  50% { transform: scaleY(1.06); opacity: 1; }
}

@keyframes errorDrawLine {
  0% { stroke-dashoffset: 520; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -520; }
}

@keyframes errorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes codeLineGlitch {
  0%, 100% { transform: translateX(0); text-shadow: none; }
  20% { transform: translateX(1px); text-shadow: -1px 0 #5ad6ff; }
  40% { transform: translateX(-1px); text-shadow: 1px 0 #ff6582; }
  60% { transform: translateX(1px); text-shadow: -1px 0 #ff6582; }
  80% { transform: translateX(-1px); text-shadow: 1px 0 #5ad6ff; }
}

@keyframes codeGlitchScan {
  0% { transform: translateY(-120%); opacity: 0; }
  20% { opacity: 0.48; }
  60% { opacity: 0.26; }
  100% { transform: translateY(170%); opacity: 0; }
}

@keyframes codeFramePulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.65; }
}

@media (max-width: 900px) {
  .error-shell {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .chart-wrap {
    min-height: 270px;
  }

  .candles {
    height: 190px;
  }

  .candle {
    width: 15px;
  }

  .code-break-wrap {
    min-height: 260px;
  }

  .code-line {
    font-size: 0.75rem;
  }
}
.si-widget-send-button {
    margin: 0 0 25px 0 !important;
    position: fixed !important;
    z-index: 20000 !important;
    bottom: 0px ;
    text-align: center !important;
    height: 55px;
    min-width: 55px;
    border-radius: 100px;
    visibility: visible;
    transition: none !important;
    background-color: #25d366;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
    right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.si-chat-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20000 !important;
    position: fixed !important;
    margin-bottom: 75px;
    bottom: 25px !important;
    right: 25px;
}
.si-chat-bubble-closed {
    display: none;
}
.si-chat-bubble-close-button
 {
    height: 20px;
    min-width: 20px;
    background: #525252;
    border-radius: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}
.si-chat-bubble-text {
    font-family: Gilroy, Roboto, sans-serif !important;
    background: #151515;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .si-widget-send-button{
    bottom: 45px;
  }
  .site-header__nav{
    padding: 1rem 1.5rem !important;
  }
  .site-header__nav .btn--primary{
    display: none !important;
  }
  .site-footer__legal{
    max-width: 270px;
    text-align: center;
  }
} 
.w-16{
      width: 135px;
}
.positions-table{width:100%;border-collapse:collapse;font-size:12px}
  .positions-table th{text-align:left;padding:10px 12px;font-size:10px;font-weight:600;text-transform:uppercase;
                      letter-spacing:.8px;color:var(--text3);border-bottom:1px solid var(--border);white-space:nowrap}
  .positions-table td{padding:10px 12px;border-bottom:1px solid rgba(42,47,66,.5);
                      font-family:'JetBrains Mono',monospace;font-size:12px;white-space:nowrap}
  .positions-table tr:last-child td{border-bottom:none}
  .positions-table tr:hover td{background:var(--surface2)}
  .name-cell{font-family:'DM Sans',sans-serif!important;font-weight:500;font-size:12px!important}
  .pnl-cell{font-weight:700;font-size:13px!important}
  .pnl-cell.profit{color:var(--profit)} .pnl-cell.loss{color:var(--loss)}
  

  .section-label{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;
                 color:var(--text3);margin:20px 0 12px;border-left:2px solid var(--accent);padding-left:8px}
.chart-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
}

.summary-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: 980px;
}

.summary-panel {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.summary-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.summary-panel__title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ecf1fb;
  line-height: 1.2;
}

.summary-panel__title span {
  color: #aab4c8;
  font-weight: 500;
}

.summary-panel__select {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0 0.75rem;
  border: 1px solid rgba(58, 67, 90, 0.95);
  border-radius: 8px;
  background: rgba(20, 24, 35, 0.95);
  color: #bfc8d7;
  font-size: 0.78rem;
  cursor: pointer;
}

.summary-panel__select .material-symbols-outlined {
  font-size: 1rem;
}

.summary-panel__canvas-wrap {
  position: relative;
  height: 150px;
}

.summary-panel__canvas-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.summary-panel--distribution .summary-panel__canvas-wrap {
  height:150px;
}

.summary-panel__distribution {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.summary-panel__canvas-wrap--donut {
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-panel__donut-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  color: #dfe5ef;
}

.summary-panel__donut-label span {
  font-size: 0.78rem;
  color: #98a4b8;
}

.summary-panel__donut-label strong {
  font-size: 1.25rem;
  line-height: 1.1;
}

.summary-panel__legend {
  display: grid;
  gap: 0.85rem;
  min-width: 170px;
}

.summary-legend-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #c9d2e0;
  font-size: 0.82rem;
}

.summary-legend-item strong {
  margin-left: auto;
  color: #eef3fb;
  font-size: 0.84rem;
}

.summary-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 10px;
}

.summary-legend-dot--profit {
  background: #30c85b;
  box-shadow: 0 0 0 3px rgba(48, 200, 91, 0.15);
}

.summary-legend-dot--loss {
  background: #ef5961;
  box-shadow: 0 0 0 3px rgba(239, 89, 97, 0.15);
}

@media (max-width: 1200px) {
  .summary-dashboard {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .summary-panel__distribution {
    grid-template-columns: 1fr;
  }

  .summary-panel__legend {
    min-width: 0;
  }
}

#summary {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #343434 #090909;
}

#summary::-webkit-scrollbar {
  height: 10px;
}

#summary::-webkit-scrollbar-track {
  background: #090909;
  border-radius: 999px;
}

#summary::-webkit-scrollbar-thumb {
  background: #343434;
  border-radius: 999px;
  border: 2px solid #090909;
}

#summary::-webkit-scrollbar-thumb:hover {
  background: #4a4a4a;
}

#summary::-webkit-scrollbar-corner {
  background: #090909;
}
.badge-call{background:var(--tag-call);color:var(--accent2);font-size:10px;font-weight:700;padding:3px 7px;border-radius:4px;letter-spacing:.5px}
  .badge-put{background:var(--tag-put);color:var(--yellow);font-size:10px;font-weight:700;padding:3px 7px;border-radius:4px;letter-spacing:.5px}
  .type-badge{display:inline-block;padding:2px 7px;border-radius:4px;font-size:10px;font-weight:700;letter-spacing:.5px;font-family:'DM Sans',sans-serif!important}
  .type-call{background:var(--tag-call);color:var(--accent2)}
  .type-put{background:var(--tag-put);color:var(--yellow)}
  .type-fut{background:rgba(155,140,255,.13);color:var(--purple)}
  .progress, .progress-stacked {
    --bs-progress-height: 0.5rem;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: var(--bs-secondary-bg);
    --bs-progress-border-radius: var(--bs-border-radius);
    --bs-progress-box-shadow: var(--bs-box-shadow-inset);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: #0d6efd;
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    height: var(--bs-progress-height);
    overflow: hidden;
    gap:4px;
    font-size: var(--bs-progress-font-size);
    background-color: var(--bs-progress-bg);
    border-radius: var(--bs-progress-border-radius);
}
.progress-stacked {
    background-color: rgb(19 22 30);
}
.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--bs-progress-bar-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-progress-bar-bg);
    transition: var(--bs-progress-bar-transition);
}

.progress-bar {
    color: #fff;
    background-color: var(--primary-color);
}.border {
    /* border: 1px solid var(--default-border) !important; */
}
.portpolio-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}
.rounded-1 {
    border-radius: 0.25rem !important;
}
.ps-3 {
    padding-left: 1rem !important;
}
.p-2 {
    padding: .5rem !important;
}
.portpolio-card.primary:before {
    background-color: rgba(var(--primary-rgb), 0.5);
}
.portpolio-card:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 19px;
    border-radius: 0.5rem;
    inset-inline-start: -2px;
}
.progress-stats
{
    display: grid;
    overflow: hidden;
    gap:4px;
    grid-template-columns: repeat(4, 1fr);
  }
  .mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
 .m-0 { margin: 0; }
.m-1 { margin: 1rem; }
.m-2 { margin: 2rem; }
.m-3 { margin: 3rem; }
.m-4 { margin: 4rem; }
.ms-1{margin-left: 5px;}
.chart-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}.chart-card-title {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.p-0{
  padding: 0 !important;
}
 .tabs{display:flex;gap:4px;margin-bottom:20px;border-bottom:1px solid var(--border)}
  .tab{
       padding:10px 18px;
       border-radius:8px 8px 0 0;
       font-size:13px;
       font-weight:600;
       cursor:pointer;
       color:var(--text2);
       background: #0f0f0f;
       border:none;
       border-bottom:2px solid transparent;
       transition:all .2s;
       display:flex;
       align-items:center;
       gap:6px
       }
  .tab:hover{color:var(--text);background:#272727}
  .tab.active{color: var(--color-on-surface);border-bottom-color: var(--bs-theme);background: #272727;}
  .tab-pnl{font-size:10px;font-family:'JetBrains Mono',monospace;font-weight:700;padding:2px 6px;border-radius:4px}
  .tab-pnl.profit{background:var(--profit-bg);color:var(--profit)}
  .tab-pnl.loss{background:var(--loss-bg);color:var(--loss)}
  .tab-content{display:none} .tab-content.active{display:block}
  .card.custom-card .card-body {
    padding: 1rem;
    color: #010101;
}
.main-banner-sub-card {
    background: radial-gradient(circle, rgb(33 33 33 / 80%) 2%, rgb(33 33 33 / 90%) 50%, rgb(33, 33, 33) 100%) !important;
    /* border-radius: 0.5rem 0.5rem 100% 100% !important; */
    z-index: 1;
    box-shadow: none;
    border: 0;
    position: relative;
}.text-center {
    text-align: center !important;
}.p-4 {
    padding: 0.5rem !important;
    display: flex;
    justify-content: space-between;
}.text-fixed-white {
    color: #fff !important;
}
.fw-title {
   font-weight: 500 !important;
   font-size: 18px;
   margin-top: 0px;
   color: var(--color-secondary);
   margin-bottom: 0;
}
.fw-subtitle
{
   font-weight: 500 !important;
   font-size: 18px;
   margin-top: 0px;
   color: #fff;
} 
td.material-symbols-outlined{font-size:15px;}
.arrow-up{font-size:15px} 
  
  .arrow-down{font-size:15px}
   #summaryGrid .card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:16px 18px;transition:border-color .2s}
     #summaryGrid .card:hover{border-color:var(--accent)}
     #summaryGrid .card-label{font-size:11px;font-weight:500;color:var(--text2);text-transform:uppercase;letter-spacing:.8px;margin-bottom:6px}
   #summaryGrid .card-value{font-size:22px;font-weight:700;font-family:'JetBrains Mono',monospace;line-height:1.1}
   #summaryGrid .card-value.profit{color:var(--profit)} .card-value.loss{color:var(--loss)}
   #summaryGrid .card-sub{font-size:11px;color:var(--text3);margin-top:4px}
   .summaryDetailGrid{
    display: grid;
    grid-template-columns: 292px 1fr;
    gap: 23px;
    margin-bottom: 30px;
    grid-auto-flow: column;
    flex-wrap: wrap;
   }

/* Archive panel */
.archive {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.05rem;
  /* border: 1px solid rgba(44, 54, 78, 0.95); */
  /* border-radius: 16px; */
  /* background:
    radial-gradient(circle at top left, rgba(48, 62, 96, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(14, 20, 32, 0.98), rgba(8, 12, 21, 0.98)); */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color .2s;
}

.archive__header {
  display: grid;
  gap: 0.9rem;
}

.archive__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f3f4f6;
  letter-spacing: -0.01em;
}

.archive__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
}

.archive__search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 35px;
  padding: 0 0.9rem;
  border: 1px solid rgba(68, 78, 103, 0.8);
  border-radius: 10px;
  background: rgb(24 24 24 / 88%);
  color: #8e97ab;
}

.archive__search .material-symbols-outlined {
  font-size: 1.15rem;
  color: #7d879c;
}

.archive__search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #e8ecf6;
  font-size: 0.92rem;
}

.archive__search input::placeholder {
  color: #768095;
}

.archive__filter {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(68, 78, 103, 0.8);
  border-radius: 10px;
  background: rgb(24 24 24 / 88%);
  color: #d7deea;
  cursor: pointer;
}

.archive__filter .material-symbols-outlined {
  font-size: 1.15rem;
}

.archive__body {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.archive__year {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.archive__toggle {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  color: #eef2fb;
  text-align: left;
  cursor: pointer;
}

.archive__toggle-icon {
  font-size: 1.1rem;
  transition: transform 0.18s ease, color 0.18s ease;
  color: #c6cedd;
  /* font-family: 'DM Sans', sans-serif !important; */
  font-weight: 500;
  font-size: 12px !important;
}

.archive__toggle-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: #eef2fb;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500;
  font-size: 12px !important;
}

.archive__year-toggle {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.archive__year-toggle .archive__toggle-label {
  font-size: 1.02rem;
}

.archive__month-toggle {
  padding-left: 0.8rem;
}

.archive__month-toggle--compact {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.archive__month-sum {
  font-size: 0.92rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500;
  font-size: 12px !important;
}

.archive__month-sum.profit,
.archive__day-value.profit {
  color: var(--profit);
}

.archive__month-sum.loss,
.archive__day-value.loss {
  color: var(--loss);
}

.archive__year-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 0.55rem;
  margin-left: 0.35rem;
  border-left: 1px solid rgba(95, 109, 139, 0.35);
}

.archive__month {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.archive__month-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-left: 0.75rem;
  padding-left: 0.95rem;
  border-left: 1px solid rgba(101, 117, 150, 0.3);
}

.archive__day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 34px;
  padding: 0.35rem 0.65rem 0.35rem 0.8rem;
  border-radius: 5px;
  color: #d4dae6;
  background: transparent;
}

.archive__day.is-active {
  background: linear-gradient(90deg, rgba(56, 96, 202, 0.92), rgba(33, 52, 125, 0.82));
  color: #f7faff;
  box-shadow: 0 10px 24px rgba(20, 35, 85, 0.35);
}

.archive__day-date {
  font-size: 12px;
  white-space: nowrap;
}

.archive__day-value {
  font-size: 12px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}

.archive__load-more {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(68, 78, 103, 0.55);
  border-radius: 10px;
  background: rgba(14, 18, 28, 0.35);
  color: #d8ddea;
  font-size: 0.96rem;
  cursor: pointer;
}

.archive__load-more-label {
  transition: opacity 0.2s ease;
}

.archive__load-more .material-symbols-outlined {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.archive__load-more.is-open .archive__load-more-icon {
  transform: rotate(180deg);
}

.archive__more-panel {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.38s ease, opacity 0.22s ease, transform 0.38s ease;
  will-change: max-height, opacity, transform;
}

.archive__more-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

.archive [hidden] {
  display: none !important;
}

.archive__toggle.is-expanded .archive__toggle-icon {
  color: #f3f4f6;
}

@media (max-width: 991px) {
  .summaryDetailGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .archive {
    padding: 0.95rem;
  }

  .archive__toolbar {
    grid-template-columns: 1fr;
  }

  .archive__filter {
    width: 100%;
  }

  .archive__day,
  .archive__toggle {
    gap: 0.35rem;
  }

  .archive__day {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive__day-value {
    align-self: flex-end;
  }
}
.w-auto{width:auto !important;}
.text-white{color:#fff !important;}
.flex{display: flex;gap:10px;flex-wrap: wrap;}
.flex .tag{
  border: #555555 solid 1px;
  /* padding: 5px; */
  /* border-radius: 20px; */
  text-transform: none;
}