* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Funnel Sans", sans-serif;
  line-height: 1.6;
  color: #2f2f2f;
  background: #fafafa;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::selection {
  background: rgba(47, 47, 47, 0.3);
  color: #2f2f2f;
  border-radius: 4px;
}

::-moz-selection {
  background: rgba(47, 47, 47, 0.3);
  color: #2f2f2f;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 576px) {
  .hide-mobile {
    display: none !important;
  }
}

input,
textarea,
select {
  font-size: 16px;
}
@media (max-width: 576px) {
  input,
  textarea,
  select {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.9375rem;
  }
  button,
  .btn-primary,
  .btn-secondary {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.125rem;
  }
}
body.page-no-scroll {
  overflow-y: hidden;
}
body.page-no-scroll .main-wrapper {
  height: calc(100vh - 3.5rem);
  overflow: hidden;
}

.suspended-overlay {
  position: fixed;
  top: 3.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  z-index: 100;
}

.suspended-overlay-content {
  text-align: center;
  max-width: 420px;
  padding: 2rem;
}
.suspended-overlay-content svg {
  color: #EF4444;
  margin-bottom: 1rem;
}
.suspended-overlay-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
}
.suspended-overlay-content p {
  color: #6e6e6e;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.suspended-support-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #2f2f2f;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.suspended-support-link:hover {
  background: #000000;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.spinner-small {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 1rem;
}

.text-muted {
  color: #6e6e6e;
}

.text-center {
  text-align: center;
}

.toast-success {
  position: fixed;
  bottom: 2rem;
  left: calc(50% + 1.75rem);
  transform: translateX(-50%);
  background-color: #10B981;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10000;
  animation: toastSlideUp 0.3s ease;
}
.toast-success code {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.8125rem;
  margin-left: 0.25rem;
}
.toast-success.fade-out {
  animation: toastFadeOut 0.3s ease forwards;
}

.toast-error {
  position: fixed;
  bottom: 2rem;
  left: calc(50% + 1.75rem);
  transform: translateX(-50%);
  background-color: #EF4444;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10000;
  animation: toastSlideUp 0.3s ease;
}
.toast-error.fade-out {
  animation: toastFadeOut 0.3s ease forwards;
}

.toast-warning {
  position: fixed;
  bottom: 2rem;
  left: calc(50% + 1.75rem);
  transform: translateX(-50%);
  background-color: #f59e0b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10000;
  animation: toastSlideUp 0.3s ease;
}
.toast-warning.fade-out {
  animation: toastFadeOut 0.3s ease forwards;
}

