@import "tailwindcss";

@theme {
  --color-ssg-red: #EC2024;
  --color-ssg-dark: #0B0F19;
  --color-ssg-dark2: #111827;
  --color-ssg-light: #F8FAFC;
  --color-ssg-grayText: #6B7280;
  --color-ssg-grayLight: #B8C0CC;
  --color-ssg-cyber: #5B2EFF;
  
  --font-heading: var(--font-plus-jakarta), sans-serif;
  --font-body: var(--font-inter), sans-serif;
  
  --shadow-premium: 0 10px 35px rgba(11, 15, 25, 0.08);
  --shadow-darkGlow: 0 0 40px rgba(236, 32, 36, 0.25);
}

body {
  font-family: var(--font-body);
  background-color: theme('colors.white');
  color: theme('colors.slate.900');
}

:root {
  --ssg-red: #ec2024;
  --ssg-dark: #0b0f19;
  --ssg-dark-2: #111827;
  --ssg-white: #ffffff;
  --ssg-light: #f8fafc;
  --ssg-gray-light: #b8c0cc;
  --ssg-gray-body: #6b7280;
  --ssg-cyber: #5b2eff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.header-shell {
  position: relative;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(236, 32, 36, 0.95), rgba(236, 32, 36, 0.45));
  box-shadow: 0 0 14px rgba(236, 32, 36, 0.65);
  transition: width 90ms linear;
}

.header-scrolled .header-shell {
  background: rgba(11, 15, 25, 0.84);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.nav-link {
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-service-active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--ssg-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.mobile-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.6rem;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 0.1rem);
  transform: translateY(-12px) scale(0.995);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 0.5rem;
}

.mega-menu.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.mega-menu-inner {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e3e8ef;
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.18);
  padding: 0.85rem;
}

.mega-content-wrap {
  padding: 0.35rem 0.6rem 0.35rem;
}

.mega-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  color: #111827;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e7ebf0;
}

.mega-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
  transition: opacity 140ms ease, transform 180ms ease;
}

.mega-content-grid.is-switching {
  opacity: 0;
  transform: translateY(8px);
}



.mega-item {
  border-radius: 0.9rem;
}

.mega-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e6eaf1;
  border-radius: 0.75rem;
  background: #fbfcfe;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.mega-link:hover {
  border-color: #f2a7a9;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.mega-item h3 {
  font-size: 0.92rem;
  line-height: 1.3;
  color: #111827;
}

.mega-item p {
  margin-top: 0.2rem;
  color: #4b5563;
  line-height: 1.35;
  font-size: 0.82rem;
}

.mega-link-cta {
  margin-top: auto;
  padding-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: #ec2024;
  font-size: 0.75rem;
  font-weight: 600;
}

.mega-link-cta i {
  font-size: 0.85rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 0.75rem;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  transition: transform 180ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease,
    box-shadow 220ms ease;
}

.btn-primary {
  background: var(--ssg-red);
  color: #fff;
  box-shadow: 0 10px 25px rgba(236, 32, 36, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #d9181d;
  box-shadow: 0 12px 26px rgba(236, 32, 36, 0.35);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.btn-primary i,
.btn-secondary i {
  font-size: 1rem;
}

.btn-outline-violet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.75rem;
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  color: #f8f7ff;
  border: 1px solid rgba(167, 120, 255, 0.95);
  background: rgba(96, 48, 191, 0.18);
  transition: transform 180ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.btn-outline-violet i {
  color: #e2d3ff;
  font-size: 1rem;
}

.btn-outline-violet:hover {
  transform: translateY(-1px);
  border-color: rgba(236, 32, 36, 0.95);
  background: rgba(236, 32, 36, 0.16);
  box-shadow: 0 10px 24px rgba(236, 32, 36, 0.28);
}

.btn-mobile-cta {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  gap: 0.3rem;
  border-radius: 0.65rem;
  white-space: nowrap;
}

.btn-mobile-cta i {
  font-size: 0.86rem;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 28rem;
  height: 28rem;
  top: -9rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(208, 46, 50, 0.42) 0%, rgba(208, 46, 50, 0) 70%);
  animation: heroBlobA 12s ease-in-out infinite alternate;
}

.hero::after {
  width: 30rem;
  height: 30rem;
  right: -8rem;
  bottom: -9rem;
  background: radial-gradient(circle, rgba(63, 18, 108, 0.45) 0%, rgba(63, 18, 108, 0) 70%);
  animation: heroBlobB 14s ease-in-out infinite alternate;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
  opacity: 0.32;
  pointer-events: none;
}

.hero-network-lines,
.hero-signal-waves,
.hero-3d-waves,
.hero-scan-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-network-lines {
  opacity: 0.62;
  background-image: linear-gradient(110deg, rgba(208, 46, 50, 0.34) 1.4px, transparent 1.4px),
    linear-gradient(28deg, rgba(63, 18, 108, 0.34) 1.4px, transparent 1.4px);
  background-size: 150px 150px, 190px 190px;
  background-position: 0 0, 20px 40px;
  mask-image: radial-gradient(circle at 55% 45%, black 20%, transparent 78%);
  animation: networkDrift 18s linear infinite;
}

.hero-network-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.42) 1px, transparent 1.5px);
  background-size: 34px 34px;
  opacity: 0.42;
  animation: nodeDrift 16s linear infinite;
}

