/* ===========================
   GLOBAL
   =========================== */

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

:root {
  --bg-main: #ffffff;
  --text-main: #111111;
  --text-muted: #555555;
  --border-subtle: rgba(0, 0, 0, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.7);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-xl: 24px;
  --transition-fast: 220ms ease-out;
  --gradient-main: linear-gradient(120deg, #d5b7ff, #b0eaff, #d0ffd6);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Градиентный фон на главной */

.page-gradient {
  position: fixed;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 10%, rgba(213, 183, 255, 0.48), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(176, 234, 255, 0.45), transparent 55%),
    radial-gradient(circle at 50% 85%, rgba(208, 255, 214, 0.5), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  animation: gradientFloat 22s ease-in-out infinite alternate;
}

@keyframes gradientFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, 20px, 0) scale(1.04);
  }
}

/* Layout */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   HEADER
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  position: relative;
  top: 1px;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 4px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--text-main);
  transition: width var(--transition-fast);
}

.nav a:hover {
  color: var(--text-main);
}

.nav a:hover::after {
  width: 100%;
}

/* ===========================
   HERO
   =========================== */

.hero {
  padding: 80px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 16px;
}

.hero-description {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 28px;
}

/* Кнопки стора */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn img {
  display: block;
  border-radius: 6px;
}

.btn-label-main {
  position: relative;
  top: 0.5px;
}

.btn-badge {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.store-btn {
  background: var(--gradient-main);
  color: #111111;
  box-shadow: var(--shadow-soft);
}

.store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.outline-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-main);
}

.outline-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

.disabled-btn {
  cursor: default;
  opacity: 0.9;
}

/* Доп. метрики */

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.hero-meta-value {
  font-weight: 500;
}

/* ===========================
   GLASS CARD / HERO RIGHT
   =========================== */

.glass {
  background: var(--glass-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-card {
  padding: 22px 22px 18px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0%, rgba(213, 183, 255, 0.32), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(208, 255, 214, 0.32), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-card > * {
  position: relative;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.hero-chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.metric {
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.88);
}

.metric-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.metric-value {
  font-weight: 600;
  font-size: 16px;
}

.hero-ai-note {
  font-size: 12px;
  color: var(--text-muted);
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.9);
}

/* Таймлайн */

.hero-timeline {
  position: relative;
  padding-left: 10px;
  margin-bottom: 14px;
}

.timeline-line {
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(0, 0, 0, 0.14);
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px 10px;
  font-size: 11px;
  padding: 4px 0 4px 10px;
}

.timeline-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gradient-main);
}

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

.timeline-value {
  font-weight: 500;
}

/* Нижний прогресс-виджет */

.hero-footer-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.hero-footer-label {
  color: var(--text-muted);
}

.hero-progress-bar {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-main);
  transform-origin: left;
  animation: progressGlow 3.2s ease-in-out infinite alternate;
}

.hero-footer-value {
  font-weight: 500;
}

@keyframes progressGlow {
  0% {
    transform: scaleX(0.76);
    filter: brightness(1);
  }
  100% {
    transform: scaleX(0.82);
    filter: brightness(1.15);
  }
}

/* ===========================
   GENERIC SECTIONS
   =========================== */

.section {
  padding: 72px 0;
}