@keyframes toastSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes toastFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (max-width: 480px) {
  .toast-success,
  .toast-error,
  .toast-warning {
    left: 50%;
    max-width: calc(100% - 2rem);
    text-align: center;
  }
}
.landing-page {
  background-color: #fafafa;
  min-height: 100vh;
}
.landing-page .nav-link-icons {
  display: none;
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  padding: 0 1rem;
  height: 70px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.landing-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.landing-nav-content .nav-links {
  display: flex;
  align-items: center;
  flex: 1;
}
@media (max-width: 768px) {
  .landing-nav-content .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
  }
  .landing-nav-content .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
.landing-nav-content .nav-center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .landing-nav-content .nav-center {
    position: static;
    transform: none;
    order: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .landing-nav-content .nav-center .nav-link-pill {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    justify-content: flex-start;
    font-size: 0.9375rem;
  }
  .landing-nav-content .nav-center .nav-link-pill svg {
    width: 18px;
    height: 18px;
  }
  .landing-nav-content .nav-center .nav-link-pill:hover {
    transform: none;
  }
}
.landing-nav-content .nav-right {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .landing-nav-content .nav-right {
    display: contents;
    margin-left: 0;
  }
}
.landing-nav-content .nav-auth {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  position: relative;
}
.landing-nav-content .nav-auth::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.25rem;
  background: #e0e0e0;
}
.landing-nav-content .nav-auth .nav-link {
  font-size: 0.8125rem;
  padding: 0.375rem 0.5rem;
}
.landing-nav-content .nav-auth .btn-primary {
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
}
@media (max-width: 768px) {
  .landing-nav-content .nav-auth {
    order: 1;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #e0e0e0;
  }
  .landing-nav-content .nav-auth::before {
    display: none;
  }
  .landing-nav-content .nav-auth .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.875rem;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-weight: 600;
  }
  .landing-nav-content .nav-auth .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.875rem;
  }
}
.landing-nav-content .nav-dropdown-group {
  padding: 0.5rem 0;
  position: relative;
}
.landing-nav-content .nav-dropdown-group:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.landing-nav-content .nav-dropdown-group .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.15s ease;
  font-size: 0.8125rem;
}
.landing-nav-content .nav-dropdown-group .dropdown-trigger:hover {
  background-color: #f5f5f5;
}
.landing-nav-content .nav-dropdown-group .dropdown-trigger .chevron-icon {
  color: #6e6e6e;
  transition: transform 0.2s;
  width: 14px;
  height: 14px;
}
.landing-nav-content .nav-dropdown-group:hover .dropdown-trigger .chevron-icon {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .landing-nav-content .nav-dropdown-group {
    order: 3;
    width: 100%;
    padding: 1rem 0 0 0;
    margin-top: 0;
  }
  .landing-nav-content .nav-dropdown-group .dropdown-trigger {
    display: none;
  }
  .landing-nav-content .nav-dropdown-group .nav-dropdown-menu {
    display: block !important;
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }
  .landing-nav-content .nav-dropdown-group .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .landing-nav-content .nav-dropdown-group .dropdown-col {
    padding: 0;
    background: transparent !important;
  }
  .landing-nav-content .nav-dropdown-group .dropdown-header {
    color: #6e6e6e;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-left: 0;
  }
  .landing-nav-content .nav-dropdown-group .dropdown-header:first-child {
    margin-top: 0;
  }
}
.landing-nav-content .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  text-decoration: none;
  position: relative;
  z-index: 1001;
}
.landing-nav-content .logo .logo-img {
  height: 1.75rem;
  width: auto;
}
.landing-nav-content .mobile-menu-toggle {
  display: none;
  padding: 10px;
  margin: -10px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
@media (max-width: 768px) {
  .landing-nav-content .mobile-menu-toggle {
    display: block;
  }
}
.landing-nav-content .mobile-menu-toggle .hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.landing-nav-content .mobile-menu-toggle .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  width: 24px;
  height: 2px;
  background-color: #2f2f2f;
  border-radius: 2px;
  position: absolute;
  transition: all 0.2s ease;
}
.landing-nav-content .mobile-menu-toggle .hamburger-inner::before, .landing-nav-content .mobile-menu-toggle .hamburger-inner::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2f2f2f;
  border-radius: 2px;
  position: absolute;
  transition: all 0.2s ease;
}
.landing-nav-content .mobile-menu-toggle .hamburger-inner::before {
  top: -8px;
}
.landing-nav-content .mobile-menu-toggle .hamburger-inner::after {
  bottom: -8px;
}
.landing-nav-content .mobile-menu-toggle.active .hamburger-inner {
  background-color: transparent;
}
.landing-nav-content .mobile-menu-toggle.active .hamburger-inner::before {
  top: 0;
  transform: rotate(45deg);
}
.landing-nav-content .mobile-menu-toggle.active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.landing-nav-content .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2f2f2f;
  text-decoration: none;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.landing-nav-content .nav-link:hover {
  color: #000000;
}
.landing-nav-content .nav-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.625rem;
  border-radius: 2rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.8125rem;
}
.landing-nav-content .nav-link-pill svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.landing-nav-content .nav-link-pill:hover {
  transform: translateY(-1px);
}
.landing-nav-content .nav-link-pill.blue {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.15);
  color: #3B82F6;
}
.landing-nav-content .nav-link-pill.blue:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}
.landing-nav-content .nav-link-pill.purple {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.15);
  color: #8B5CF6;
}
.landing-nav-content .nav-link-pill.purple:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
}
.landing-nav-content .nav-link-pill.pink {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.15);
  color: #EC4899;
}
.landing-nav-content .nav-link-pill.pink:hover {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.25);
}
.landing-nav-content .nav-link-pill.cyan {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.15);
  color: #06B6D4;
}
.landing-nav-content .nav-link-pill.cyan:hover {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.25);
}
.landing-nav-content .nav-link-pill.green {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
  color: #10B981;
}
.landing-nav-content .nav-link-pill.green:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}
.landing-nav-content .nav-link-pill.orange {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
}
.landing-nav-content .nav-link-pill.orange:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
}

