@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --font-ui: 'Manrope', 'Inter var', Inter, ui-sans-serif, system-ui, sans-serif;
    --font-display: 'Space Grotesk', 'Manrope', 'Inter var', Inter, ui-sans-serif, system-ui, sans-serif;
    --background: 228 36% 97%;
    --foreground: 223 32% 15%;
    --card: 0 0% 100%;
    --card-foreground: 223 32% 15%;
    --popover: 0 0% 100%;
    --popover-foreground: 223 32% 15%;
    --primary: 252 88% 64%;
    --primary-foreground: 210 40% 98%;
    --secondary: 220 31% 94%;
    --secondary-foreground: 223 32% 15%;
    --muted: 220 27% 95%;
    --muted-foreground: 220 15% 42%;
    --accent: 220 30% 95%;
    --accent-foreground: 223 32% 15%;
    --border: 222 25% 88%;
    --input: 222 25% 88%;
    --ring: 252 88% 64%;
  }

  .dark {
    --background: 226 39% 9%;
    --foreground: 220 33% 96%;
    --card: 226 36% 11%;
    --card-foreground: 220 33% 96%;
    --popover: 226 36% 11%;
    --popover-foreground: 220 33% 96%;
    --primary: 252 92% 72%;
    --primary-foreground: 224 42% 10%;
    --secondary: 223 24% 18%;
    --secondary-foreground: 220 33% 96%;
    --muted: 223 24% 18%;
    --muted-foreground: 218 19% 69%;
    --accent: 223 24% 18%;
    --accent-foreground: 220 33% 96%;
    --border: 223 20% 24%;
    --input: 223 20% 24%;
    --ring: 252 92% 72%;
  }
}

@layer base {
  html {
    @apply min-h-full bg-[#f4f6fb] dark:bg-[#0b1020];
  }

  html.export-light-theme {
    background: #f8fafc !important;
    color-scheme: light !important;
  }

  * {
    @apply border-border;
  }

  #root {
    position: relative;
    z-index: 1;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100dvh;
  }

  body {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    font-family: var(--font-ui);
    background:
      radial-gradient(circle at top left, rgba(122, 92, 255, 0.12), transparent 28%),
      radial-gradient(circle at top right, rgba(55, 184, 255, 0.08), transparent 26%),
      linear-gradient(180deg, #f8f9fc 0%, #f4f6fb 100%);
    color: hsl(var(--foreground));
    @apply bg-background text-foreground transition-colors duration-300;
  }

  .dark body {
    background:
      radial-gradient(circle at 14% 8%, rgba(122, 92, 255, 0.2), transparent 28%),
      radial-gradient(circle at 86% 10%, rgba(55, 184, 255, 0.1), transparent 24%),
      radial-gradient(circle at 50% 24%, rgba(24, 39, 70, 0.34), transparent 36%),
      radial-gradient(circle at 50% 100%, rgba(20, 30, 58, 0.26), transparent 34%),
      linear-gradient(180deg, #050914 0%, #07101d 46%, #08101b 100%);
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.42;
    background-image:
      linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
      linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 78%);
  }

  .dark body::before {
    opacity: 0.12;
    background-image:
      linear-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px),
      linear-gradient(90deg, rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  }

  h1,
  h2,
  h3,
  .font-display {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
  }

  button,
  input,
  select,
  textarea {
    font: inherit;
  }

  body.export-light-theme {
    background: #ffffff !important;
    color: #111827 !important;
    color-scheme: light !important;
  }

  ::selection {
    background: rgba(122, 92, 255, 0.22);
    color: inherit;
  }

  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  input[type="number"] {
    -moz-appearance: textfield;
  }
}

/* Formula container styles */
.formula-container {
  @apply w-full py-4;
  overflow: visible !important;
}

/* KaTeX container styles */
.katex-display {
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center !important;
}

.katex {
  @apply text-current;
  font-size: 1.1em !important;
  max-width: 100%;
  display: flex !important;
  justify-content: center !important;
}

.katex-html {
  max-width: 100%;
  overflow: visible !important;
}

/* Scale formulas on mobile */
@media (max-width: 640px) {
  .katex {
    font-size: 0.9em !important;
  }
  
  .katex-display > .katex {
    white-space: normal !important;
  }
  
  .katex .mfrac .frac-line {
    min-width: 0;
  }
  
  .katex .mspace {
    margin-right: 0 !important;
  }
  
  .katex .mord + .mrel {
    margin-left: 0.2em;
    margin-right: 0.2em;
  }
}

/* Dark mode formula styles */
.dark .katex {
  @apply text-gray-100;
}

.dark .katex .mord,
.dark .katex .mbin,
.dark .katex .mrel,
.dark .katex .mopen,
.dark .katex .mclose,
.dark .katex .mpunct,
.dark .katex .minner {
  @apply text-current;
}

/* Calculation section styles */
.calculation-section {
  @apply space-y-4 p-4 rounded-xl bg-white dark:bg-gray-800;
}

.calculation-title {
  @apply text-lg font-semibold text-gray-900 dark:text-white;
}

.calculation-content {
  @apply space-y-2;
}

/* Formula block styles */
.formula-block {
  @apply p-4 rounded-lg bg-gray-50 dark:bg-gray-900;
  overflow: visible;
}

@keyframes rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.input-gradient-border {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(rgb(226, 232, 240), rgb(226, 232, 240)) border-box;
  background-clip: padding-box, border-box;
  transition: background 0.3s ease;
}

.input-gradient-border input,
.input-gradient-border select {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  background-clip: padding-box;
  outline: none;
  box-shadow: none;
}

.calculator-focus-field,
.calculator-focus-group {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(rgb(226, 232, 240), rgb(226, 232, 240)) border-box;
  background-clip: padding-box, border-box;
  transition: background 0.3s ease;
}

.calculator-focus-field {
  background-clip: padding-box, border-box;
}

.calculator-focus-group input,
.calculator-focus-group select {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  box-shadow: none;
}

.calculator-focus-group input:focus,
.calculator-focus-group select:focus,
.calculator-focus-field:focus {
  outline: none;
  box-shadow: none;
}

.calculator-focus-field:focus,
.calculator-focus-group:focus-within {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(rgb(199, 210, 254), rgb(199, 210, 254)) border-box;
}

select.calculator-focus-field,
.calculator-focus-group select,
.input-gradient-border select {
  color-scheme: light;
}

select.calculator-focus-field option,
.calculator-focus-group select option,
.input-gradient-border select option {
  background-color: rgb(255, 255, 255);
  color: rgb(31, 41, 55);
}

.date-field-input {
  position: relative;
  color-scheme: light;
  cursor: pointer;
}

.date-field-input::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

/* Light theme styles */
.input-gradient-border:has(input:focus):has(.indigo-input),
.input-gradient-border:has(select:focus):has(.indigo-input) {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(rgb(199, 210, 254), rgb(199, 210, 254)) border-box;
}

.input-gradient-border:has(input:focus):has(.purple-input),
.input-gradient-border:has(select:focus):has(.purple-input) {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(rgb(233, 213, 255), rgb(233, 213, 255)) border-box;
}

.input-gradient-border:has(input:focus):has(.pink-input),
.input-gradient-border:has(select:focus):has(.pink-input) {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(rgb(251, 207, 232), rgb(251, 207, 232)) border-box;
}

.input-gradient-border:has(input:focus):has(.blue-input),
.input-gradient-border:has(select:focus):has(.blue-input) {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(rgb(191, 219, 254), rgb(191, 219, 254)) border-box;
}

/* Dark theme styles */
.dark .input-gradient-border {
  background:
    linear-gradient(rgb(17, 24, 39), rgb(17, 24, 39)) padding-box,
    linear-gradient(rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.15)) border-box;
}

