/**
 * InStocks Ã¢â‚¬â€ version-2 stylesheet
 * Semantic classes + CSS variables (no utility framework)
 */

/* -------------------------------------------------------------------------- */
/* Design tokens                                                              */
/* -------------------------------------------------------------------------- */

: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;
}

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

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  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: 800;
  color: var(--color-primary);
  line-height: 1.15;
}

.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;
}

.text-accent {
  color: var(--color-surface-tint);
}

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

.text-lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--color-secondary);
  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);
}

.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);
  background: var(--color-secondary-container);
  color: var(--color-on-secondary-container);
  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: start;
  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;
}

.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: var(--color-on-surface);
  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;
}

.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;
}

/* -------------------------------------------------------------------------- */
/* 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);
}

.category-tab--active {
  outline: 1px solid var(--color-primary);
  box-shadow: var(--shadow-card);
}

.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) {
  .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: 1rem;
  border-radius: var(--radius-2xl);
  background: var(--color-surface-container-lowest);
  transition: box-shadow 0.2s;
  display: flex;
  gap: 20px;
}

.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);
}

.category-card__icon--secondary {
  background: #2d2d2d;
}

.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;
  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 {
  width: 100%;
  height: 100%;
  /* max-height: 95px; */
  object-fit: cover;
}

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

.mini-card__title {
  margin: 0.35rem 0 0;
  font-size: 1.4rem;
  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 {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.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;
  }

  .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;
  }
}

/* -------------------------------------------------------------------------- */
/* 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: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 26%, rgba(255, 255, 255, 0.01) 100%), #0e0e0e;
  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.42;
}

.home-page .category-tab--active {
  border-color: rgba(255, 255, 255, 0.62);
  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;
}

.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));
  }
}

.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;
}