.nav-pill-dropdown {
  position: relative;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .nav-pill-dropdown {
    padding: 0;
  }
}
.nav-pill-dropdown .nav-link-pill {
  cursor: pointer;
}
.nav-pill-dropdown .pill-chevron {
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
  margin-left: 0.125rem;
}
@media (min-width: 769px) {
  .nav-pill-dropdown:hover .pill-chevron {
    opacity: 1;
    transform: rotate(180deg);
  }
  .nav-pill-dropdown:hover .pill-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 768px) {
  .nav-pill-dropdown .pill-chevron {
    display: none;
  }
}

.pill-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.15);
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1001;
}
.pill-dropdown-menu.pill-dropdown-cols {
  min-width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .pill-dropdown-menu {
    display: none;
  }
}

.pill-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.15s;
  white-space: nowrap;
}
.pill-dropdown-item:hover {
  background-color: #f5f5f5;
}
.pill-dropdown-item .icon-box {
  width: 1.625rem;
  height: 1.625rem;
}
.pill-dropdown-item .icon-box svg {
  width: 0.875rem;
  height: 0.875rem;
}

.pill-item-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #2f2f2f;
}

.pill-item-count {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6e6e6e;
  background: #f5f5f5;
  padding: 0.125rem 0.5rem;
  border-radius: 1rem;
}

.pill-item-badge {
  margin-left: auto;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.125rem 0.4rem;
  border-radius: 0.25rem;
}
.pill-item-badge.free {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.hero {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}

.nav-dropdown-group {
  padding: 1rem 0;
  position: relative;
}
.nav-dropdown-group:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-group .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.15s ease;
}
.nav-dropdown-group .dropdown-trigger:hover {
  background-color: #f5f5f5;
}
.nav-dropdown-group .dropdown-trigger .chevron-icon {
  color: #6e6e6e;
  transition: transform 0.2s;
}
.nav-dropdown-group:hover .dropdown-trigger .chevron-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  transform: translateY(10px);
  width: 480px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1001;
}
@media (max-width: 768px) {
  .nav-dropdown-menu {
    display: none;
  }
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.dropdown-col {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dropdown-col.bg-subtle {
  background: #fafafa;
  border-radius: 0.5rem;
}

.dropdown-header {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6e6e6e;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}
.dropdown-item:hover {
  background-color: #f5f5f5;
}

.item-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2f2f2f;
}

.item-desc {
  font-size: 0.75rem;
  color: #6e6e6e;
}

.icon-box {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  flex-shrink: 0;
}
.icon-box svg {
  width: 1.125rem;
  height: 1.125rem;
}
.icon-box.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}
.icon-box.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}
.icon-box.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.icon-box.orange {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.icon-box.pink {
  background: rgba(236, 72, 153, 0.1);
  color: #EC4899;
}
.icon-box.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}
.icon-box.gray {
  background: rgba(110, 110, 110, 0.1);
  color: #6e6e6e;
}
.icon-box.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.icon-box.indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 2.5rem;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #2f2f2f 0%, #6e6e6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #6e6e6e;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  width: 180px;
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: #2f2f2f;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-primary:hover {
  background-color: #000000;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #2f2f2f;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-secondary:hover {
  background-color: #f5f5f5;
  border-color: #c7c7c7;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
}