.hero-signal-waves::before,
.hero-signal-waves::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  border: 1.5px solid rgba(208, 46, 50, 0.38);
  box-shadow: inset 0 0 46px rgba(63, 18, 108, 0.2);
  opacity: 0;
  transform: scale(0.55);
}

.hero-signal-waves::before {
  width: 360px;
  height: 360px;
  right: 14%;
  top: 20%;
  animation: wavePulse 4.2s ease-out infinite;
}

.hero-signal-waves::after {
  width: 470px;
  height: 470px;
  left: 8%;
  bottom: 8%;
  border-color: rgba(63, 18, 108, 0.45);
  animation: wavePulse 5s ease-out infinite 0.9s;
}

.hero-3d-waves {
  inset: auto -15% -130px -15%;
  height: 360px;
  opacity: 0.72;
  transform: perspective(800px) rotateX(66deg);
  transform-origin: center bottom;
  background-image: repeating-linear-gradient(
      90deg,
      rgba(208, 46, 50, 0.34) 0,
      rgba(208, 46, 50, 0.34) 2px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(63, 18, 108, 0.32) 0,
      rgba(63, 18, 108, 0.32) 2px,
      transparent 1px,
      transparent 28px
    );
  animation: waveGridShift 9s linear infinite;
  mask-image: linear-gradient(180deg, transparent 0, black 22%, black 76%, transparent 100%);
}

.hero-3d-waves::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(208, 46, 50, 0.4), transparent 60%);
  animation: waveGlow 3.8s ease-in-out infinite;
}

.hero-scan-sweep {
  background: linear-gradient(
    100deg,
    transparent 16%,
    rgba(255, 255, 255, 0.08) 34%,
    rgba(208, 46, 50, 0.16) 47%,
    rgba(63, 18, 108, 0.12) 55%,
    transparent 72%
  );
  transform: translateX(-120%);
  animation: scanSweep 4.8s ease-in-out infinite;
  opacity: 0.78;
}

.hero-glow {
  position: absolute;
  top: -8rem;
  right: -5rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(208, 46, 50, 0.24), rgba(63, 18, 108, 0.06) 45%, transparent 72%);
  filter: blur(10px);
  z-index: 0;
}

.dashboard-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.live-panel {
  position: relative;
  animation: panelFloat 5.2s ease-in-out infinite;
}

.live-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  border: 1px solid rgba(236, 32, 36, 0.16);
  pointer-events: none;
}