.section-heading {
  text-align: left;
  max-width: 520px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.section-heading p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===========================
   ABOUT
   =========================== */

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.about-text p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.about-media {
  padding: 18px 18px 16px;
}

.about-caption {
  margin: 4px 2px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   FEATURES
   =========================== */

.features {
  padding-top: 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 22px 20px 20px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: var(--gradient-main);
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.feature-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 18px;
}

.feature-card p {
  position: relative;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===========================
   WIDGETS / INSIGHTS
   =========================== */

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.insight-card {
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
}

.insight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.insight-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.insight-pill {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

/* EQUITY CURVE */

.insight-equity .insight-chart {
  position: relative;
  border-radius: 18px;
  background: radial-gradient(
      circle at 0 0,
      rgba(213, 183, 255, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(208, 255, 214, 0.35),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.9);
  height: 120px;
  margin-bottom: 10px;
  overflow: hidden;
}

.insight-chart-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(148, 163, 184, 0.22) 1px,
      transparent 1px
    ),
    linear-gradient(
      to top,
      rgba(148, 163, 184, 0.18) 1px,
      transparent 1px
    );
  background-size: 24px 24px;
  opacity: 0.7;
}

.insight-chart-line {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 60%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #3b82f6, #22c55e);
  background-size: 200% 100%;
  animation: equityFlow 4s linear infinite;
}

@keyframes equityFlow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.insight-chart-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.insight-chart-dot.dot-start {
  left: 6%;
  bottom: 24px;
}

.insight-chart-dot.dot-drawdown {
  left: 42%;
  bottom: 14px;
  background: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.insight-chart-dot.dot-end {
  right: 6%;
  bottom: 34px;
}

.dot-label {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
}

.insight-footer-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  font-size: 11px;
  margin-top: 4px;
}

.insight-meta-label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.insight-meta-value {
  font-weight: 500;
}

/* SESSION PERFORMANCE */

.session-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.session-tag {
  display: grid;
  grid-template-columns: 1.1fr auto auto;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.9);
}

.session-name {
  font-weight: 500;
}

.session-r {
  font-variant-numeric: tabular-nums;
}

.session-note {
  font-size: 11px;
  color: var(--text-muted);
}

.session-positive {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(
    90deg,
    rgba(22, 163, 74, 0.1),
    rgba(22, 163, 74, 0.02)
  );
}

.session-neutral {
  border-color: rgba(234, 179, 8, 0.45);
  background: linear-gradient(
    90deg,
    rgba(234, 179, 8, 0.09),
    rgba(234, 179, 8, 0.02)
  );
}

.session-negative {
  border-color: rgba(239, 68, 68, 0.5);
  background: linear-gradient(
    90deg,
    rgba(239, 68, 68, 0.1),
    rgba(239, 68, 68, 0.02)
  );
}

.insight-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* RISK PROFILE */

.risk-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.risk-gauge {
  position: relative;
  width: 88px;
  height: 88px;
}

.risk-gauge-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: conic-gradient(
    from 200deg,
    #22c55e 0 40%,
    #eab308 40% 75%,
    #ef4444 75% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  animation: gaugeSpin 9s linear infinite;
}

@keyframes gaugeSpin {
  0% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(4deg);
  }
}

.risk-gauge-fill {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle, #f9fafb 0, #e5e7eb 55%, #e5e7eb 100%);
}

.risk-gauge-center {
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.risk-gauge-value {
  font-size: 16px;
  font-weight: 600;
}

.risk-gauge-label {
  font-size: 10px;
  color: var(--text-muted);
}

.risk-metrics {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.risk-row {
  display: flex;
  justify-content: space-between;
}

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

.risk-value {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

/* ===========================
   PREVIEW / iPHONE
   =========================== */

.preview-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.preview-mockup {
  padding: 40px 56px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

/* iPhone mockup */

.phone-frame {
  width: 260px;
  margin: 0 auto;
  padding: 14px 10px 18px;
  border-radius: 44px;
  background: #020617;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.8);
  position: relative;
}

.phone-notch {
  width: 140px;
  height: 24px;
  margin: 0 auto 10px;
  background: #020617;
  border-radius: 999px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.phone-screen {
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(213, 183, 255, 0.28), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(208, 255, 214, 0.28), transparent 60%),
    #f7f7fb;
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 460px;
  overflow: hidden;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.phone-logo {
  font-weight: 600;
}

.phone-pill {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.phone-card {
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.phone-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.phone-value {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.phone-text {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

.phone-list {
  border-radius: 16px;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  margin-top: 4px;
}

.phone-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 3px 0;
  color: var(--text-muted);
}

/* Нижняя полоска как у iPhone без кнопки */

.phone-home-indicator {
  margin-top: auto;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  align-self: center;
}

.preview-text h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.preview-text p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.9);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--text-main);
  transition: width var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-links a:hover::after {
  width: 100%;
}

/* ===========================
   PRIVACY PAGE
   =========================== */

.privacy-body {
  background: #ffffff;
}

.privacy-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.privacy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.privacy-logo {
  text-decoration: none;
  color: inherit;
}

.privacy-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-main {
  padding: 40px 0 60px;
}

.privacy-content {
  max-width: 720px;
}

.privacy-content h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.privacy-updated {
  margin: 0 0 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.privacy-content h2 {
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 18px;
}

.privacy-content p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.privacy-content ul {
  margin: 0 0 14px 18px;
  padding: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.privacy-content li {
  margin-bottom: 4px;
}

/* ===========================
   ANIMATIONS
   =========================== */

.fade-in {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 500ms ease-out,
    transform 500ms ease-out,
    box-shadow 500ms ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .hero-inner,
  .about-inner,
  .preview-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 40px;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .feature-grid,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-mockup {
    padding: 28px 32px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 12px;
  }

  .nav {
    display: none; /* при желании можно добавить бургер */
  }

  .hero {
    padding: 56px 0 56px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

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

  .section {
    padding: 56px 0;
  }

  .feature-grid,
  .insights-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-inner {
    gap: 28px;
  }

  .preview-mockup {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}