.dark .calculator-focus-field,
.dark .calculator-focus-group {
  background:
    linear-gradient(rgb(17, 24, 39), rgb(17, 24, 39)) padding-box,
    linear-gradient(rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.15)) border-box;
}

.dark select.calculator-focus-field,
.dark .calculator-focus-group select,
.dark .input-gradient-border select {
  color-scheme: dark;
}

.dark select.calculator-focus-field option,
.dark .calculator-focus-group select option,
.dark .input-gradient-border select option {
  background-color: rgb(17, 24, 39);
  color: rgb(229, 231, 235);
}

.dark .date-field-input {
  color-scheme: dark;
}

.dark .input-gradient-border:has(input:focus),
.dark .input-gradient-border:has(select:focus) {
  background:
    linear-gradient(rgb(17, 24, 39), rgb(17, 24, 39)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      rgba(99, 102, 241, 0.15) 0%,
      rgba(99, 102, 241, 0.15) 10%,
      rgba(129, 140, 248, 1) 20%,
      rgba(165, 180, 252, 1) 40%,
      rgba(99, 102, 241, 0.15) 50%,
      rgba(99, 102, 241, 0.15) 100%
    ) border-box;
  animation: rotate 4s linear infinite;
}

.dark .calculator-focus-field:focus,
.dark .calculator-focus-group:focus-within {
  background:
    linear-gradient(rgb(17, 24, 39), rgb(17, 24, 39)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      rgba(99, 102, 241, 0.15) 0%,
      rgba(99, 102, 241, 0.15) 10%,
      rgba(129, 140, 248, 1) 20%,
      rgba(165, 180, 252, 1) 40%,
      rgba(99, 102, 241, 0.15) 50%,
      rgba(99, 102, 241, 0.15) 100%
    ) border-box;
  animation: rotate 4s linear infinite;
}

input[type="number"] {
  @apply transition-colors duration-200 ease-in-out bg-white dark:bg-gray-900;
}

input[type="number"]:focus {
  @apply outline-none;
}

.gradient-bg {
  background-image: linear-gradient(135deg, #5b5cf0 0%, #7c5cff 48%, #37b8ff 100%);
}

.premium-glass-surface {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 251, 255, 0.92) 100%);
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.07),
    0 10px 24px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.premium-glass-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.12), transparent 38%),
    radial-gradient(circle at bottom left, rgba(55, 184, 255, 0.08), transparent 34%);
}

.dark .premium-glass-surface {
  border-color: rgba(71, 85, 105, 0.78);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 16, 32, 0.84) 100%);
  box-shadow:
    0 28px 70px rgba(2, 6, 23, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.content-surface {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.88);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.06), transparent 30%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.04), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.94) 100%);
  box-shadow:
    0 22px 52px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.dark .content-surface {
  border-color: rgba(71, 85, 105, 0.78);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.94) 0%, rgba(10, 16, 32, 0.9) 100%);
  box-shadow:
    0 24px 58px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.content-subsurface {
  border: 1px solid rgba(226, 232, 240, 0.82);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.94) 0%, rgba(248, 250, 252, 0.82) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 28px rgba(15, 23, 42, 0.04);
}