.chip {
  border: 1px solid rgba(236, 32, 36, 0.4);
  color: #ffd5d6;
  border-radius: 999px;
  font-size: 0.72rem;
  padding: 0.3rem 0.6rem;
  background: rgba(236, 32, 36, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #ff6f73;
  box-shadow: 0 0 0 0 rgba(255, 111, 115, 0.6);
  animation: pulseLive 1.8s ease-out infinite;
}

.metric-row {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.85rem;
  padding: 0.75rem 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-row .label {
  color: #c2cad6;
  font-size: 0.86rem;
}

.metric-row .value {
  color: #fff;
  font-weight: 700;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.metric-flash {
  color: #ff7a7d !important;
  text-shadow: 0 0 18px rgba(255, 122, 125, 0.42);
}

.live-tracker {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9rem;
}

.tracker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tracker-head p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9deea;
}

.signal-bars {
  display: inline-flex;
  gap: 3px;
  align-items: flex-end;
}

.signal-bars span {
  width: 3px;
  border-radius: 4px;
  background: #ff6f73;
  animation: signalJump 1s ease-in-out infinite;
}

.signal-bars span:nth-child(1) {
  height: 8px;
}

.signal-bars span:nth-child(2) {
  height: 12px;
  animation-delay: 0.1s;
}

.signal-bars span:nth-child(3) {
  height: 9px;
  animation-delay: 0.2s;
}

.signal-bars span:nth-child(4) {
  height: 13px;
  animation-delay: 0.3s;
}

.tracker-feed {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.45rem;
}

.tracker-feed li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #d7dce5;
  font-size: 0.83rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 0.52rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.tracker-feed li.new-event {
  opacity: 0.2;
  transform: translateY(-6px);
}

.feed-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #ff6f73;
  flex: none;
}

.tracker-feed time {
  margin-left: auto;
  font-size: 0.73rem;
  color: #9da6b5;
}

.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  padding: 0.9rem;
  color: #d7dce5;
  background: rgba(255, 255, 255, 0.03);
}

.mini-card i {
  color: #ff7c7f;
  font-size: 1.25rem;
}

.mini-card p {
  font-size: 0.86rem;
  margin-top: 0.45rem;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
}