.hero-visual {
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.icon-showcase-wrapper {
  overflow: hidden;
  max-width: 1100px;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.icon-showcase {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.showcase-icon {
  width: 4rem;
  height: 4rem;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.showcase-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #2f2f2f;
}

.features {
  padding: 3rem 0;
  background-color: #fafafa;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2f2f2f;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.features-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2f2f2f;
}

.landing-footer {
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .footer-content {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2f2f2f;
}
.footer-logo .logo-img {
  height: 1.25rem;
  width: auto;
}

.footer-copy {
  font-size: 0.8125rem;
  color: #6e6e6e;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: #6e6e6e;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: #2f2f2f;
}

.landing-footer-v4 {
  padding: 3rem 2rem 1.5rem;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
}

.footer-v4-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-v4-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .footer-v4-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .footer-v4-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer-v4-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.footer-v4-brand .footer-logo .logo-img {
  height: 1.5rem;
  width: auto;
}
.footer-v4-brand .footer-tagline {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.footer-v4-col .footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6e6e6e;
  margin: 0 0 1rem 0;
}
.footer-v4-col .footer-col-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-v4-col .footer-col-links li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem;
  margin: -0.375rem;
  font-size: 0.875rem;
  color: #2f2f2f;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color 0.15s ease;
}
.footer-v4-col .footer-col-links li a:hover {
  background-color: #f5f5f5;
}

.footer-icon-box {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.footer-icon-box svg {
  width: 0.875rem;
  height: 0.875rem;
}
.footer-icon-box.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}
.footer-icon-box.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}
.footer-icon-box.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.footer-icon-box.orange {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.footer-icon-box.pink {
  background: rgba(236, 72, 153, 0.1);
  color: #EC4899;
}
.footer-icon-box.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}
.footer-icon-box.gray {
  background: rgba(110, 110, 110, 0.1);
  color: #6e6e6e;
}

.footer-v4-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
.footer-v4-bottom .footer-copy {
  font-size: 0.8125rem;
  color: #6e6e6e;
  margin: 0;
}

.hero-note {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin-top: 0.75rem;
}

.how-it-works {
  padding: 4rem 0;
  background-color: #ffffff;
}

.how-it-works-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6e6e6e;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.step-card {
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.9375rem;
  color: #6e6e6e;
  line-height: 1.6;
  margin: 0;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.pricing-preview {
  padding: 4rem 0;
  background-color: #fafafa;
}

.pricing-preview-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card.featured {
  border-color: #2f2f2f;
  box-shadow: 0 0 0 1px #2f2f2f;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.pricing-card:hover.featured {
  transform: translateY(-4px) scale(1.05);
}
@media (max-width: 768px) {
  .pricing-card:hover.featured {
    transform: translateY(-4px);
  }
}
.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 1rem;
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2f2f2f;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f2f2f;
}

.price-period {
  font-size: 1rem;
  color: #6e6e6e;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-features li {
  font-size: 0.9375rem;
  color: #6e6e6e;
  padding: 0.5rem 0;
  border-top: 1px solid #e0e0e0;
}
.pricing-features li:first-child {
  border-top: none;
  padding-top: 0;
}

.pricing-cta {
  text-align: center;
}

.library-preview {
  padding: 4rem 0;
  background-color: #ffffff;
}

.library-preview-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.library-style-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.style-tab {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6e6e6e;
  cursor: pointer;
  transition: all 0.3s ease;
}
.style-tab:hover {
  border-color: #2f2f2f;
  color: #2f2f2f;
}
.style-tab.active {
  background: #2f2f2f;
  border-color: #2f2f2f;
  color: #fafafa;
}

.library-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .library-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

.library-preview-grid.hidden {
  display: none;
}

.library-icon-preview {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #fafafa 0%, whitesmoke 100%);
  border: 1px solid rgba(224, 224, 224, 0.6);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.library-icon-preview:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.library-icon-preview svg,
.library-icon-preview img {
  width: 55%;
  height: 55%;
  color: #2f2f2f;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.library-icon-preview:hover svg, .library-icon-preview:hover img {
  transform: scale(1.08);
}

.library-no-icons {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
  color: #6e6e6e;
  font-size: 0.875rem;
}

.library-cta {
  text-align: center;
}

.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  text-align: center;
}

.final-cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}
.final-cta-container h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .final-cta-container h2 {
    font-size: 1.75rem;
  }
}
.final-cta-container p {
  font-size: 1.125rem;
  color: #6e6e6e;
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.product-hunt-badge {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.product-hunt-badge img {
  transition: opacity 0.2s;
}
.product-hunt-badge img:hover {
  opacity: 0.9;
}

.terms-page {
  background-color: #fafafa;
}

.terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.terms-content {
  padding: 0.25rem;
}
@media (max-width: 576px) {
  .terms-content {
    padding: 2rem 1.5rem;
  }
}
.terms-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .terms-content h1 {
    font-size: 1.5rem;
  }
}

.terms-updated {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.terms-section {
  margin-bottom: 2rem;
}
.terms-section:last-child {
  margin-bottom: 0;
}
.terms-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
}
.terms-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 1rem 0 0.5rem;
}
.terms-section p {
  font-size: 0.9375rem;
  color: #6e6e6e;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.terms-section p:last-child {
  margin-bottom: 0;
}
.terms-section p strong {
  color: #2f2f2f;
  font-weight: 600;
}
.terms-section ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}
.terms-section ul li {
  font-size: 0.9375rem;
  color: #6e6e6e;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.terms-section ul li:last-child {
  margin-bottom: 0;
}
.terms-section a {
  color: #2f2f2f;
  text-decoration: none;
}
.terms-section a:hover {
  text-decoration: underline;
}