.dark .content-subsurface {
  border-color: rgba(71, 85, 105, 0.72);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.84) 0%, rgba(15, 23, 42, 0.72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 32px rgba(2, 6, 23, 0.18);
}

.content-tone-indigo {
  border-color: rgba(199, 210, 254, 0.92);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(246, 247, 255, 0.98) 0%, rgba(238, 242, 255, 0.94) 100%);
}

.dark .content-tone-indigo {
  border-color: rgba(99, 102, 241, 0.34);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(31, 41, 55, 0.92) 0%, rgba(24, 24, 48, 0.84) 100%);
}

.content-tone-amber {
  border-color: rgba(253, 230, 138, 0.92);
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255, 251, 235, 0.98) 0%, rgba(254, 243, 199, 0.8) 100%);
}

.dark .content-tone-amber {
  border-color: rgba(245, 158, 11, 0.34);
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(39, 31, 15, 0.94) 0%, rgba(24, 24, 21, 0.9) 100%);
}

.content-tone-slate {
  border-color: rgba(203, 213, 225, 0.92);
  background:
    radial-gradient(circle at top right, rgba(148, 163, 184, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.9) 100%);
}

.dark .content-tone-slate {
  border-color: rgba(100, 116, 139, 0.34);
  background:
    radial-gradient(circle at top right, rgba(148, 163, 184, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(22, 28, 40, 0.94) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.premium-card-link {
  position: relative;
  overflow: hidden;
  border-color: rgba(226, 232, 240, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 251, 255, 0.8) 100%);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.premium-card-link::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%),
    radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 36%);
}

.premium-card-link:hover::before,
.premium-card-link:focus-visible::before {
  opacity: 1;
}

.premium-card-link:hover,
.premium-card-link:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(139, 129, 255, 0.46);
  box-shadow:
    0 28px 60px rgba(91, 92, 240, 0.16),
    0 12px 30px rgba(15, 23, 42, 0.08);
}

.dark .premium-card-link {
  border-color: rgba(71, 85, 105, 0.7);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.72) 0%, rgba(17, 24, 39, 0.56) 100%);
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dark .premium-card-link:hover,
.dark .premium-card-link:focus-visible {
  border-color: rgba(129, 140, 248, 0.48);
  box-shadow:
    0 28px 64px rgba(79, 70, 229, 0.22),
    0 14px 30px rgba(2, 6, 23, 0.34);
}

.navigation-shell {
  background: transparent;
  box-shadow: none;
}

.navigation-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 17, 32, 0.98) 0%, rgba(10, 16, 29, 0.94) 100%);
  backdrop-filter: blur(24px);
  box-shadow:
    0 28px 70px rgba(2, 6, 23, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dark .navigation-shell {
  background: transparent;
  box-shadow: none;
}

.calculator-surface {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.94) 100%);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.dark .calculator-surface {
  border-color: rgba(100, 116, 139, 0.88);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(21, 31, 54, 0.98) 0%, rgba(13, 20, 37, 0.95) 100%);
  box-shadow:
    0 28px 68px rgba(2, 6, 23, 0.34),
    0 10px 24px rgba(2, 6, 23, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.calculator-subsurface {
  border: 1px solid rgba(226, 232, 240, 0.82);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 0.78) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 10px 22px rgba(15, 23, 42, 0.035);
}

.dark .calculator-subsurface {
  border-color: rgba(100, 116, 139, 0.8);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(20, 29, 49, 0.9) 0%, rgba(15, 23, 42, 0.78) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 30px rgba(2, 6, 23, 0.2);
}

.calculator-support-surface {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.88);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.05), transparent 30%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(252, 253, 255, 0.98) 0%, rgba(246, 249, 255, 0.93) 100%);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.dark .calculator-support-surface {
  border-color: rgba(86, 102, 126, 0.78);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.1), transparent 30%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(13, 20, 37, 0.94) 0%, rgba(10, 16, 30, 0.9) 100%);
  box-shadow:
    0 22px 46px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.calculator-support-subsurface {
  border: 1px solid rgba(226, 232, 240, 0.8);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(244, 247, 252, 0.8) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 18px rgba(15, 23, 42, 0.03);
}

.dark .calculator-support-subsurface {
  border-color: rgba(86, 102, 126, 0.72);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(17, 25, 43, 0.84) 0%, rgba(13, 20, 36, 0.74) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(2, 6, 23, 0.14);
}