.section-title {
  margin-top: 0.7rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.section-copy {
  margin-top: 0.95rem;
  color: var(--ssg-gray-body);
  line-height: 1.75;
}

.dark-phase {
  background: linear-gradient(180deg, #0b0f19 0%, #111827 100%);
}

.dark-phase-alt {
  background: linear-gradient(165deg, #121a2a 0%, #0f1423 56%, #0b0f19 100%);
  position: relative;
}

.dark-phase-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(184, 192, 204, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 192, 204, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, transparent 4%, black 28%, black 100%);
  pointer-events: none;
}

.dark-eyebrow {
  color: #b8c0cc;
}

.arc-section {
  position: relative;
  overflow: hidden;
}

.arc-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -260px;
  width: min(1200px, 94vw);
  height: 460px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(77, 102, 151, 0.2);
  box-shadow: 0 0 0 42px rgba(25, 45, 82, 0.08), 0 0 0 92px rgba(25, 45, 82, 0.05);
  pointer-events: none;
  z-index: 0;
}

.arc-section-alt::before {
  top: -300px;
  width: min(1280px, 98vw);
  height: 520px;
  border-color: rgba(117, 134, 173, 0.2);
  box-shadow: 0 0 0 52px rgba(21, 38, 72, 0.11), 0 0 0 112px rgba(21, 38, 72, 0.06);
  opacity: 0.75;
}

.arc-heading {
  position: relative;
  z-index: 1;
}

.arc-icon {
  width: 2.35rem;
  height: 2.35rem;
  margin: 0 auto 1rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(236, 32, 36, 0.35);
  background: rgba(236, 32, 36, 0.14);
  color: #ffafb1;
}

.arc-icon i {
  font-size: 1.18rem;
}

.arc-icon.violet {
  border-color: rgba(63, 18, 108, 0.45);
  background: rgba(63, 18, 108, 0.23);
  color: #c6a9ff;
}

.trust-card,
.solution-card,
.industry-card,
.insight-card,
.intel-stat {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: #fff;
  transition: transform 200ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card,
.industry-card {
  padding: 1.2rem 1.15rem;
}

.trust-card h3,
.industry-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.55rem;
}

.industry-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.industry-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.5rem;
  border: 1px solid #f5c9cb;
  background: #fff4f4;
  color: var(--ssg-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.industry-icon i {
  font-size: 1rem;
}

.industry-icon.violet {
  border-color: rgba(63, 18, 108, 0.28);
  background: rgba(63, 18, 108, 0.1);
  color: #3f126c;
}

.trust-card p,
.industry-card p {
  color: var(--ssg-gray-body);
  line-height: 1.6;
  font-size: 0.95rem;
}

.trust-card:hover,
.solution-card:hover,
.industry-card:hover,
.insight-card:hover,
.intel-stat:hover {
  transform: translateY(-4px);
  border-color: #fbc4c5;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.dark-phase .trust-card,
.dark-phase .solution-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-phase .trust-card h3,
.dark-phase .solution-card h3 {
  color: #ffffff;
}

.dark-phase .trust-card p,
.dark-phase .solution-card p {
  color: #c9d1dc;
}

.dark-phase .solution-card i {
  background: rgba(236, 32, 36, 0.14);
  color: #ff9fa1;
}

.dark-phase .solution-card:nth-child(2n) i {
  background: rgba(236, 32, 36, 0.14);
  color: #ff9fa1;
}

.dark-phase .trust-card:hover,
.dark-phase .solution-card:hover {
  border-color: rgba(236, 32, 36, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.solution-card {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.74) 49%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 600ms ease;
  pointer-events: none;
}

.solution-card i {
  display: inline-flex;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.72rem;
  justify-content: center;
  align-items: center;
  background: #fff4f4;
  color: var(--ssg-red);
  font-size: 1.35rem;
}

.solution-card:nth-child(2n) i {
  background: rgba(63, 18, 108, 0.11);
  color: #3f126c;
}

.solution-card h3 {
  margin-top: 1rem;
  font-size: 1.08rem;
}

.solution-card p {
  margin-top: 0.6rem;
  color: var(--ssg-gray-body);
  line-height: 1.65;
  min-height: 3.6rem;
}

.solution-card a {
  margin-top: 1rem;
  display: inline-flex;
  color: var(--ssg-red);
  font-weight: 600;
  align-items: center;
  gap: 0.35rem;
}

.solution-card a span {
  transition: transform 180ms ease;
}

.solution-card:hover a span {
  transform: translateX(3px);
}

.solution-card:hover::before {
  transform: translateX(130%);
}

.feature-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: #334155;
}

.feature-row i {
  flex: none;
  margin-top: 0.05rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ssg-red);
  background: #fff2f2;
}

.intel-visual {
  background: linear-gradient(180deg, #fff, #f9fafb);
  border: 1px solid #e5e7eb;
}

.intel-chart {
  border-radius: 0.95rem;
  min-height: 250px;
  border: 1px solid #e4e7eb;
  background: radial-gradient(circle at 16% 80%, rgba(91, 46, 255, 0.12), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(236, 32, 36, 0.13), transparent 40%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  position: relative;
  overflow: hidden;
}

.intel-chart::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.45;
}

.intel-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intel-area {
  fill: url(#intelArea);
  animation: areaPulse 4.2s ease-in-out infinite;
}

.intel-line {
  fill: none;
  stroke: url(#intelLine);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: drawLine 5.2s ease-in-out infinite;
}

.intel-line-secondary {
  fill: none;
  stroke: rgba(63, 18, 108, 0.5);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 680;
  stroke-dashoffset: 680;
  animation: drawLineSecondary 5.2s ease-in-out infinite;
}

.intel-point {
  position: absolute;
  z-index: 2;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #ec2024;
  box-shadow: 0 0 0 0 rgba(236, 32, 36, 0.45);
  animation: pointPulse 2.1s ease-out infinite;
}

.intel-point.p1 {
  left: 24%;
  top: 38%;
}

.intel-point.p2 {
  left: 56%;
  top: 34%;
  animation-delay: 0.45s;
}

.intel-point.p3 {
  left: 84%;
  top: 30%;
  animation-delay: 0.9s;
}

.intel-legend {
  position: absolute;
  left: 1rem;
  bottom: 0.8rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.intel-legend span {
  font-size: 0.74rem;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #e6e9ef;
}

.intel-legend .dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  display: inline-block;
}

.intel-legend .dot.red {
  background: #ec2024;
}

.intel-legend .dot.violet {
  background: #3f126c;
}

.intel-stat {
  padding: 0.85rem;
}

.intel-stat .kpi {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.intel-stat .desc {
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.83rem;
}

.insight-card {
  overflow: hidden;
}

.insight-card img {
  width: 100%;
  height: 198px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.insight-card:hover img {
  transform: scale(1.05);
}

.insight-card .content {
  padding: 1.05rem;
}

.insight-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
}

.insight-card p {
  margin-top: 0.55rem;
  color: var(--ssg-gray-body);
  font-size: 0.94rem;
  line-height: 1.58;
}

.insight-card a {
  margin-top: 0.9rem;
  display: inline-flex;
  color: var(--ssg-red);
  font-weight: 600;
  gap: 0.35rem;
}

.cert-carousel {
  border: 1px solid #e4e8f0;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  overflow: hidden;
  padding: 1rem;
}

.cert-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: certScroll 30s linear infinite;
}

.cert-carousel:hover .cert-track {
  animation-play-state: paused;
}

.cert-slide {
  flex-shrink: 0;
  border: 1px solid #e7ebf2;
  border-radius: 0.85rem;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-slide img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.cert-slide p {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #334155;
  text-transform: uppercase;
}

.cta-shell {
  background: linear-gradient(125deg, rgba(236, 32, 36, 0.14), rgba(255, 255, 255, 0.02) 55%);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 2rem;
  align-items: center;
}

.cta-visual-wrap {
  display: flex;
  justify-content: center;
}

.cta-3d-card {
  width: min(340px, 100%);
  min-height: 260px;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(9, 15, 33, 0.9), rgba(24, 31, 56, 0.84));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.cta-orb.orb-a {
  width: 170px;
  height: 170px;
  left: -40px;
  top: -40px;
  background: radial-gradient(circle, rgba(236, 32, 36, 0.42), transparent 65%);
}

.cta-orb.orb-b {
  width: 180px;
  height: 180px;
  right: -50px;
  bottom: -55px;
  background: radial-gradient(circle, rgba(63, 18, 108, 0.52), transparent 65%);
}

.cta-cube {
  position: relative;
  width: 98px;
  height: 98px;
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-25deg);
  animation: cubeFloat 4.8s ease-in-out infinite;
}

.cta-cube .face {
  position: absolute;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-cube .face-front {
  inset: 0;
  background: linear-gradient(165deg, #ec2024, #3f126c);
  display: grid;
  place-items: center;
  color: #ffffff;
}

.cta-cube .face-front i {
  font-size: 2rem;
}

.cta-cube .face-right {
  inset: 0;
  transform: rotateY(90deg) translateZ(49px);
  background: linear-gradient(180deg, rgba(63, 18, 108, 0.86), rgba(27, 10, 54, 0.9));
}

.cta-cube .face-top {
  inset: 0;
  transform: rotateX(90deg) translateZ(49px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.cta-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: ringSpin 10s linear infinite;
}

.harpy-shell {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(130deg, rgba(63, 18, 108, 0.14), rgba(236, 32, 36, 0.08) 45%, rgba(255, 255, 255, 0.02));
}

.harpy-point {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 0.8rem;
  color: #d7dce5;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.45;
}

.harpy-point i {
  flex: none;
  color: #c6a9ff;
  margin-top: 0.08rem;
}

.harpy-visual {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(11, 15, 25, 0.6);
  padding: 1.1rem;
}

.harpy-icon {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(198, 169, 255, 0.45);
  background: linear-gradient(180deg, rgba(63, 18, 108, 0.42), rgba(63, 18, 108, 0.18));
  color: #d6c2ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.harpy-icon i {
  font-size: 1.55rem;
}

.harpy-visual h3 {
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.harpy-visual p {
  margin-top: 0.55rem;
  color: #bcc5d3;
  line-height: 1.6;
  font-size: 0.93rem;
}

footer h3 {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0.8rem;
}

footer ul {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.footer-col {
  height: 100%;
}

footer li strong {
  color: #e2e8f0;
  font-weight: 600;
}

.social {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 180ms ease;
}

.social:hover {
  border-color: rgba(236, 32, 36, 0.9);
  color: #fff;
  background: rgba(236, 32, 36, 0.2);
}

.floating-chat {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  background: linear-gradient(160deg, #ec2024, #3f126c);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(11, 15, 25, 0.35);
  z-index: 60;
  transition: transform 180ms ease, box-shadow 220ms ease;
  animation: chatPulse 2.8s ease-in-out infinite;
}

.floating-chat i {
  font-size: 1.4rem;
}

.chat-main-icon {
  line-height: 1;
}

.chat-plus-badge {
  position: absolute;
  top: -0.15rem;
  right: -0.1rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #ffffff;
  color: #3f126c;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: plusPulse 1.9s ease-out infinite;
}

.floating-chat:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 34px rgba(11, 15, 25, 0.44);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseLive {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 111, 115, 0.55);
  }
  75% {
    box-shadow: 0 0 0 9px rgba(255, 111, 115, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 111, 115, 0);
  }
}

@keyframes signalJump {
  0%,
  100% {
    transform: scaleY(0.7);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.1);
    opacity: 1;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes heroBlobA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(70px, 34px, 0) scale(1.08);
  }
}

@keyframes heroBlobB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-80px, -40px, 0) scale(1.1);
  }
}

@keyframes networkDrift {
  0% {
    background-position: 0 0, 20px 40px;
  }
  100% {
    background-position: 180px 120px, -220px 170px;
  }
}

@keyframes nodeDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(34px, 24px, 0);
  }
}

@keyframes wavePulse {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }
  22% {
    opacity: 0.36;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes waveGridShift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 52px 0, 0 34px;
  }
}

@keyframes waveGlow {
  0%,
  100% {
    opacity: 0.38;
  }
  50% {
    opacity: 0.78;
  }
}

@keyframes scanSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes certScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1.25rem));
  }
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 760;
  }
  45% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLineSecondary {
  0% {
    stroke-dashoffset: 680;
  }
  55% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes areaPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.78;
  }
}