.docs-page {
  background-color: #fafafa;
}

.docs-layout {
  display: flex;
  min-height: calc(100vh - 140px);
  padding-top: 70px;
}

.docs-sidebar {
  width: 280px;
  background-color: #ffffff;
  border-right: 1px solid #e0e0e0;
  position: fixed;
  top: 70px;
  left: 0;
  height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .docs-sidebar {
    transform: translateX(-100%);
  }
  .docs-sidebar.active {
    transform: translateX(0);
  }
}

.docs-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}
.docs-sidebar-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
}

.docs-nav {
  padding: 1rem 0;
}

.docs-nav-section {
  margin-bottom: 1.5rem;
}

.docs-nav-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6e6e6e;
  padding: 0.5rem 1.5rem;
  margin: 0;
}

.docs-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.docs-nav-link {
  display: block;
  padding: 0.45rem 1.5rem;
  color: #6e6e6e;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: background-color 0.2s, color 0.2s;
  border-left: 3px solid transparent;
}
.docs-nav-link:hover {
  background-color: #f5f5f5;
  color: #2f2f2f;
}
.docs-nav-link.active {
  background-color: rgba(59, 130, 246, 0.04);
  border-left-color: #3b82f6;
  color: #2f2f2f;
  font-weight: 500;
}

.docs-sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .docs-sidebar-toggle {
    display: flex;
  }
}
.docs-sidebar-toggle svg {
  width: 24px;
  height: 24px;
}

.docs-main {
  flex: 1;
  margin-left: 280px;
  min-width: 0;
}
@media (max-width: 768px) {
  .docs-main {
    margin-left: 0;
  }
}

.docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 576px) {
  .docs-content {
    padding: 1.5rem;
  }
}

.docs-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.docs-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 576px) {
  .docs-title {
    font-size: 1.75rem;
  }
}

.docs-subtitle {
  font-size: 1.0625rem;
  color: #6e6e6e;
  margin: 0;
  line-height: 1.65;
  max-width: 640px;
}

.docs-section {
  margin-bottom: 3rem;
  scroll-margin-top: 90px;
}
.docs-section + .docs-section {
  padding-top: 0.5rem;
}

.docs-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e0e0e0;
}
.docs-section-title svg {
  width: 22px;
  height: 22px;
  color: #3b82f6;
  flex-shrink: 0;
}

.docs-section-content {
  color: #2f2f2f;
  line-height: 1.7;
}
.docs-section-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 2rem 0 0.75rem 0;
  padding: 0.5rem 0 0.5rem 0.875rem;
  border-left: 3px solid #e0e0e0;
}
.docs-section-content h3:first-child {
  margin-top: 0;
}
.docs-section-content h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 1.5rem 0 0.5rem 0;
}
.docs-section-content p {
  margin: 0 0 1rem 0;
  font-size: 0.9375rem;
}
.docs-section-content ul,
.docs-section-content ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}
.docs-section-content li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.docs-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.docs-feature-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}
.docs-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.docs-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.docs-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2f2f2f;
}