.quick-start-step-card {
  border: 1px solid rgba(226, 232, 240, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 255, 0.72) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 26px rgba(15, 23, 42, 0.04);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.quick-start-step-card:hover {
  border-color: rgba(148, 163, 184, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 14px 28px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(125, 211, 252, 0.12);
}

.dark .quick-start-step-card {
  border-color: rgba(100, 116, 139, 0.3);
  background:
    linear-gradient(180deg, rgba(20, 29, 49, 0.74) 0%, rgba(15, 23, 42, 0.58) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 30px rgba(2, 6, 23, 0.22);
}

.dark .quick-start-step-card:hover {
  border-color: rgba(125, 211, 252, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(2, 6, 23, 0.22),
    0 0 0 1px rgba(125, 211, 252, 0.1);
}

.calculator-toolbar-surface {
  border: 1px solid rgba(226, 232, 240, 0.82);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.06), transparent 28%),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.dark .calculator-toolbar-surface {
  border-color: rgba(100, 116, 139, 0.8);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.14), transparent 28%),
    rgba(22, 31, 52, 0.9);
  box-shadow:
    0 22px 42px rgba(2, 6, 23, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.calculator-metric-card {
  border: 1px solid rgba(226, 232, 240, 0.82);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 10px 24px rgba(15, 23, 42, 0.04);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.dark .calculator-metric-card {
  border-color: rgba(100, 116, 139, 0.78);
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(20, 29, 49, 0.92) 0%, rgba(15, 23, 42, 0.86) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 30px rgba(2, 6, 23, 0.22);
}

.calculator-metric-card:hover {
  border-color: rgba(129, 140, 248, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 14px 30px rgba(15, 23, 42, 0.055);
}

.dark .calculator-metric-card:hover {
  border-color: rgba(129, 140, 248, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(2, 6, 23, 0.24);
}

.calculator-metric-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(100 116 139);
}

.dark .calculator-metric-label {
  color: rgb(148 163 184);
}

.calculator-metric-value {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: rgb(15 23 42);
  font-variant-numeric: tabular-nums;
}

.dark .calculator-metric-value {
  color: rgb(248 250 252);
}

.calculator-table-shell {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.88) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 28px rgba(15, 23, 42, 0.04);
}

.dark .calculator-table-shell {
  border-color: rgba(71, 85, 105, 0.72);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.84) 0%, rgba(15, 23, 42, 0.78) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 36px rgba(2, 6, 23, 0.2);
}

.calculator-table {
  width: 100%;
  border-collapse: collapse;
}

.calculator-table thead th {
  background: rgba(248, 250, 252, 0.88);
  padding: 0.9rem 1rem;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(100 116 139);
}

.dark .calculator-table thead th {
  background: rgba(15, 23, 42, 0.46);
  color: rgb(148 163 184);
}

.calculator-table tbody td {
  border-top: 1px solid rgba(226, 232, 240, 0.82);
  padding: 0.95rem 1rem;
  color: rgb(51 65 85);
}

.dark .calculator-table tbody td {
  border-top-color: rgba(71, 85, 105, 0.7);
  color: rgb(226 232 240);
}

.calculator-table tbody tr:hover td {
  background: rgba(248, 250, 252, 0.62);
}

.dark .calculator-table tbody tr:hover td {
  background: rgba(15, 23, 42, 0.36);
}

.calculator-table-row-label {
  background: rgba(248, 250, 252, 0.78);
}

.dark .calculator-table-row-label {
  background: rgba(15, 23, 42, 0.3);
}

.calculator-table-value {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgb(15 23 42);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.dark .calculator-table-value {
  color: rgb(248 250 252);
}

.site-header-shell {
  position: sticky;
  top: 0;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(9, 13, 27, 0.98) 0%, rgba(11, 18, 35, 0.94) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.32);
}

.site-header-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(122, 92, 255, 0.24), transparent 26%),
    radial-gradient(circle at top right, rgba(55, 184, 255, 0.14), transparent 20%);
}

.site-header-shell::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(122, 92, 255, 0.56) 36%, rgba(55, 184, 255, 0.48) 68%, transparent 100%);
}

.site-header-panel {
  position: relative;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(20px);
}

.page-ambient {
  position: relative;
  isolation: isolate;
}

.page-ambient::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(122, 92, 255, 0.14), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(55, 184, 255, 0.08), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(122, 92, 255, 0.05), transparent 28%);
  z-index: -1;
}

.dark .page-ambient::before {
  background:
    radial-gradient(circle at 12% 8%, rgba(122, 92, 255, 0.18), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(55, 184, 255, 0.08), transparent 22%),
    radial-gradient(circle at 50% 18%, rgba(20, 34, 60, 0.32), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(122, 92, 255, 0.06), transparent 28%);
}

.landing-showcase-wrap {
  width: 100%;
  max-width: 920px;
}

.landing-showcase-shell {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 255, 0.94) 100%);
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.landing-showcase-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(55, 184, 255, 0.06), transparent 24%);
}

.landing-showcase-panel {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.landing-showcase-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 9999px;
  filter: blur(52px);
  opacity: 0.6;
  animation: landing-glow-drift 14s ease-in-out infinite;
}

.landing-showcase-orb-left {
  top: 18%;
  left: -4%;
  height: 220px;
  width: 220px;
  background: rgba(124, 92, 255, 0.1);
}

.landing-showcase-orb-right {
  right: -3%;
  bottom: 8%;
  height: 200px;
  width: 200px;
  background: rgba(55, 184, 255, 0.1);
  animation-delay: -6s;
}

.review-shell,
.review-card,
.review-subcard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.88);
  background:
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.07), transparent 28%),
    radial-gradient(circle at bottom left, rgba(55, 184, 255, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 255, 0.94) 100%);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.review-shell::before,
.review-card::before,
.review-subcard::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 32%),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: 0.14;
}

.review-subcard {
  background:
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 255, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 34px rgba(15, 23, 42, 0.05);
}

.dark .review-shell,
.dark .review-card,
.dark .review-subcard {
  border: 1px solid rgba(71, 85, 105, 0.36);
  background:
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(55, 184, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(9, 14, 29, 0.98) 0%, rgba(10, 16, 32, 0.96) 100%);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dark .review-shell::before,
.dark .review-card::before,
.dark .review-subcard::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  opacity: 0.42;
}