@keyframes pointPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 32, 36, 0.45);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(236, 32, 36, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 32, 36, 0);
    transform: scale(1);
  }
}

@keyframes cubeFloat {
  0%,
  100% {
    transform: rotateX(10deg) rotateY(-25deg) translateY(0);
  }
  50% {
    transform: rotateX(14deg) rotateY(-20deg) translateY(-6px);
  }
}

@keyframes ringSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes chatPulse {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(11, 15, 25, 0.35), 0 0 0 0 rgba(236, 32, 36, 0.28);
  }
  50% {
    box-shadow: 0 12px 30px rgba(11, 15, 25, 0.35), 0 0 0 8px rgba(236, 32, 36, 0);
  }
}

@keyframes certScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1.25rem)); }
}

@keyframes drawLine {
  0% { stroke-dashoffset: 760; }
  45% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

@keyframes drawLineSecondary {
  0% { stroke-dashoffset: 680; }
  55% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

@keyframes areaPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.78; }
}

@keyframes pointPulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 32, 36, 0.45); transform: scale(1); }
  70% { box-shadow: 0 0 0 10px rgba(236, 32, 36, 0); transform: scale(1.08); }
  100% { box-shadow: 0 0 0 0 rgba(236, 32, 36, 0); transform: scale(1); }
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