.docs-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 0.5rem 0;
}

.docs-feature-desc {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin: 0;
  line-height: 1.5;
}

.docs-code {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  overflow-x: auto;
  position: relative;
}
.docs-code code {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.8125rem;
  color: #2f2f2f;
  line-height: 1.7;
  white-space: pre;
  display: block;
}

.docs-code-copy {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #6e6e6e;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s, border-color 0.2s;
}
.docs-code-copy:hover {
  color: #2f2f2f;
  border-color: #c7c7c7;
}
.docs-code-copy.copied {
  color: #27ae60;
  border-color: #27ae60;
}
.docs-code:hover .docs-code-copy {
  opacity: 1;
}

.docs-inline-code {
  background-color: rgba(47, 47, 47, 0.06);
  border: 1px solid rgba(47, 47, 47, 0.1);
  padding: 0.15rem 0.45rem;
  border-radius: 5px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.8em;
  color: #f43f5e;
}

.docs-steps {
  counter-reset: step-counter;
  margin: 1.5rem 0;
}

.docs-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}
.docs-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.docs-step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8125rem;
}

.docs-step-content {
  flex: 1;
}
.docs-step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 0.5rem 0;
}
.docs-step-content p {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin: 0;
  line-height: 1.6;
}

.docs-note {
  background-color: rgba(59, 130, 246, 0.04);
  border-left: 4px solid #3b82f6;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #2f2f2f;
}
.docs-note p {
  margin: 0;
  font-size: 0.875rem;
  color: #2f2f2f;
}
.docs-note strong {
  color: #3b82f6;
}

.docs-tip {
  background-color: rgba(39, 174, 96, 0.06);
  border-left-color: #27ae60;
}
.docs-tip strong {
  color: #27ae60;
}

.docs-warning {
  background-color: rgba(245, 158, 11, 0.08);
  border-left: 4px solid #F59E0B;
  border-radius: 0 8px 8px 0;
  padding: 1.125rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #2f2f2f;
}
.docs-warning strong {
  color: #c57f08;
}

.docs-endpoint-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.docs-required {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #f43f5e;
  background: rgba(244, 63, 94, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.35rem;
  vertical-align: middle;
  font-family: "Funnel Sans", sans-serif;
}

.docs-image {
  margin: 1.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.docs-image img {
  width: 100%;
  height: auto;
  display: block;
}

.docs-image-caption {
  background-color: #f5f5f5;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #6e6e6e;
  text-align: center;
}

.docs-toc {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}
.docs-toc h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: #6e6e6e;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
}
.docs-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
@media (max-width: 576px) {
  .docs-toc ul {
    columns: 1;
  }
}
.docs-toc li {
  margin-bottom: 0.375rem;
  break-inside: avoid;
}
.docs-toc li:last-child {
  margin-bottom: 0;
}
.docs-toc a {
  color: #6e6e6e;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s;
  display: inline-block;
  padding: 0.2rem 0;
}
.docs-toc a:hover {
  color: #2f2f2f;
}

.docs-kbd {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.75rem;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.docs-flags-table {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  margin: 1rem 0;
}

.docs-flag-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(224, 224, 224, 0.6);
  transition: background-color 0.15s ease;
}
.docs-flag-row:nth-child(even) {
  background-color: rgba(245, 245, 245, 0.5);
}
.docs-flag-row:last-child {
  border-bottom: none;
}
@media (max-width: 576px) {
  .docs-flag-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.docs-flag-header {
  background: #f5f5f5;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.docs-flag-header .docs-flag-name,
.docs-flag-header .docs-flag-description {
  font-size: 0.75rem;
}

.docs-flag-name {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #2f2f2f;
}
.docs-flag-name code em {
  font-style: italic;
  opacity: 0.7;
}

.docs-flag-desc {
  font-size: 0.8125rem;
  color: #6e6e6e;
  line-height: 1.55;
}

.docs-flag-description {
  font-size: 0.8125rem;
  color: #6e6e6e;
  line-height: 1.55;
}

.docs-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
@media (max-width: 768px) {
  .docs-overlay.active {
    display: block;
  }
}

.docs-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.docs-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.docs-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #cccccc;
}
.docs-hub-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
}
.docs-hub-card p {
  font-size: 0.85rem;
  color: #6e6e6e;
  margin: 0;
  line-height: 1.5;
}

.docs-hub-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.docs-hub-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.docs-hub-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.docs-hub-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.docs-hub-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.docs-hub-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.docs-hub-icon.pink {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}
.docs-hub-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}
.docs-hub-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.docs-hub-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.docs-hub-icon.indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}
.docs-hub-icon.yellow {
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

.docs-skills-section {
  margin: 2rem 0;
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.docs-skills-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 0.375rem;
}
.docs-skills-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #8b5cf6;
}