.dark .review-subcard {
  background:
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.92) 0%, rgba(12, 18, 34, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 34px rgba(2, 8, 23, 0.22);
}

.landing-showcase-viewport {
  --showcase-scene-height: 428px;
  --showcase-scene-gap: 1rem;
  position: relative;
  height: 452px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.landing-showcase-scroll-track {
  display: flex;
  flex-direction: column;
  gap: var(--showcase-scene-gap);
  padding: 1rem;
  animation: landing-showcase-scroll 18s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: transform;
}

.landing-scene-card {
  min-height: var(--showcase-scene-height);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.landing-scene-chip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.45rem 0.8rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(226 232 240);
}

.landing-meter {
  height: 0.42rem;
  overflow: hidden;
  border-radius: 9999px;
  background: rgba(148, 163, 184, 0.16);
}

.landing-meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(124, 92, 255, 1), rgba(55, 184, 255, 0.92));
  box-shadow: 0 0 18px rgba(55, 184, 255, 0.24);
}

.landing-mini-progress {
  height: 0.5rem;
  overflow: hidden;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
}

.landing-mini-progress-fill {
  display: block;
  height: 100%;
  width: 64%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.95), rgba(55, 184, 255, 0.95));
  animation: landing-progress-shift 4.8s ease-in-out infinite;
}

.landing-mini-donut {
  position: relative;
  display: flex;
  height: 162px;
  width: 162px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(2, 6, 23, 0.24);
}

.landing-mini-donut::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(8, 13, 27, 0.98), rgba(10, 16, 32, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-mini-donut-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-ownership-bar {
  height: 0.58rem;
  overflow: hidden;
  border-radius: 9999px;
  background: rgba(148, 163, 184, 0.16);
}

.landing-ownership-fill {
  position: relative;
  display: block;
  height: 100%;
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(124, 92, 255, 0.16);
}

.landing-ownership-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  animation: landing-sheen 4.6s ease-in-out infinite;
}

.landing-trend-chart {
  overflow: visible;
}

.landing-trend-line {
  fill: none;
  stroke: rgba(125, 211, 252, 0.95);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: landing-line-draw 5.8s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.3));
}

.landing-showcase-viewport-fade {
  position: absolute;
  inset-inline: 0;
  height: 3rem;
  pointer-events: none;
  z-index: 1;
}

.landing-showcase-viewport-fade-top {
  top: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.96), rgba(11, 17, 32, 0));
}

.landing-showcase-viewport-fade-bottom {
  bottom: 0;
  background: linear-gradient(0deg, rgba(8, 13, 27, 0.98), rgba(8, 13, 27, 0));
}

.landing-grid-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.76), transparent 80%);
}

.landing-real-showcase-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 1.75rem;
  min-height: 0;
  aspect-ratio: 1.28 / 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 247, 255, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 48px rgba(15, 23, 42, 0.08);
}

.landing-real-showcase-slide-layer {
  position: relative;
  inset: 0;
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.landing-real-showcase-slide-layer.is-current,
.landing-real-showcase-slide-layer.is-previous {
  position: absolute;
}

.landing-real-showcase-slide-layer picture {
  display: block;
  height: 100%;
  width: 100%;
}

.landing-real-showcase-image {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  transform: scale(var(--landing-showcase-scale, 1));
  transition:
    transform 3.2s ease,
    filter 500ms ease;
  filter: saturate(1.01) contrast(1.015);
}

.landing-real-showcase-image.is-active {
  transform: scale(var(--landing-showcase-scale, 1));
}

.landing-real-showcase-image.is-transitioning {
  transform: scale(var(--landing-showcase-scale, 1));
}

.landing-real-showcase-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 250, 252, 0.02) 42%, rgba(226, 232, 240, 0.08) 100%);
}

.landing-real-showcase-flash {
  position: absolute;
  inset: -12%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.16) 22%, rgba(255, 255, 255, 0) 58%);
}

.landing-real-showcase-flash.is-active {
  animation: landing-showcase-flash 720ms ease-out both;
}

.landing-real-showcase-notes {
  display: grid;
  gap: 0.6rem;
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 34px rgba(15, 23, 42, 0.08);
  padding: 0.78rem 0.88rem 0.84rem;
  backdrop-filter: blur(18px);
}

.landing-real-showcase-notes-main {
  min-width: 0;
}

.landing-real-showcase-notes-main-animated {
  animation: landing-showcase-copy-fade 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-real-showcase-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.landing-real-showcase-pill,
.landing-real-showcase-badge,
.landing-real-showcase-step {
  border: 1px solid rgba(203, 213, 225, 0.82);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.landing-real-showcase-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.38rem 0.72rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(71 85 105);
}

.landing-real-showcase-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(100 116 139);
}

.landing-real-showcase-counter {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(203, 213, 225, 0.8);
  background: rgba(241, 245, 249, 0.88);
  padding: 0.35rem 0.65rem;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(100 116 139);
}

.landing-real-showcase-mini-rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.landing-real-showcase-mini-rail::-webkit-scrollbar {
  display: none;
}

.landing-real-showcase-mini-pill {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.36rem 0.68rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgb(71 85 105);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.landing-real-showcase-mini-pill:hover,
.landing-real-showcase-mini-pill.is-active {
  border-color: rgba(129, 140, 248, 0.34);
  background: rgba(238, 242, 255, 0.9);
  color: rgb(79 70 229);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.12);
}

.landing-real-showcase-mini-index {
  color: rgb(100 116 139);
}