@keyframes heroBlobA {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(70px, 34px, 0) scale(1.08); }
}

@keyframes heroBlobB {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-80px, -40px, 0) scale(1.1); }
}

@keyframes networkDrift {
  0% { background-position: 0 0, 20px 40px; }
  100% { background-position: 180px 120px, -220px 170px; }
}

@keyframes signalJump {
  0%, 100% { transform: scaleY(0.7); opacity: 0.6; }
  50% { transform: scaleY(1.1); opacity: 1; }
}

@keyframes wavePulse {
  0% { opacity: 0; transform: scale(0.55); }
  22% { opacity: 0.36; }
  100% { opacity: 0; transform: scale(1.2); }
}

@keyframes waveGridShift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 52px 0, 0 34px; }
}

@keyframes scanSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.cert-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: certScroll 30s linear infinite;
}

.cert-carousel:hover .cert-track {
  animation-play-state: paused;
}

.intel-area {
  fill: url(#intelArea);
  animation: areaPulse 4.2s ease-in-out infinite;
}

.intel-line {
  fill: none;
  stroke: url(#intelLine);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: drawLine 5.2s ease-in-out infinite;
}

.intel-line-secondary {
  fill: none;
  stroke: rgba(63, 18, 108, 0.5);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 680;
  stroke-dashoffset: 680;
  animation: drawLineSecondary 5.2s ease-in-out infinite;
}

.intel-point {
  position: absolute;
  z-index: 2;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #ec2024;
  box-shadow: 0 0 0 0 rgba(236, 32, 36, 0.45);
  animation: pointPulse 2.1s ease-out infinite;
}

@keyframes cubeFloat {
  0%, 100% { transform: rotateX(10deg) rotateY(-25deg) translateY(0); }
  50% { transform: rotateX(14deg) rotateY(-20deg) translateY(-6px); }
}

@keyframes ringSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes chatPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(11, 15, 25, 0.35), 0 0 0 0 rgba(236, 32, 36, 0.28); }
  50% { box-shadow: 0 12px 30px rgba(11, 15, 25, 0.35), 0 0 0 8px rgba(236, 32, 36, 0); }
}