.docs-skills-desc {
  font-size: 0.85rem;
  color: #6e6e6e;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.docs-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .docs-skills-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.docs-skill-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  min-height: 0;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.docs-skill-card:hover {
  border-color: #c7c7c7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.docs-skill-card:hover .docs-skill-dl {
  color: #8b5cf6;
}
.docs-skill-card.disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.docs-skill-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.docs-skill-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.docs-skill-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.docs-skill-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.docs-skill-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.docs-skill-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.docs-skill-info {
  flex: 1;
  min-width: 0;
}
.docs-skill-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
}
.docs-skill-info p {
  font-size: 0.775rem;
  color: #6e6e6e;
  margin: 0.125rem 0 0;
  line-height: 1.4;
}

.docs-skill-dl {
  width: 1.125rem;
  height: 1.125rem;
  color: #6e6e6e;
  flex-shrink: 0;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.docs-skill-badge {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #6e6e6e;
  background: rgba(224, 224, 224, 0.5);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

.docs-skill-bundle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.625rem 1rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6e6e6e;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.docs-skill-bundle svg {
  width: 1rem;
  height: 1rem;
}
.docs-skill-bundle:hover {
  border-color: #c7c7c7;
  color: #8b5cf6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.docs-skills-curl {
  margin-top: 1.25rem;
  text-align: left;
}
.docs-skills-curl .docs-skills-curl-label {
  font-size: 0.75rem;
  color: #6e6e6e;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.docs-skills-curl .docs-code {
  margin: 0;
}

.docs-page .landing-footer,
.docs-page .landing-footer-v4 {
  margin-left: 280px;
}
@media (max-width: 768px) {
  .docs-page .landing-footer,
  .docs-page .landing-footer-v4 {
    margin-left: 0;
  }
}

.error-page {
  background-color: #fafafa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.error-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-icon {
  margin-bottom: 1.5rem;
  color: #6e6e6e;
}
.error-icon svg {
  width: 80px;
  height: 80px;
  stroke-width: 1.5;
}
.error-icon.error-icon-warning {
  color: #f59e0b;
}

.error-code {
  font-size: 7rem;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0;
  line-height: 1;
  letter-spacing: -4px;
}
@media (max-width: 576px) {
  .error-code {
    font-size: 5rem;
  }
}

.error-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 1rem 0 0.5rem;
}
@media (max-width: 576px) {
  .error-title {
    font-size: 1.5rem;
  }
}

.error-message {
  font-size: 1rem;
  color: #6e6e6e;
  margin: 0 0 2rem;
  line-height: 1.6;
  max-width: 360px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.error-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.error-btn.error-btn-primary {
  background-color: #2f2f2f;
  color: #ffffff;
}
.error-btn.error-btn-primary:hover {
  background-color: #1b1b1b;
  transform: translateY(-1px);
}
.error-btn.error-btn-secondary {
  background-color: #f5f5f5;
  color: #2f2f2f;
  border: 1px solid #e0e0e0;
}
.error-btn.error-btn-secondary:hover {
  background-color: #ededed;
  border-color: #c7c7c7;
  transform: translateY(-1px);
}

.error-footer {
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.error-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #6e6e6e;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.error-logo img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}
.error-logo:hover {
  color: #2f2f2f;
}

/*# sourceMappingURL=style-docs.css.map */