.landing-real-showcase-mini-pill.is-active .landing-real-showcase-mini-index {
  color: rgb(79 70 229);
}

.landing-real-showcase-slide-layer.is-current.from-right {
  animation: landing-showcase-enter-from-right 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-real-showcase-slide-layer.is-current.from-left {
  animation: landing-showcase-enter-from-left 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-real-showcase-slide-layer.is-current.from-top {
  animation: landing-showcase-enter-from-top 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-real-showcase-slide-layer.is-current.from-bottom {
  animation: landing-showcase-enter-from-bottom 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-real-showcase-slide-layer.is-previous.from-right {
  animation: landing-showcase-exit-to-left 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-real-showcase-slide-layer.is-previous.from-left {
  animation: landing-showcase-exit-to-right 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-real-showcase-slide-layer.is-previous.from-top {
  animation: landing-showcase-exit-to-bottom 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-real-showcase-slide-layer.is-previous.from-bottom {
  animation: landing-showcase-exit-to-top 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes landing-showcase-scroll {
  0%,
  19% {
    transform: translateY(0);
  }
  26%,
  49% {
    transform: translateY(calc(-1 * (var(--showcase-scene-height) + var(--showcase-scene-gap))));
  }
  56%,
  79% {
    transform: translateY(calc(-2 * (var(--showcase-scene-height) + var(--showcase-scene-gap))));
  }
  88%,
  100% {
    transform: translateY(0);
  }
}

@keyframes landing-line-draw {
  0%,
  14% {
    stroke-dashoffset: 420;
  }
  24%,
  72% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -420;
  }
}

@keyframes landing-progress-shift {
  0%,
  100% {
    width: 64%;
  }
  50% {
    width: 84%;
  }
}

@keyframes landing-sheen {
  0%,
  100% {
    transform: translateX(-120%);
  }
  45%,
  65% {
    transform: translateX(120%);
  }
}

@keyframes landing-glow-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -12px, 0) scale(1.08);
  }
}

@keyframes landing-showcase-enter-from-right {
  from {
    opacity: 0;
    transform: translate3d(4%, 0, 0) scale(1.003);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes landing-showcase-enter-from-left {
  from {
    opacity: 0;
    transform: translate3d(-4%, 0, 0) scale(1.003);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes landing-showcase-enter-from-top {
  from {
    opacity: 0;
    transform: translate3d(0, -4%, 0) scale(1.003);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes landing-showcase-enter-from-bottom {
  from {
    opacity: 0;
    transform: translate3d(0, 4%, 0) scale(1.003);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes landing-showcase-exit-to-left {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(-4%, 0, 0) scale(0.998);
  }
}

@keyframes landing-showcase-exit-to-right {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(4%, 0, 0) scale(0.998);
  }
}

@keyframes landing-showcase-exit-to-top {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -4%, 0) scale(0.998);
  }
}

@keyframes landing-showcase-exit-to-bottom {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 4%, 0) scale(0.998);
  }
}

@keyframes landing-showcase-flash {
  0% {
    opacity: 0;
  }
  18% {
    opacity: 0.3;
  }
  42% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
  }
}

@keyframes landing-showcase-copy-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .landing-showcase-viewport {
    --showcase-scene-height: 404px;
    height: 428px;
  }

  .landing-real-showcase-frame {
    aspect-ratio: 1.22 / 1;
  }
}

@media (max-width: 767px) {
  .landing-showcase-viewport {
    --showcase-scene-height: 380px;
    height: 404px;
  }

  .landing-real-showcase-frame {
    aspect-ratio: 1.08 / 1;
  }

  .landing-real-showcase-notes {
    width: 100%;
    padding: 0.78rem 0.82rem 0.88rem;
  }

  .landing-real-showcase-mini-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    overflow: visible;
  }

  .landing-real-showcase-mini-pill {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0.42rem 0.58rem;
    text-align: center;
  }

  .landing-real-showcase-pill,
  .landing-real-showcase-badge,
  .landing-real-showcase-counter {
    font-size: 0.7rem;
  }
}

.signature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(71 85 105);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.dark .signature-chip {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgb(203 213 225);
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(108 99 255);
}

.site-footer-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 9, 18, 0.99) 0%, rgba(7, 12, 24, 1) 100%);
}

.site-footer-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(122, 92, 255, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(55, 184, 255, 0.08), transparent 22%);
}

.footer-link {
  position: relative;
  width: fit-content;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 1px;
  border-radius: 9999px;
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.98), rgba(34, 211, 238, 0.94));
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.32);
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: rgb(240 249 255);
  text-shadow:
    0 0 18px rgba(56, 189, 248, 0.24),
    0 0 32px rgba(125, 211, 252, 0.14);
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-link:focus-visible {
  outline: none;
}