@keyframes plusPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); transform: scale(1); }
  70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); transform: scale(1.06); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-network-lines,
  .hero-network-lines::before,
  .hero-signal-waves::before,
  .hero-signal-waves::after,
  .hero-3d-waves,
  .hero-3d-waves::before,
  .hero-scan-sweep,
  .live-panel,
  .live-dot,
  .signal-bars span,
  .intel-area,
  .intel-line,
  .intel-line-secondary,
  .intel-point,
  .cta-cube,
  .cta-ring,
  .floating-chat,
  .chat-plus-badge,
  .cert-track,
  .solution-card::before,
  .insight-card img {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .header-shell {
    margin-top: 0.75rem;
  }

  .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-visual-wrap {
    justify-content: flex-start;
  }

  .floating-chat {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}

@media (max-width: 420px) {
  .btn-mobile-cta {
    padding: 0.42rem 0.58rem;
    font-size: 0.69rem;
  }
}

/* -- Premium Hero Upgrades -- */
.hero-epic {
  position: relative;
  isolation: isolate;
  background: radial-gradient(circle at top center, #111827 0%, #0b0f19 70%);
}

.hero-epic::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(91,46,255,0.15) 0%, rgba(236,32,36,0.1) 40%, transparent 70%);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.hero-epic-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  transform: perspective(1000px) rotateX(60deg) translateY(-100px) scale(2.5);
  transform-origin: top center;
  mask-image: radial-gradient(circle at center 40%, black 10%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.hero-epic-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 150px 150px;
  opacity: 0.15;
  animation: driftUp 30s linear infinite;
  mask-image: linear-gradient(to bottom, black, transparent);
  z-index: 1;
}

@keyframes driftUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-150px); }
}

.title-epic {
  background: linear-gradient(to right, #ffffff, #b8c0cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 24px rgba(255,255,255,0.1));
}

.epic-glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform-style: preserve-3d;
}

.epic-glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(180deg, rgba(236,32,36,0.3) 0%, transparent 100%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.epic-glass-card:hover::before {
  opacity: 1;
}

.epic-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.epic-pill-primary {
  background: var(--ssg-red);
  color: #fff;
  box-shadow: 0 8px 25px rgba(236,32,36,0.3);
}

.epic-pill-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.epic-pill-primary:hover::after {
  left: 150%;
}

.epic-pill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(236,32,36,0.4);
}

.epic-pill-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  color: #fff;
  backdrop-filter: blur(10px);
}

.epic-pill-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--ssg-cyber);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(91,46,255,0.5);
}

.epic-feature-list {
  display: grid;
  gap: 1.2rem;
}

.epic-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.epic-feature-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(91,46,255,0.3);
  transform: translateX(4px);
}

.epic-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1.4rem;
  color: var(--ssg-red);
  box-shadow: inset 0 2px 10px rgba(255,255,255,0.05);
}