.reveal-on-scroll {
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@layer utilities {
  .ease-spring {
    transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
  }
  
  .animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  
  .animation-delay-100 {
    animation-delay: 100ms;
  }
  
  .animation-delay-200 {
    animation-delay: 200ms;
  }
  
  .animation-delay-300 {
    animation-delay: 300ms;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      translate: 0 20px;
    }
    to {
      opacity: 1;
      translate: 0 0;
    }
  }
  
  @keyframes float {
    0% { translate: 0 0px; rotate: 0deg; }
    50% { translate: 0 -15px; rotate: 2deg; }
    100% { translate: 0 0px; rotate: 0deg; }
  }

  @keyframes float-reverse {
    0% { translate: 0 0px; rotate: 0deg; }
    50% { translate: 0 15px; rotate: -2deg; }
    100% { translate: 0 0px; rotate: 0deg; }
  }

  .animate-float-reverse {
    animation: float-reverse 7s ease-in-out infinite;
  }

  @keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
  }

  .animate-marquee {
    animation: marquee 25s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .premium-card-link:hover,
  .premium-card-link:focus-visible {
    transform: none;
  }

  .footer-link:hover,
  .footer-link:focus-visible {
    text-shadow: none;
  }

  .footer-link::after {
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .landing-real-showcase-notes-main-animated {
    animation: none !important;
  }
}

.cap-table-print-report {
  display: none;
  background: #ffffff;
  color: #111827;
}

.option-pool-print-report {
  display: none;
  background: #ffffff;
  color: #111827;
}

.anti-dilution-print-report {
  display: none;
  background: #ffffff;
  color: #111827;
}

.safe-print-report {
  display: none;
  background: #ffffff;
  color: #111827;
}

.cap-table-print-shell,
.option-pool-print-shell,
.anti-dilution-print-shell,
.safe-print-shell {
  background: #ffffff;
  color: #111827;
}

.cap-table-print-report table,
.option-pool-print-report table,
.anti-dilution-print-report table,
.safe-print-report table,
.cap-table-print-report tbody,
.option-pool-print-report tbody,
.anti-dilution-print-report tbody,
.safe-print-report tbody,
.cap-table-print-report tr,
.option-pool-print-report tr,
.anti-dilution-print-report tr,
.safe-print-report tr,
.cap-table-print-report td,
.option-pool-print-report td,
.anti-dilution-print-report td,
.safe-print-report td {
  background: #ffffff;
  color: #111827;
}

@media print {
  @page {
    margin: 0.6in;
    size: auto;
  }

  html,
  body,
  #root {
    background: #ffffff !important;
    color: #111827 !important;
    color-scheme: light !important;
  }

  .cap-table-print-report,
  .option-pool-print-report,
  .anti-dilution-print-report,
  .safe-print-report,
  .cap-table-print-shell,
  .option-pool-print-shell,
  .anti-dilution-print-shell,
  .safe-print-shell,
  .cap-table-print-header,
  .option-pool-print-header,
  .anti-dilution-print-header,
  .safe-print-header,
  .cap-table-print-section,
  .option-pool-print-section,
  .anti-dilution-print-section,
  .safe-print-section {
    background: #ffffff !important;
    color: #111827 !important;
    box-shadow: none !important;
    color-scheme: light !important;
  }

  .cap-table-print-report table,
  .option-pool-print-report table,
  .anti-dilution-print-report table,
  .safe-print-report table,
  .cap-table-print-report tbody,
  .option-pool-print-report tbody,
  .anti-dilution-print-report tbody,
  .safe-print-report tbody,
  .cap-table-print-report tr,
  .option-pool-print-report tr,
  .anti-dilution-print-report tr,
  .safe-print-report tr,
  .cap-table-print-report td,
  .option-pool-print-report td,
  .anti-dilution-print-report td,
  .safe-print-report td {
    background: #ffffff !important;
    color: #111827 !important;
  }

  body.print-cap-table-report {
    background: #ffffff !important;
    color: #111827 !important;
  }

  body.print-cap-table-report .cap-table-screen {
    display: none !important;
  }

  body.print-cap-table-report .cap-table-print-report {
    display: block !important;
  }

  body.print-safe-report {
    background: #ffffff !important;
    color: #111827 !important;
  }

  body.print-safe-report .safe-screen {
    display: none !important;
  }

  body.print-safe-report .safe-print-report {
    display: block !important;
  }

  body.print-option-pool-report {
    background: #ffffff !important;
    color: #111827 !important;
  }

  body.print-option-pool-report .option-pool-screen {
    display: none !important;
  }

  body.print-option-pool-report .option-pool-print-report {
    display: block !important;
  }

  body.print-anti-dilution-report {
    background: #ffffff !important;
    color: #111827 !important;
  }

  body.print-anti-dilution-report .anti-dilution-screen {
    display: none !important;
  }

  body.print-anti-dilution-report .anti-dilution-print-report {
    display: block !important;
  }

  .cap-table-print-shell {
    color: #111827;
    font-size: 12px;
    line-height: 1.5;
  }

  .option-pool-print-shell {
    color: #111827;
    font-size: 12px;
    line-height: 1.5;
  }

  .anti-dilution-print-shell {
    color: #111827;
    font-size: 12px;
    line-height: 1.5;
  }

  .safe-print-shell {
    color: #111827;
    font-size: 12px;
    line-height: 1.5;
  }

  .calculator-print-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
  }

  .calculator-print-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .calculator-print-source {
    margin: 2px 0 0;
    font-size: 11px;
    color: #64748b;
  }

  .cap-table-print-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 2px solid #cbd5e1;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }

  .option-pool-print-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 2px solid #cbd5e1;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }

  .anti-dilution-print-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 2px solid #cbd5e1;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }

  .safe-print-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 2px solid #cbd5e1;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }

  .cap-table-print-eyebrow {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f46e5;
  }

  .option-pool-print-eyebrow {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f46e5;
  }

  .anti-dilution-print-eyebrow {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f46e5;
  }

  .safe-print-eyebrow {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f46e5;
  }

  .cap-table-print-header h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
  }

  .option-pool-print-header h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
  }

  .anti-dilution-print-header h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
  }

  .safe-print-header h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
  }

  .cap-table-print-subtitle {
    margin: 6px 0 0;
    font-size: 15px;
    color: #475569;
  }

  .option-pool-print-subtitle {
    margin: 6px 0 0;
    font-size: 15px;
    color: #475569;
  }

  .anti-dilution-print-subtitle {
    margin: 6px 0 0;
    font-size: 15px;
    color: #475569;
  }

  .safe-print-subtitle {
    margin: 6px 0 0;
    font-size: 15px;
    color: #475569;
  }

  .cap-table-print-meta p {
    margin: 0 0 4px;
  }

  .option-pool-print-meta p {
    margin: 0 0 4px;
  }

  .anti-dilution-print-meta p {
    margin: 0 0 4px;
  }

  .safe-print-meta p {
    margin: 0 0 4px;
  }

  .cap-table-print-section {
    margin-top: 20px;
    break-inside: avoid;
  }

  .option-pool-print-section {
    margin-top: 20px;
    break-inside: avoid;
  }

  .option-pool-print-section[data-testid="option-pool-print-breakdown"] {
    break-inside: auto;
    page-break-inside: auto;
  }

  .anti-dilution-print-section {
    margin-top: 20px;
    break-inside: avoid;
  }

  .safe-print-section {
    margin-top: 20px;
    break-inside: avoid;
  }

  .safe-print-section[data-testid="safe-print-ownership-breakdown"] {
    break-inside: auto;
    page-break-inside: auto;
  }

  .cap-table-print-section h2 {
    margin: 0 0 12px;
    font-size: 16px;
  }

  .option-pool-print-section h2 {
    margin: 0 0 12px;
    font-size: 16px;
  }

  .anti-dilution-print-section h2 {
    margin: 0 0 12px;
    font-size: 16px;
  }

  .safe-print-section h2 {
    margin: 0 0 12px;
    font-size: 16px;
  }

  .cap-table-print-section h3 {
    margin: 0 0 8px;
    font-size: 13px;
  }

  .safe-print-section h3 {
    margin: 0 0 8px;
    font-size: 13px;
  }

  .cap-table-print-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .option-pool-print-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .anti-dilution-print-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .safe-print-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .cap-table-print-grid ul,
  .cap-table-print-issues {
    margin: 0;
    padding-left: 18px;
  }

  .safe-print-grid ul,
  .safe-print-issues {
    margin: 0;
    padding-left: 18px;
  }

  .option-pool-print-grid > div {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f8fafc;
  }

  .anti-dilution-print-grid > div {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f8fafc;
  }

  .option-pool-print-grid span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
  }

  .anti-dilution-print-grid span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
  }

  .option-pool-print-grid strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: #111827;
  }

  .anti-dilution-print-grid strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: #111827;
  }

  .cap-table-print-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .safe-print-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .cap-table-print-metrics > div {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f8fafc;
  }

  .safe-print-metrics > div {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f8fafc;
  }

  .cap-table-print-metrics span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
  }

  .safe-print-metrics span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
  }

  .cap-table-print-metrics strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: #111827;
  }

  .safe-print-metrics strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: #111827;
  }

  .cap-table-print-chart-card {
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 14px;
    background: #ffffff;
  }

  .cap-table-print-chart-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .option-pool-print-chart-card,
  .anti-dilution-print-chart-card,
  .safe-print-chart-card {
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 14px;
    background: #ffffff;
  }

  .option-pool-print-section[data-testid="option-pool-print-breakdown"] .option-pool-print-chart-card {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 10px;
  }

  .anti-dilution-print-section[data-testid="anti-dilution-print-ownership-comparison"] .anti-dilution-print-chart-card {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 10px;
  }

  .safe-print-section[data-testid="safe-print-ownership-breakdown"] .safe-print-chart-card {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 10px;
  }

  .option-pool-print-chart-image,
  .anti-dilution-print-chart-image,
  .safe-print-chart-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .option-pool-print-section[data-testid="option-pool-print-breakdown"] .option-pool-print-chart-image {
    max-width: 88%;
    margin: 0 auto;
  }

  .safe-print-section[data-testid="safe-print-ownership-breakdown"] .safe-print-chart-image {
    max-width: 88%;
    margin: 0 auto;
  }

  .cap-table-print-report table {
    width: 100%;
    border-collapse: collapse;
  }

  .option-pool-print-report table,
  .anti-dilution-print-report table {
    width: 100%;
    border-collapse: collapse;
  }

  .safe-print-report table {
    width: 100%;
    border-collapse: collapse;
  }

  .cap-table-print-report th,
  .cap-table-print-report td {
    border: 1px solid #cbd5e1;
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
  }

  .option-pool-print-report th,
  .option-pool-print-report td,
  .anti-dilution-print-report th,
  .anti-dilution-print-report td {
    border: 1px solid #cbd5e1;
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
  }

  .safe-print-report th,
  .safe-print-report td {
    border: 1px solid #cbd5e1;
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
  }

  .cap-table-print-report th {
    background: #eef2ff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #3730a3;
  }

  .option-pool-print-report th,
  .anti-dilution-print-report th {
    background: #eef2ff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #3730a3;
  }

  .safe-print-report th {
    background: #eef2ff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #3730a3;
  }

  .anti-dilution-print-issues {
    margin: 0;
    padding-left: 18px;
  }
}
