@charset "UTF-8";
* {
  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;
}

.app-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.app-modal.active {
  opacity: 1;
  visibility: visible;
}
.app-modal.hidden {
  display: none;
}

.app-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.app-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.2s ease;
}
.app-modal.active .app-modal-content {
  transform: scale(1);
}
.app-modal-content,
.app-modal-content * {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.app-modal-content::-webkit-scrollbar,
.app-modal-content *::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.app-modal-content::-webkit-scrollbar-track,
.app-modal-content *::-webkit-scrollbar-track {
  background: transparent;
}
.app-modal-content::-webkit-scrollbar-thumb,
.app-modal-content *::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.app-modal-content::-webkit-scrollbar-thumb:hover,
.app-modal-content *::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.app-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.app-modal-header .app-modal-title {
  margin: 0;
}
.app-modal-header .modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6e6e6e;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
}
.app-modal-header .modal-close-btn:hover {
  background-color: #f5f5f5;
  color: #2f2f2f;
}

.app-modal-title {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
}

.alert-modal-message {
  margin: 0 0 1.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #2f2f2f;
}

.app-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-cancel,
.btn-apply {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
}
.btn-cancel:hover,
.btn-apply:hover {
  transform: translateY(-1px);
}
.btn-cancel:active,
.btn-apply:active {
  transform: translateY(0);
}

.btn-cancel {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #2f2f2f;
}
.btn-cancel:hover {
  background-color: #e8e8e8;
  border-color: #c7c7c7;
}

.btn-apply {
  background-color: #2f2f2f;
  color: #ffffff;
}
.btn-apply:hover {
  background-color: #000000;
}
.btn-apply.btn-danger {
  background-color: #e74c3c;
}
.btn-apply.btn-danger:hover {
  background-color: #df2e1b;
}

.cdn-modal-content {
  max-width: 600px;
  width: 90%;
}

.cdn-modal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.cdn-modal-header svg {
  color: #2f2f2f;
  flex-shrink: 0;
}
.cdn-modal-header .app-modal-title {
  flex: 1;
  margin: 0;
}
.cdn-modal-header .modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6e6e6e;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.15s ease;
}
.cdn-modal-header .modal-close-btn:hover {
  background-color: #f5f5f5;
  color: #2f2f2f;
}

.cdn-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.install-step h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 0.75rem 0;
}

.cdn-code-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
}
.cdn-code-block code {
  flex: 1;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.875rem;
  color: #2f2f2f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cdn-code-block code #cdnUrlModal {
  color: #2f2f2f;
  font-weight: 500;
}

.btn-copy-cdn {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2f2f2f;
  transition: all 0.15s ease;
  padding: 0;
}
.btn-copy-cdn svg {
  width: 16px;
  height: 16px;
}
.btn-copy-cdn:hover {
  background-color: #a2a2a2;
  border-color: #2f2f2f;
  color: #2f2f2f;
}
.btn-copy-cdn:active {
  transform: scale(0.95);
}

.install-instructions {
  padding-left: 1.5rem;
  margin: 0;
}
.install-instructions li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #2f2f2f;
}
.install-instructions li code {
  background: #f5f5f5;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8125rem;
  border: 1px solid #e0e0e0;
  color: #2f2f2f;
}
.install-instructions li:last-child {
  margin-bottom: 0;
}

.install-features {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  font-size: 0.8125rem;
  color: #2f2f2f;
}
.feature-badge svg {
  width: 14px;
  height: 14px;
  color: #2f2f2f;
  flex-shrink: 0;
}

.cdn-modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  gap: 1rem;
}

.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;
  }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(110, 110, 110, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(110, 110, 110, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 120% 70% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 120% 70% at 50% 0%, black 30%, transparent 75%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(47, 47, 47, 0.08);
  border: 1px solid rgba(47, 47, 47, 0.15);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2f2f2f;
  margin-bottom: 2rem;
}
.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-v4-subtitle {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-v4-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .hero-v4-cta {
    flex-direction: column;
    align-items: center;
  }
}

.hero-v4-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6e6e6e;
}
@media (max-width: 576px) {
  .hero-v4-trust {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.hero-v4-trust .trust-divider {
  width: 4px;
  height: 4px;
  background: #e0e0e0;
  border-radius: 50%;
}
@media (max-width: 576px) {
  .hero-v4-trust .trust-divider {
    display: none;
  }
}

.btn-v4-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #2f2f2f;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(47, 47, 47, 0.25);
}
.btn-v4-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.btn-v4-primary:hover {
  background: #1b1b1b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 47, 47, 0.3);
}
.btn-v4-primary:hover svg {
  transform: translateX(3px);
}

.btn-v4-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #ffffff;
  color: #2f2f2f;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-v4-secondary:hover {
  background: #f5f5f5;
  border-color: #c7c7c7;
}

.btn-v4-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #2f2f2f;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-v4-outline:hover {
  background: #f5f5f5;
}

.btn-v4-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-v4-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: #6e6e6e;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-v4-ghost:hover {
  color: #2f2f2f;
  background: rgba(224, 224, 224, 0.3);
}

.social-proof {
  padding: 2rem 2rem;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.social-proof-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .social-proof-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.proof-text {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin: 0;
}

.proof-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 2rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.proof-tag svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}
.proof-tag.tag-devs {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}
.proof-tag.tag-designers {
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.2);
  color: #EC4899;
}
.proof-tag.tag-indie {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10B981;
}
.proof-tag.tag-marketing {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}
.proof-tag.tag-creators {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}
.proof-tag:hover {
  transform: translateY(-1px);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(47, 47, 47, 0.1);
  color: #2f2f2f;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.section-eyebrow svg {
  width: 14px;
  height: 14px;
}
.section-eyebrow.blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #2563EB;
}
.section-eyebrow.purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #7C3AED;
}
.section-eyebrow.green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
}
.section-eyebrow.orange {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #D97706;
}
.section-eyebrow.pink {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
  color: #DB2777;
}
.section-eyebrow.cyan {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #0891B2;
}
.section-eyebrow.teal {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  color: #0d9488;
}
.section-eyebrow.indigo {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #4f46e5;
}

.section-title-v4 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (max-width: 768px) {
  .section-title-v4 {
    font-size: 1.75rem;
  }
}

.section-desc {
  font-size: 0.875rem;
  color: #737373;
  margin-top: 0.75rem;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature-split.feature-split-reverse {
  direction: rtl;
}
.feature-split.feature-split-reverse > * {
  direction: ltr;
}
@media (max-width: 768px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-split.feature-split-reverse {
    direction: ltr;
  }
}

.feature-split-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
@media (max-width: 768px) {
  .feature-split-content h2 {
    font-size: 1.75rem;
  }
}

.feature-description {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.feature-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.feature-list li strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}
.feature-list li span {
  font-size: 0.8125rem;
  color: #737373;
  line-height: 1.5;
}

.feature-list-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-list-icon svg {
  width: 14px;
  height: 14px;
}
.feature-list-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.feature-list-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.feature-list-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.feature-list-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.feature-list-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.feature-list-icon.rose {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}
.feature-list-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}
.feature-list-icon.pink {
  background: rgba(236, 72, 153, 0.1);
  color: #EC4899;
}

.feature-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.library-v4 {
  padding: 5rem 2rem;
  background: #ffffff;
}

.library-v4-container {
  max-width: 1100px;
  margin: 0 auto;
}

.library-v4-styles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
  .library-v4-styles {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .library-v4-styles {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.style-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.style-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 47, 47, 0.3);
}
.style-card:hover .style-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.style-card:hover .style-card-preview img {
  transform: scale(1.08);
}
.style-card[data-style=line] .style-card-preview {
  background: rgba(59, 130, 246, 0.06);
}
.style-card[data-style=glyph] .style-card-preview {
  background: rgba(139, 92, 246, 0.06);
}
.style-card[data-style=outline] .style-card-preview {
  background: rgba(20, 184, 166, 0.06);
}
.style-card[data-style=pixel] .style-card-preview {
  background: rgba(249, 115, 22, 0.06);
}
.style-card[data-style=isometric] .style-card-preview {
  background: rgba(6, 182, 212, 0.06);
}
.style-card[data-style=photorealistic] .style-card-preview {
  background: rgba(244, 63, 94, 0.06);
}
.style-card[data-style=product-shot] .style-card-preview {
  background: rgba(245, 158, 11, 0.06);
}
.style-card[data-style=popart] .style-card-preview {
  background: rgba(236, 72, 153, 0.06);
}
.style-card[data-style=oil-painting] .style-card-preview {
  background: rgba(99, 102, 241, 0.06);
}

.style-card-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #f5f5f5;
}
.style-card-preview img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .style-card-preview {
    padding: 1.5rem;
  }
  .style-card-preview img {
    width: 48px;
    height: 48px;
  }
}

.style-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
}

.style-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.style-card-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.style-card-count {
  font-size: 0.75rem;
  color: #737373;
}

.style-card-arrow {
  width: 18px;
  height: 18px;
  color: #737373;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pricing-v4 {
  padding: 5rem 2rem;
  background: #fafafa;
}

.pricing-v4-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.price-card-v4 {
  position: relative;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.price-card-v4.featured {
  border-color: #2f2f2f;
  box-shadow: 0 0 0 1px #2f2f2f;
}
.price-card-v4.featured .btn-v4-primary {
  width: 100%;
}
.price-card-v4 h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 1rem;
}
.price-card-v4 .btn-v4-outline,
.price-card-v4 .btn-v4-primary {
  margin-top: auto;
}

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

.price-v4 {
  margin-bottom: 0.5rem;
}

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

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

.price-desc {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin-bottom: 1.5rem;
}

.price-features-v4 {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.price-features-v4 li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.9375rem;
  color: #6e6e6e;
  border-top: 1px solid #e0e0e0;
}
.price-features-v4 li:first-child {
  border-top: none;
}
.price-features-v4 li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
}

.pricing-bonus-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .pricing-bonus-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.pricing-bonus-text {
  flex: 1;
  min-width: 0;
}
.pricing-bonus-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.25rem;
}
.pricing-bonus-text span {
  font-size: 0.85rem;
  color: #6e6e6e;
  line-height: 1.5;
}

.pricing-bonus-badges {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.pricing-bonus-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 0.625rem;
}
.pricing-bonus-badge.featured {
  border-color: #27ae60;
  box-shadow: 0 0 0 1px #27ae60;
}

.pricing-bonus-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: #27ae60;
  letter-spacing: -0.02em;
}

.pricing-bonus-label {
  font-size: 0.7rem;
  color: #6e6e6e;
  margin-top: 0.125rem;
}

.faq-v4 {
  padding: 5rem 2rem;
  background: #ffffff;
}

.faq-v4-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item {
  display: flex;
  gap: 1.25rem;
}
.faq-item .faq-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}
.faq-item .faq-icon svg {
  width: 20px;
  height: 20px;
  color: #2f2f2f;
}
.faq-item .faq-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}
.faq-item .faq-icon.blue svg {
  color: #3b82f6;
}
.faq-item .faq-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}
.faq-item .faq-icon.purple svg {
  color: #8b5cf6;
}
.faq-item .faq-icon.green {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}
.faq-item .faq-icon.green svg {
  color: #10B981;
}
.faq-item .faq-icon.orange {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}
.faq-item .faq-icon.orange svg {
  color: #F59E0B;
}
.faq-item .faq-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.faq-item .faq-content p {
  font-size: 0.9375rem;
  color: #6e6e6e;
  line-height: 1.6;
  margin: 0;
}
.faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(-5deg);
}

.cta-v4 {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.cta-v4-container {
  max-width: 600px;
  margin: 0 auto;
}

.cta-v4-content {
  text-align: center;
}
.cta-v4-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .cta-v4-content h2 {
    font-size: 1.75rem;
  }
}
.cta-v4-content p {
  font-size: 1.125rem;
  color: #6e6e6e;
  margin-bottom: 2rem;
}

.cta-v4-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-note {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin: 0;
}

.v4-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.04) 50%, rgba(244, 63, 94, 0.04) 100%);
  border-top: 1px solid #e0e0e0;
}

.v4-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.v4-cta-content {
  text-align: center;
}
.v4-cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
@media (max-width: 576px) {
  .v4-cta-content h2 {
    font-size: 1.5rem;
  }
}
.v4-cta-content p {
  color: #6e6e6e;
  margin-bottom: 1.5rem;
}

.tools-v4 {
  padding: 5rem 2rem;
  background: #fafafa;
}

.tools-v4-container {
  max-width: 1100px;
  margin: 0 auto;
}

.editor-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .editor-cards-grid {
    grid-template-columns: 1fr;
  }
}

.editor-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1.15rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.editor-card:hover {
  border-color: #e8e8e8;
}
.editor-card[data-color=blue]:hover {
  border-color: rgba(59, 130, 246, 0.4);
}
.editor-card[data-color=purple]:hover {
  border-color: rgba(139, 92, 246, 0.4);
}
.editor-card[data-color=orange]:hover {
  border-color: rgba(249, 115, 22, 0.4);
}
.editor-card[data-color=teal]:hover {
  border-color: rgba(20, 184, 166, 0.4);
}
@media (max-width: 576px) {
  .editor-card {
    padding: 1rem;
  }
}

.editor-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.editor-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.editor-card-desc {
  font-size: 0.75rem;
  color: #737373;
  margin: 0.125rem 0 0;
  line-height: 1.4;
}

.editor-card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.editor-card-icon svg {
  width: 18px;
  height: 18px;
}
.editor-card-icon.blue {
  background: rgba(59, 130, 246, 0.08);
}
.editor-card-icon.blue svg {
  color: #3b82f6;
}
.editor-card-icon.purple {
  background: rgba(139, 92, 246, 0.08);
}
.editor-card-icon.purple svg {
  color: #8b5cf6;
}
.editor-card-icon.orange {
  background: rgba(249, 115, 22, 0.08);
}
.editor-card-icon.orange svg {
  color: #f97316;
}
.editor-card-icon.teal {
  background: rgba(20, 184, 166, 0.08);
}
.editor-card-icon.teal svg {
  color: #14b8a6;
}

.editor-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.editor-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.editor-card-features li > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #737373;
  margin-top: 1px;
}
.editor-card-features li div {
  min-width: 0;
}
.editor-card-features li strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}
.editor-card-features li span {
  display: block;
  font-size: 0.75rem;
  color: #737373;
  line-height: 1.4;
}

.editor-card-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}
.editor-card-extras span {
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: #fafafa;
  color: #737373;
}

.showcase-marquee {
  padding-top: 1rem;
}

.showcase-marquee-viewport {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 1%, black 99%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 1%, black 99%, transparent 100%);
}

.showcase-marquee-row {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  will-change: transform;
}
.showcase-marquee-row img {
  height: 160px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.showcase-marquee-row[data-direction=left] {
  animation: marquee-left 45s linear infinite;
}
.showcase-marquee-row[data-direction=right] {
  animation: marquee-right 45s linear infinite;
}
@media (max-width: 768px) {
  .showcase-marquee-row img {
    height: 120px;
  }
}
@media (max-width: 576px) {
  .showcase-marquee-row img {
    height: 90px;
  }
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem / 2));
  }
}
@keyframes marquee-right {
  0% {
    transform: translateX(calc(-50% - 0.75rem / 2));
  }
  100% {
    transform: translateX(0);
  }
}
.feature-split-visual .showcase-marquee {
  padding-top: 0;
}
.feature-split-visual .showcase-marquee-viewport {
  max-width: none;
}

.showcase-marquee-icons .showcase-marquee-row[data-direction=left] {
  animation-duration: 35s;
}
.showcase-marquee-icons .showcase-marquee-row[data-direction=right] {
  animation-duration: 35s;
}
.showcase-marquee-icons .showcase-marquee-row .icon-marquee-card {
  height: 80px;
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.showcase-marquee-icons .showcase-marquee-row .icon-marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .showcase-marquee-icons .showcase-marquee-row .icon-marquee-card {
    height: 60px;
    width: 60px;
  }
}
@media (max-width: 576px) {
  .showcase-marquee-icons .showcase-marquee-row .icon-marquee-card {
    height: 44px;
    width: 44px;
  }
}

.showcase-marquee-vectors .showcase-marquee-row[data-direction=left] {
  animation-duration: 60s;
}
.showcase-marquee-vectors .showcase-marquee-row[data-direction=right] {
  animation-duration: 60s;
}
.showcase-marquee-vectors .showcase-marquee-viewport {
  gap: 0.375rem;
}
.showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card {
  height: 80px;
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card svg {
  width: 38.4px;
  height: 38.4px;
}
.showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card.violet {
  color: #8b5cf6;
}
.showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card.blue {
  color: #3b82f6;
}
.showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card.teal {
  color: #14b8a6;
}
.showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card.rose {
  color: #f43f5e;
}
.showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card.amber {
  color: #F59E0B;
}
.showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card.emerald {
  color: #10B981;
}
@media (max-width: 768px) {
  .showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card {
    height: 60px;
    width: 60px;
  }
  .showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card svg {
    width: 28.8px;
    height: 28.8px;
  }
}
@media (max-width: 576px) {
  .showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card {
    height: 44px;
    width: 44px;
  }
  .showcase-marquee-vectors .showcase-marquee-row .vector-marquee-card svg {
    width: 21.12px;
    height: 21.12px;
  }
}

.showcase-marquee-social .showcase-marquee-row[data-direction=left] {
  animation-duration: 55s;
}
.showcase-marquee-social .showcase-marquee-row[data-direction=right] {
  animation-duration: 55s;
}
.showcase-marquee-social .showcase-marquee-row img {
  height: 121px;
}
@media (max-width: 768px) {
  .showcase-marquee-social .showcase-marquee-row img {
    height: 99px;
  }
}
@media (max-width: 576px) {
  .showcase-marquee-social .showcase-marquee-row img {
    height: 77px;
  }
}

.showcase-marquee-email .showcase-marquee-row[data-direction=left] {
  animation-duration: 45s;
}
.showcase-marquee-email .showcase-marquee-row[data-direction=right] {
  animation-duration: 45s;
}
.showcase-marquee-email .showcase-marquee-row img {
  height: 160px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .showcase-marquee-email .showcase-marquee-row img {
    height: 130px;
  }
}
@media (max-width: 576px) {
  .showcase-marquee-email .showcase-marquee-row img {
    height: 100px;
  }
}

#feature-brand .feature-split-visual {
  overflow: visible;
  display: flex;
  align-items: center;
}

.brand-showcase-stack {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.brand-showcase-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-showcase-card.is-active {
  position: relative;
  z-index: 3;
  transform: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.06);
  cursor: default;
}
.brand-showcase-card.is-mid {
  z-index: 2;
  transform: translate(22px, -12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.brand-showcase-card.is-back {
  z-index: 1;
  transform: translate(44px, -24px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.brand-showcase-card .brand-showcase-visual {
  position: relative;
  height: 120px;
}
.brand-showcase-card .brand-showcase-visual > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brand-showcase-card .brand-showcase-logo {
  position: absolute;
  bottom: -16px;
  left: 1.1rem;
  z-index: 1;
}
.brand-showcase-card .brand-showcase-logo svg {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  display: block;
}
.brand-showcase-card .brand-showcase-body {
  padding: 1.4rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.brand-showcase-card .brand-showcase-header {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand-showcase-card .brand-showcase-name-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.brand-showcase-card .brand-showcase-name {
  font-size: 1rem;
  font-weight: 700;
  color: #2f2f2f;
}
.brand-showcase-card .brand-showcase-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.4rem;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  font-size: 0.55rem;
  font-weight: 600;
  border-radius: 4px;
}
.brand-showcase-card .brand-showcase-domain {
  font-size: 0.75rem;
  color: #6e6e6e;
}
.brand-showcase-card .brand-showcase-desc {
  font-size: 0.76rem;
  color: #6e6e6e;
  line-height: 1.45;
  margin: 0;
}
.brand-showcase-card .brand-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.brand-showcase-card .brand-showcase-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.brand-showcase-card .brand-showcase-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6e6e6e;
  letter-spacing: 0.05em;
}
.brand-showcase-card .brand-showcase-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.brand-showcase-card .brand-showcase-color {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.brand-showcase-card .brand-showcase-swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.brand-showcase-card .brand-showcase-hex {
  font-size: 0.62rem;
  font-family: monospace;
  color: #6e6e6e;
}
.brand-showcase-card .brand-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.brand-showcase-card .brand-showcase-tag {
  display: inline-block;
  padding: 0.12rem 0.4rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.62rem;
  color: #2f2f2f;
}
.brand-showcase-card .brand-showcase-aesthetic {
  font-size: 0.7rem;
  color: #6e6e6e;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .brand-showcase-stack {
    max-width: 340px;
  }
}
@media (max-width: 576px) {
  .brand-showcase-stack {
    max-width: 100%;
  }
  .brand-showcase-card {
    position: relative;
  }
  .brand-showcase-card.is-mid, .brand-showcase-card.is-back {
    display: none;
  }
  .brand-showcase-card .brand-showcase-visual {
    height: 100px;
  }
  .brand-showcase-card .brand-showcase-row {
    grid-template-columns: 1fr;
  }
}
.api-v4 {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .api-v4 {
    padding: 3rem 1.5rem;
  }
}

.api-v4-container {
  max-width: 960px;
  margin: 0 auto;
}

.api-v4 + .feature-section .feature-section-container {
  max-width: 960px;
}

.api-v4-demo {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.api-demo-terminal {
  background: #0d1117;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.api-term-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.api-term-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
.api-term-dot:nth-child(1) {
  background: #ff5f57;
}
.api-term-dot:nth-child(2) {
  background: #febc2e;
}
.api-term-dot:nth-child(3) {
  background: #28c840;
}

.api-term-title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
}

.api-term-body {
  padding: 1.25rem 1.5rem;
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.8125rem;
  line-height: 1.8;
  overflow-x: auto;
}
@media (max-width: 576px) {
  .api-term-body {
    font-size: 0.6875rem;
    padding: 1rem;
  }
}

.api-term-line {
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  animation: apiTermIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.api-term-line:nth-child(1) {
  animation-delay: 0.07s;
}
.api-term-line:nth-child(2) {
  animation-delay: 0.14s;
}
.api-term-line:nth-child(3) {
  animation-delay: 0.21s;
}
.api-term-line:nth-child(4) {
  animation-delay: 0.28s;
}
.api-term-line:nth-child(5) {
  animation-delay: 0.35s;
}
.api-term-line:nth-child(6) {
  animation-delay: 0.42s;
}
.api-term-line:nth-child(7) {
  animation-delay: 0.49s;
}
.api-term-line:nth-child(8) {
  animation-delay: 0.56s;
}
.api-term-line:nth-child(9) {
  animation-delay: 0.63s;
}
.api-term-line:nth-child(10) {
  animation-delay: 0.7s;
}

.api-term-blank {
  height: 0.75rem;
}

.api-term-prompt {
  color: rgba(255, 255, 255, 0.3);
  margin-right: 0.5rem;
  user-select: none;
}

.api-term-cmd {
  color: rgba(255, 255, 255, 0.85);
}

.api-term-flag {
  color: #79c0ff;
}

.api-term-str {
  color: #a5d6ff;
}

.api-term-response-line .api-term-str {
  color: #a5d6ff;
}

.api-term-status {
  display: inline-block;
  background: rgba(63, 185, 80, 0.15);
  color: #3fb950;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}

.api-term-json {
  color: rgba(255, 255, 255, 0.5);
}

.api-term-key {
  color: #79c0ff;
}

.api-term-num {
  color: #ffa657;
}

@keyframes apiTermIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.api-demo-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 1.5rem;
}
@media (max-width: 576px) {
  .api-demo-flow {
    gap: 0.25rem;
  }
}

.api-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  flex: 0 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 576px) {
  .api-flow-step {
    padding: 0 0.75rem;
  }
}

.api-flow-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.api-flow-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.api-flow-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.api-flow-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.api-flow-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.api-flow-connector {
  position: absolute;
  top: 1.25rem;
  left: calc(50% + 1.25rem + 0.5rem);
  width: calc(100% - 2.5rem - 1rem + 3rem);
  height: 1px;
  background: repeating-linear-gradient(90deg, #e8e8e8 0, #e8e8e8 4px, transparent 4px, transparent 8px);
}
@media (max-width: 576px) {
  .api-flow-connector {
    width: calc(100% - 2.5rem);
    left: calc(50% + 1.25rem);
  }
}

.api-flow-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #737373;
  white-space: nowrap;
}

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

.api-v4-card {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.api-v4-card:hover {
  transform: translateY(-2px);
}
.api-v4-card:nth-child(1):hover {
  border-color: #3b82f6;
}
.api-v4-card:nth-child(2):hover {
  border-color: #8b5cf6;
}
.api-v4-card:nth-child(3):hover {
  border-color: #f97316;
}
.api-v4-card:nth-child(4):hover {
  border-color: #10B981;
}
.api-v4-card:nth-child(5):hover {
  border-color: #EC4899;
}
.api-v4-card:nth-child(6):hover {
  border-color: #06B6D4;
}
.api-v4-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}
.api-v4-card p {
  font-size: 0.75rem;
  color: #737373;
  line-height: 1.5;
  margin: 0;
}
.api-v4-card code {
  font-size: 0.6875rem;
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
  padding: 0.1rem 0.3rem;
  border-radius: 0.25rem;
}

.api-card-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.api-card-icon svg {
  width: 1rem;
  height: 1rem;
}
.api-card-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.api-card-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.api-card-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.api-card-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.api-card-icon.pink {
  background: rgba(236, 72, 153, 0.1);
  color: #EC4899;
}
.api-card-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}

.api-v4-cta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 576px) {
  .api-v4-cta {
    flex-direction: column;
    align-items: 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;
}

.landing-v4 {
  background-color: #fafafa;
  min-height: 100vh;
}
.landing-v4 .nav-link-icons {
  display: none;
}
.landing-v4 * {
  box-shadow: none !important;
}
.landing-v4 .section-title-v4 {
  font-size: 2.25rem;
}
.landing-v4 .section-desc {
  font-size: 0.875rem;
  color: #737373;
}
.landing-v4 .section-eyebrow {
  font-size: 0.75rem;
}
.landing-v4 .btn-v4-primary,
.landing-v4 .btn-v4-secondary,
.landing-v4 .btn-v4-outline {
  font-size: 0.8125rem;
}
.landing-v4 .editor-card {
  border-color: #e8e8e8;
}
.landing-v4 .editor-card:hover {
  transform: translateY(-1px);
  border-color: #e8e8e8;
}
.landing-v4 .editor-card[data-color=blue]:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
  background: rgba(59, 130, 246, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.landing-v4 .editor-card[data-color=blue]:hover .editor-card-icon svg {
  animation: v4-icon-edit 1.5s ease-in-out infinite;
}
.landing-v4 .editor-card[data-color=purple]:hover {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 1px #8b5cf6;
  background: rgba(139, 92, 246, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.landing-v4 .editor-card[data-color=purple]:hover .editor-card-icon svg {
  animation: v4-vector-edit 2s ease-in-out infinite;
  transform-origin: center;
}
.landing-v4 .editor-card[data-color=orange]:hover {
  border-color: #f97316;
  box-shadow: 0 0 0 1px #f97316;
  background: rgba(249, 115, 22, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.landing-v4 .editor-card[data-color=orange]:hover .editor-card-icon svg rect {
  animation: v4-social-drag-x 2s ease-in-out infinite;
}
.landing-v4 .editor-card[data-color=orange]:hover .editor-card-icon svg path,
.landing-v4 .editor-card[data-color=orange]:hover .editor-card-icon svg line {
  animation: v4-social-drag-y 2s ease-in-out infinite;
}
.landing-v4 .editor-card[data-color=teal]:hover {
  border-color: #14b8a6;
  box-shadow: 0 0 0 1px #14b8a6;
  background: rgba(20, 184, 166, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.landing-v4 .editor-card[data-color=teal]:hover .editor-card-icon svg {
  animation: v4-email-responsive 2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes v4-icon-edit {
  0%, 100% {
    stroke-width: 2;
    stroke: currentColor;
  }
  50% {
    stroke-width: 3.5;
    stroke: #3b82f6;
  }
}
@keyframes v4-vector-edit {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    stroke: currentColor;
  }
  33% {
    transform: scale(1.1) rotate(6deg);
    stroke: #8b5cf6;
  }
  66% {
    transform: scale(0.9) rotate(-6deg);
    stroke: #a855f7;
  }
}
@keyframes v4-social-drag-x {
  0%, 100% {
    transform: translate(0, 0);
    stroke: currentColor;
  }
  50% {
    transform: translate(2px, -2px);
    stroke: #f97316;
  }
}
@keyframes v4-social-drag-y {
  0%, 100% {
    transform: translate(0, 0);
    stroke: currentColor;
  }
  50% {
    transform: translate(-2px, 2.5px);
    stroke: #fcd34d;
  }
}
@keyframes v4-email-responsive {
  0%, 100% {
    transform: scale(1);
    stroke: currentColor;
  }
  50% {
    transform: scale(0.85, 1.15);
    stroke: #14b8a6;
  }
}
.landing-v4 .editor-card-header h3 {
  font-size: 1rem;
}
.landing-v4 .editor-card-desc {
  font-size: 0.8125rem;
}
.landing-v4 .editor-card-features li strong {
  font-size: 0.8125rem;
}
.landing-v4 .editor-card-features li span {
  font-size: 0.75rem;
}
.landing-v4 .price-card-v4 {
  border-color: #e8e8e8;
}
.landing-v4 .price-card-v4.featured {
  border-color: #3b82f6;
}
.landing-v4 .faq-item {
  border-color: #e8e8e8;
}
.landing-v4 .gp-workflow-step {
  border-color: #e8e8e8;
}
.landing-v4 .proof-tag {
  font-size: 0.75rem;
}
.landing-v4 .v4-cta-content h2 {
  font-size: 1.75rem;
}
.landing-v4 .v4-cta-content p {
  font-size: 0.875rem;
}
.landing-v4 .cta-note {
  font-size: 0.8125rem;
}

.v4-hero {
  position: relative;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .v4-hero {
    padding: 5.5rem 1.5rem 3rem;
  }
}

.v4-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.v4-hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 40%, transparent 70%);
  filter: blur(80px);
}

.v4-floating-elements-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.v4-floating-el {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  will-change: transform, opacity;
}
.v4-floating-el svg {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

@keyframes v4-float-random {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(var(--tx-1), var(--ty-1)) rotate(var(--rot-1)) scale(var(--scale-1));
  }
  66% {
    transform: translate(var(--tx-2), var(--ty-2)) rotate(var(--rot-2)) scale(var(--scale-2));
  }
  100% {
    transform: translate(var(--tx-3), var(--ty-3)) rotate(var(--rot-3)) scale(1);
  }
}
@keyframes v4-fade-random {
  0% {
    opacity: 0;
  }
  50% {
    opacity: var(--max-op);
  }
  100% {
    opacity: 0;
  }
}
.v4-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.v4-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
.v4-hero-title .text-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .v4-hero-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 576px) {
  .v4-hero-title {
    font-size: 1.75rem;
  }
}

.v4-hero-subtitle {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.v4-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .v4-hero-cta {
    flex-direction: column;
  }
}

.v4-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-btn-primary svg {
  width: 16px;
  height: 16px;
}
.v4-btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
}
.v4-btn-primary.v4-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.v4-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: #1a1a1a;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-btn-secondary:hover {
  background: #fafafa;
  border-color: #d4d4d4;
}

.v4-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #737373;
}
@media (max-width: 576px) {
  .v4-hero-trust {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

.v4-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #737373;
  opacity: 0.4;
}

.v4-features {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .v4-features {
    padding: 3rem 1.5rem;
  }
}

.v4-features-container {
  max-width: 1040px;
  margin: 0 auto;
}

.v4-tabs {
  margin-top: 2.5rem;
}

.v4-tab-nav {
  display: flex;
  position: relative;
  border-bottom: 1px solid #e8e8e8;
  gap: 0;
}
@media (max-width: 768px) {
  .v4-tab-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .v4-tab-nav::-webkit-scrollbar {
    display: none;
  }
}

.v4-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: none;
  border: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #737373;
  cursor: pointer;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}
.v4-tab-btn > svg,
.v4-tab-btn > span {
  position: relative;
  z-index: 3;
}
.v4-tab-btn > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.v4-tab-btn .v4-tab-squiggles {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow: hidden;
}
.v4-tab-btn .v4-tab-squiggles svg {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0.5;
  flex-shrink: 0;
  animation: v4-float-squiggle 4s ease-in-out infinite alternate;
}
.v4-tab-btn.active .v4-tab-squiggles {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-tab-btn[data-color=blue] .v4-tab-squiggles {
  color: rgba(59, 130, 246, 0.6);
}
.v4-tab-btn[data-color=blue] .v4-tab-squiggles svg:nth-child(1) {
  top: -4px;
  left: 8%;
  transform: rotate(-15deg);
}
.v4-tab-btn[data-color=blue] .v4-tab-squiggles svg:nth-child(2) {
  bottom: -6px;
  right: 10%;
  transform: rotate(25deg);
  animation-delay: -1.8s;
}
.v4-tab-btn[data-color=blue] .v4-tab-squiggles svg:nth-child(3) {
  top: 18px;
  left: 45%;
  transform: scale(0.65) rotate(45deg);
  animation-delay: -0.9s;
}
.v4-tab-btn[data-color=orange] .v4-tab-squiggles {
  color: rgba(249, 115, 22, 0.6);
}
.v4-tab-btn[data-color=orange] .v4-tab-squiggles svg:nth-child(1) {
  bottom: -4px;
  left: 15%;
  transform: rotate(-45deg);
  animation-delay: -1.2s;
}
.v4-tab-btn[data-color=orange] .v4-tab-squiggles svg:nth-child(2) {
  top: -6px;
  right: 8%;
  transform: rotate(15deg);
  animation-delay: -0.5s;
}
.v4-tab-btn[data-color=orange] .v4-tab-squiggles svg:nth-child(3) {
  bottom: 18px;
  left: 60%;
  transform: scale(0.8) rotate(-20deg);
  animation-delay: -2.3s;
}
.v4-tab-btn[data-color=purple] .v4-tab-squiggles {
  color: rgba(139, 92, 246, 0.6);
}
.v4-tab-btn[data-color=purple] .v4-tab-squiggles svg:nth-child(1) {
  top: 12px;
  left: 5%;
  transform: rotate(80deg);
  animation-delay: -0.7s;
}
.v4-tab-btn[data-color=purple] .v4-tab-squiggles svg:nth-child(2) {
  bottom: 2px;
  right: 18%;
  transform: rotate(-10deg);
  animation-delay: -1.5s;
}
.v4-tab-btn[data-color=purple] .v4-tab-squiggles svg:nth-child(3) {
  top: -8px;
  left: 35%;
  transform: scale(0.7) rotate(65deg);
  animation-delay: -2s;
}
.v4-tab-btn[data-color=teal] .v4-tab-squiggles {
  color: rgba(20, 184, 166, 0.6);
}
.v4-tab-btn[data-color=teal] .v4-tab-squiggles svg:nth-child(1) {
  bottom: 10px;
  left: 10%;
  transform: rotate(30deg);
  animation-delay: -1s;
}
.v4-tab-btn[data-color=teal] .v4-tab-squiggles svg:nth-child(2) {
  top: -10px;
  right: 25%;
  transform: rotate(-35deg);
  animation-delay: -2.5s;
}
.v4-tab-btn[data-color=teal] .v4-tab-squiggles svg:nth-child(3) {
  bottom: -5px;
  right: 5%;
  transform: scale(0.75) rotate(10deg);
  animation-delay: -0.4s;
}
.v4-tab-btn[data-color=rose] .v4-tab-squiggles {
  color: rgba(244, 63, 94, 0.6);
}
.v4-tab-btn[data-color=rose] .v4-tab-squiggles svg:nth-child(1) {
  top: -2px;
  left: 18%;
  transform: rotate(-25deg);
  animation-delay: -1.9s;
}
.v4-tab-btn[data-color=rose] .v4-tab-squiggles svg:nth-child(2) {
  bottom: 12px;
  right: 12%;
  transform: rotate(5deg);
  animation-delay: -0.8s;
}
.v4-tab-btn[data-color=rose] .v4-tab-squiggles svg:nth-child(3) {
  top: 22px;
  right: 40%;
  transform: scale(0.6) rotate(-55deg);
  animation-delay: -1.3s;
}
.v4-tab-btn:hover {
  color: #1a1a1a;
}
.v4-tab-btn.active {
  color: #1a1a1a;
  font-weight: 600;
}
@media (max-width: 768px) {
  .v4-tab-btn {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 576px) {
  .v4-tab-btn {
    gap: 0;
    padding: 0.75rem 1.25rem;
  }
  .v4-tab-btn span {
    display: none;
  }
}

@keyframes v4-float-squiggle {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 -8px;
  }
}
.v4-tab-indicator {
  position: absolute;
  top: 0;
  bottom: -1px;
  height: calc(100% + 1px);
  z-index: 2;
  --indicator-rgb: 59, 130, 246;
  /* Default Blue */
  background: rgba(var(--indicator-rgb), 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(var(--indicator-rgb), 0.25);
  border-bottom: 2px solid rgba(var(--indicator-rgb), 0.8);
  border-radius: 0.5rem 0.5rem 0 0;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.v4-tab-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: rgba(var(--indicator-rgb, 59, 130, 246), 1);
  z-index: 3;
  pointer-events: none;
  width: 0%;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.v4-tab-panels {
  position: relative;
  min-height: 340px;
  margin-top: 2.5rem;
}

.v4-tab-panel {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-tab-panel.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.v4-tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .v4-tab-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.v4-tab-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.v4-tab-info > p {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.v4-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.v4-check-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #1a1a1a;
  line-height: 1.4;
}
.v4-check-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #3b82f6;
}
.v4-panel-social .v4-check-list li svg {
  color: #f97316;
}
.v4-panel-vectors .v4-check-list li svg {
  color: #8b5cf6;
}
.v4-panel-email .v4-check-list li svg {
  color: #14b8a6;
}
.v4-panel-brand .v4-check-list li svg {
  color: #f43f5e;
}

.v4-tab-demo {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #ffffff;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .v4-tab-demo {
    aspect-ratio: unset;
    height: 300px;
  }
}

.v4-demo-icons {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
@media (max-width: 576px) {
  .v4-demo-icons {
    padding: 1rem;
  }
}

.v4-demo-input {
  display: flex;
  align-items: center;
  height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: #1a1a1a;
  background: #fafafa;
}
.v4-demo-input > svg {
  width: 14px;
  height: 14px;
  color: #737373;
  margin-right: 0.5rem;
  flex-shrink: 0;
  opacity: 0.5;
}

.v4-demo-typed {
  display: inline;
}

.v4-demo-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #3b82f6;
  margin-left: 1px;
  animation: v4-blink 1s step-end infinite;
}
.v4-demo-social .v4-demo-cursor {
  background: #f97316;
}
.v4-demo-vectors .v4-demo-cursor {
  background: #8b5cf6;
}
.v4-demo-email .v4-demo-cursor {
  background: #14b8a6;
}

.v4-demo-spinner {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 2px solid #e8e8e8;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: v4-spin 0.6s linear infinite;
  opacity: 0;
  pointer-events: none;
}
.v4-demo-spinner.visible {
  opacity: 1;
}
.v4-demo-social .v4-demo-spinner {
  border-top-color: #f97316;
}
.v4-demo-vectors .v4-demo-spinner {
  border-top-color: #8b5cf6;
}
.v4-demo-email .v4-demo-spinner {
  border-top-color: #14b8a6;
}

.v4-demo-options {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-options.visible {
  opacity: 1;
}

.v4-demo-option {
  padding: 0.2rem 0.5rem;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #737373;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-option.active {
  border-color: #3b82f6;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.06);
}
.v4-demo-social .v4-demo-option.active {
  border-color: #f97316;
  color: #f97316;
  background: rgba(249, 115, 22, 0.06);
}
.v4-demo-email .v4-demo-option.active {
  border-color: #14b8a6;
  color: #14b8a6;
  background: rgba(20, 184, 166, 0.06);
}

.v4-demo-product-result {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-product-result.visible {
  opacity: 1;
}

.v4-demo-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
.v4-demo-product-img.visible {
  opacity: 1;
  transform: scale(1);
  display: block;
}

.v4-demo-social {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
@media (max-width: 576px) {
  .v4-demo-social {
    padding: 1rem;
  }
}

.v4-demo-social-formats {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  flex: 1;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-social-formats.visible {
  opacity: 1;
}
@media (max-width: 768px) {
  .v4-demo-social-formats {
    gap: 0.5rem;
  }
}

.v4-social-format {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-social-format.visible {
  opacity: 1;
  transform: translateY(0);
}

.v4-social-mockup {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0.5rem;
}
@media (max-width: 768px) {
  .v4-social-mockup {
    gap: 0.25rem;
    padding: 0.5rem 0.375rem;
  }
}
.v4-social-mockup.v4-social-square {
  width: 120px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1e1b4b 0%, #4c1d95 60%, #7c3aed 100%);
}
@media (max-width: 768px) {
  .v4-social-mockup.v4-social-square {
    width: 80px;
  }
}
.v4-social-mockup.v4-social-landscape {
  width: 150px;
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 60%, #0ea5e9 100%);
}
@media (max-width: 768px) {
  .v4-social-mockup.v4-social-landscape {
    width: 100px;
  }
}
.v4-social-mockup.v4-social-portrait {
  width: 80px;
  aspect-ratio: 9/16;
  background: linear-gradient(145deg, #831843 0%, #be185d 60%, #f472b6 100%);
}
@media (max-width: 768px) {
  .v4-social-mockup.v4-social-portrait {
    width: 55px;
  }
}

.v4-social-mockup-badge {
  padding: 0.1rem 0.35rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 3px;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}
@media (max-width: 768px) {
  .v4-social-mockup-badge {
    font-size: 0.4rem;
    padding: 0.05rem 0.25rem;
  }
}

.v4-social-mockup-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.25;
}
.v4-social-portrait .v4-social-mockup-title {
  font-size: 0.5625rem;
}
@media (max-width: 768px) {
  .v4-social-mockup-title {
    font-size: 0.5rem;
  }
  .v4-social-portrait .v4-social-mockup-title {
    font-size: 0.4375rem;
  }
}

.v4-social-mockup-cta {
  padding: 0.15rem 0.5rem;
  background: #fff;
  border-radius: 3px;
  font-size: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
}
.v4-social-portrait .v4-social-mockup-cta {
  font-size: 0.4375rem;
  padding: 0.1rem 0.35rem;
}
@media (max-width: 768px) {
  .v4-social-mockup-cta {
    font-size: 0.4rem;
    padding: 0.1rem 0.35rem;
  }
}

.v4-social-ratio-label {
  font-size: 0.75rem;
  color: #737373;
  font-weight: 500;
}

.v4-demo-vectors {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
@media (max-width: 576px) {
  .v4-demo-vectors {
    padding: 1rem;
  }
}

.v4-demo-svg-canvas {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  flex: 1;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-svg-canvas.visible {
  opacity: 1;
}

.v4-demo-path {
  fill: none;
  stroke: #8b5cf6;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: none;
}
.v4-demo-path.drawing {
  animation: v4-draw-path 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.v4-demo-path.v4-demo-path-2 {
  stroke-width: 2;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.v4-demo-path.v4-demo-path-2.drawing {
  animation-delay: 0.8s;
  animation-duration: 0.6s;
}

.v4-demo-email {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
@media (max-width: 576px) {
  .v4-demo-email {
    padding: 1rem;
  }
}

.v4-demo-email-formats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-email-formats.visible {
  opacity: 1;
}

.v4-email-format {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-email-format.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.v4-email-mockup {
  width: 100%;
  flex: 1;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.v4-email-mock-bar {
  height: 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  padding: 0 0.625rem;
}

.v4-email-mock-logo {
  width: 36px;
  height: 7px;
  border-radius: 3px;
  background: #e8e8e8;
}

.v4-email-mock-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.875rem 0.625rem;
}
.v4-email-mock-hero.v4-email-welcome-hero {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.02) 100%);
}
.v4-email-mock-hero.v4-email-promo-hero {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.06) 0%, rgba(249, 115, 22, 0.02) 100%);
}

.v4-email-mock-headline {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1a1a;
}

.v4-email-mock-badge {
  padding: 0.15rem 0.4rem;
  background: #f97316;
  border-radius: 4px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.v4-email-mock-sub {
  width: 50%;
  height: 5px;
  border-radius: 2px;
  background: #e8e8e8;
}

.v4-email-mock-body {
  padding: 0.625rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}

.v4-email-mock-line {
  display: block;
  height: 5px;
  border-radius: 2px;
  background: #f0f0f0;
}
.v4-email-mock-line.short {
  width: 60%;
}

.v4-email-mock-cta-row {
  padding: 0.5rem 0.75rem 0.625rem;
  display: flex;
  justify-content: center;
}

.v4-email-mock-btn {
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #fff;
}
.v4-email-mock-btn.blue {
  background: #3b82f6;
}
.v4-email-mock-btn.orange {
  background: #f97316;
}

.v4-email-mock-article {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
  flex: 1;
}

.v4-email-mock-thumb {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #fafafa;
  flex-shrink: 0;
}

.v4-email-mock-article-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  justify-content: center;
}

.v4-email-mock-footer {
  padding: 0.5rem 0.75rem;
  display: flex;
  justify-content: center;
}

.v4-email-type-label {
  font-size: 0.8125rem;
  color: #737373;
  font-weight: 500;
}

.v4-demo-brand {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
@media (max-width: 576px) {
  .v4-demo-brand {
    padding: 1rem;
  }
}

.v4-demo-brand-input {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: #1a1a1a;
  background: #fafafa;
}
.v4-demo-brand-input svg {
  width: 14px;
  height: 14px;
  color: #737373;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.v4-demo-brand-typed {
  display: inline;
}

.v4-demo-brand-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #f43f5e;
  margin-left: 1px;
  animation: v4-blink 1s step-end infinite;
}

.v4-demo-brand-spinner {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 2px solid #e8e8e8;
  border-top-color: #f43f5e;
  border-radius: 50%;
  animation: v4-spin 0.6s linear infinite;
  opacity: 0;
  pointer-events: none;
}
.v4-demo-brand-spinner.visible {
  opacity: 1;
}

.v4-demo-brand-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1rem;
  background: #ffffff;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-brand-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.v4-demo-brand-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v4-demo-brand-name .v4-demo-brand-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: #27ae60;
  background: rgba(39, 174, 96, 0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.v4-demo-brand-desc {
  font-size: 0.75rem;
  color: #737373;
  margin-bottom: 0.25rem;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-brand-desc.visible {
  opacity: 1;
}

.v4-demo-brand-aesthetic {
  font-size: 0.75rem;
  color: #737373;
  font-style: italic;
  margin-bottom: 0.625rem;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-brand-aesthetic.visible {
  opacity: 1;
}

.v4-demo-brand-swatches {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}

.v4-demo-brand-swatch {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-brand-swatch.visible {
  opacity: 1;
  transform: scale(1);
}

.v4-demo-brand-tags {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.v4-demo-brand-tag {
  padding: 0.15rem 0.5rem;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #737373;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-demo-brand-tag.visible {
  opacity: 1;
}

@keyframes v4-blink {
  50% {
    opacity: 0;
  }
}
@keyframes v4-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes v4-draw-path {
  to {
    stroke-dashoffset: 0;
  }
}
.v4-animate-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.v4-animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-page {
  background-color: #fafafa;
  min-height: 100vh;
}
.features-page .nav-link-icons {
  display: none;
}

.features-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .features-hero {
    padding: 6rem 1.5rem 3rem;
  }
}

.features-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.features-glow-v3 {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 40%, transparent 70%);
  filter: blur(80px);
}

.features-hero-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.features-tool-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.features-tool-dot[data-color=blue] {
  background: #3b82f6;
}
.features-tool-dot[data-color=purple] {
  background: #8b5cf6;
}
.features-tool-dot[data-color=orange] {
  background: #f97316;
}
.features-tool-dot[data-color=teal] {
  background: #14b8a6;
}
.features-tool-dot[data-color=rose] {
  background: #f43f5e;
}

.features-hero-tool-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-right: 0.75rem;
  transition: opacity 0.2s ease;
}
.features-hero-tool-link:last-child {
  margin-right: 0;
}
.features-hero-tool-link:hover {
  opacity: 0.8;
}
.features-hero-tool-link:hover .features-tool-label {
  color: #1a1a1a;
}

.features-tool-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #737373;
  transition: color 0.2s ease;
}

.features-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.features-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .features-hero-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 576px) {
  .features-hero-title {
    font-size: 1.75rem;
  }
}

.features-hero-subtitle {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.feature-section {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .feature-section {
    padding: 3rem 1.5rem;
  }
}
.feature-section.feature-section-alt {
  background: #ffffff;
}

.feature-section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.feature-showcase-banner {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 10px;
}
.feature-showcase-banner .showcase-marquee {
  padding-top: 0;
}
.feature-showcase-banner .brand-showcase-stack {
  max-width: 420px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .feature-showcase-banner {
    margin-top: 2rem;
  }
}

.features-tool-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 576px) {
  .features-tool-cta {
    flex-direction: column;
  }
}

.section-eyebrow.cyan {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #0891B2;
}
.section-eyebrow.teal {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  color: #0D9488;
}
.section-eyebrow.rose {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.2);
  color: #e11d48;
}
.section-eyebrow.purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #7C3AED;
}

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

.editing-feature-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.editing-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.editing-feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.editing-feature-card p {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
  margin: 0;
}

.editing-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.editing-feature-icon svg {
  width: 24px;
  height: 24px;
}
.editing-feature-icon.pink {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
}
.editing-feature-icon.pink svg {
  color: #EC4899;
}
.editing-feature-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.editing-feature-icon.blue svg {
  color: #3b82f6;
}
.editing-feature-icon.green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.editing-feature-icon.green svg {
  color: #10B981;
}
.editing-feature-icon.orange {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.editing-feature-icon.orange svg {
  color: #F59E0B;
}
.editing-feature-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.editing-feature-icon.purple svg {
  color: #8b5cf6;
}
.editing-feature-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.editing-feature-icon.cyan svg {
  color: #06B6D4;
}

.cdn-demo {
  max-width: 100%;
  overflow: hidden;
}
.cdn-demo.cdn-demo-centered {
  max-width: 560px;
  margin: 3rem auto 0;
}

.code-block {
  background: #1e1e1e;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 100%;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #2d2d2d;
  border-bottom: 1px solid #3d3d3d;
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.code-dot:nth-child(2) {
  background: #febc2e;
}
.code-dot:nth-child(3) {
  background: #28c840;
}

.code-filename {
  margin-left: auto;
  font-size: 0.75rem;
  color: #888;
}

.code-content {
  padding: 1.25rem;
  margin: 0;
  overflow-x: auto;
  max-width: 100%;
}
.code-content code {
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #e0e0e0;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.code-comment {
  color: #6a9955;
}

.code-tag {
  color: #569cd6;
}

.code-attr {
  color: #9cdcfe;
}

.code-string {
  color: #ce9178;
}

.features-api-demo {
  max-width: 620px;
  margin: 3rem auto 3rem;
}

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

.features-skill-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.features-skill-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.features-skill-card:hover .features-skill-dl {
  color: #8b5cf6;
}
.features-skill-card.disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.features-skill-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.features-skill-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.features-skill-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.features-skill-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.features-skill-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.features-skill-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.features-skill-info {
  flex: 1;
  min-width: 0;
}
.features-skill-info h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.features-skill-info p {
  font-size: 0.8125rem;
  color: #737373;
  margin: 0.125rem 0 0;
  line-height: 1.4;
}

.features-skill-dl {
  width: 1.25rem;
  height: 1.25rem;
  color: #737373;
  flex-shrink: 0;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-skill-badge {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #737373;
  background: rgba(232, 232, 232, 0.5);
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.features-skill-bundle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #737373;
  text-decoration: none;
  border: 1px dashed #e8e8e8;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.features-skill-bundle svg {
  width: 1rem;
  height: 1rem;
}
.features-skill-bundle:hover {
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.3);
}

.features-skills-curl {
  margin-top: 1.25rem;
  text-align: left;
}
.features-skills-curl .features-skills-curl-label {
  font-size: 0.75rem;
  color: #737373;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.features-skills-curl .features-skills-code {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  position: relative;
}
.features-skills-curl .features-skills-code code {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.8125rem;
  color: #1a1a1a;
  line-height: 1.7;
  white-space: pre;
  display: block;
}
.features-skills-curl .features-skills-code .features-skills-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 #e8e8e8;
  border-radius: 6px;
  color: #737373;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s, border-color 0.2s;
}
.features-skills-curl .features-skills-code .features-skills-code-copy:hover {
  color: #1a1a1a;
  border-color: #cfcfcf;
}
.features-skills-curl .features-skills-code .features-skills-code-copy.copied {
  color: #22c55e;
  border-color: #22c55e;
}
.features-skills-curl .features-skills-code:hover .features-skills-code-copy {
  opacity: 1;
}

.seo-page .features-hero {
  min-height: 50vh;
}
.seo-page .seo-hero-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.seo-page .seo-tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #6e6e6e;
}
.seo-page .seo-tool-chip svg {
  width: 14px;
  height: 14px;
}
.seo-page .seo-tool-chip.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}
.seo-page .seo-styles-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .seo-page .seo-styles-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .seo-page .seo-styles-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}
.seo-page .seo-style-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  transition: all 0.2s ease;
}
.seo-page .seo-style-card .style-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-page .seo-style-card .style-icon svg {
  width: 24px;
  height: 24px;
}
.seo-page .seo-style-card .style-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.seo-page .seo-style-card .style-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.seo-page .seo-style-card .style-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.seo-page .seo-style-card .style-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}
.seo-page .seo-style-card .style-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.seo-page .seo-style-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2f2f2f;
}
.seo-page .seo-style-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}
.seo-page .seo-format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .seo-page .seo-format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.seo-page .seo-format-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 1rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  transition: all 0.2s ease;
}
.seo-page .seo-format-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}
.seo-page .seo-format-card .format-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
}
.seo-page .seo-format-card .format-preview.feed svg, .seo-page .seo-format-card .format-preview.landscape svg {
  width: 80px;
}
.seo-page .seo-format-card .format-preview.square svg {
  width: 56px;
}
.seo-page .seo-format-card .format-preview.story svg {
  width: 38px;
}
.seo-page .seo-format-card .format-preview.portrait svg {
  width: 46px;
}
.seo-page .seo-format-card .format-preview.wide svg {
  width: 96px;
}
.seo-page .seo-format-card .format-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2f2f2f;
}
.seo-page .seo-format-card .format-size {
  font-size: 0.7rem;
  color: #6e6e6e;
  font-family: monospace;
}
.seo-page .seo-node-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}
.seo-page .seo-node-demo svg {
  width: 100%;
  max-width: 200px;
}
.seo-page .seo-pipeline-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.seo-page .seo-pipeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
}
.seo-page .seo-pipeline-item .pipeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.seo-page .seo-pipeline-item .pipeline-dot.orange {
  background: #f97316;
}
.seo-page .seo-pipeline-item .pipeline-dot.teal {
  background: #14b8a6;
}
.seo-page .seo-pipeline-item .pipeline-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2f2f2f;
}
.seo-page .seo-pipeline-item .pipeline-desc {
  font-size: 0.8rem;
  color: #6e6e6e;
  margin-left: auto;
}
.seo-page .seo-export-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .seo-page .seo-export-cards {
    grid-template-columns: 1fr;
  }
}
.seo-page .seo-export-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
}
.seo-page .seo-export-card .export-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-page .seo-export-card .export-icon svg {
  width: 20px;
  height: 20px;
}
.seo-page .seo-export-card .export-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.seo-page .seo-export-card .export-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.seo-page .seo-export-card .export-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.seo-page .seo-export-card .export-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.seo-page .seo-export-card .export-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.seo-page .seo-export-card .export-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2f2f2f;
}
.seo-page .seo-export-card .export-desc {
  font-size: 0.75rem;
  color: #6e6e6e;
  text-align: center;
}
.seo-page .seo-template-demo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-page .seo-template-card {
  width: 100%;
  max-width: 280px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  overflow: hidden;
}
.seo-page .seo-template-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  color: #f97316;
}
.seo-page .seo-template-header span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2f2f2f;
}
.seo-page .seo-template-body {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px solid #e0e0e0;
}
.seo-page .seo-template-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.seo-page .seo-template-label {
  font-size: 0.75rem;
  color: #6e6e6e;
}
.seo-page .seo-template-value {
  font-size: 0.75rem;
  font-weight: 500;
  color: #2f2f2f;
}
.seo-page .seo-template-sliders {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.seo-page .seo-template-slider {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.seo-page .seo-template-slider span {
  font-size: 0.7rem;
  color: #6e6e6e;
}
.seo-page .seo-slider-track {
  height: 4px;
  border-radius: 2px;
  background: #f5f5f5;
  overflow: hidden;
}
.seo-page .seo-slider-fill {
  height: 100%;
  border-radius: 2px;
  background: #f97316;
}
.seo-page .seo-slider-fill[data-fill="40"] {
  width: 40%;
}
.seo-page .seo-slider-fill[data-fill="50"] {
  width: 50%;
}
.seo-page .seo-slider-fill[data-fill="60"] {
  width: 60%;
}
.seo-page .seo-slider-fill[data-fill="70"] {
  width: 70%;
}
.seo-page .seo-slider-fill[data-fill="100"] {
  width: 100%;
}
.seo-page .seo-pipeline-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.seo-page .seo-pipeline-mini .seo-pipeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-page .seo-pipeline-mini .seo-pipeline-icon svg {
  width: 22px;
  height: 22px;
}
.seo-page .seo-pipeline-mini .seo-pipeline-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.seo-page .seo-pipeline-mini .seo-pipeline-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.seo-page .seo-pipeline-mini .seo-pipeline-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.seo-page .seo-pipeline-mini .seo-pipeline-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.seo-page .seo-pipeline-mini .seo-pipeline-icon.rose {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}
.seo-page .seo-pipeline-mini > .seo-pipeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.seo-page .seo-pipeline-mini > .seo-pipeline-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6e6e6e;
}
.seo-page .seo-social-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 576px) {
  .seo-page .seo-social-formats {
    grid-template-columns: 1fr;
  }
}
.seo-page .seo-social-formats .seo-format-card .seo-format-preview {
  width: 100%;
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.15);
}
.seo-page .seo-social-formats .seo-format-card .seo-format-preview.landscape {
  aspect-ratio: 16/9;
}
.seo-page .seo-social-formats .seo-format-card .seo-format-preview.square {
  aspect-ratio: 1/1;
}
.seo-page .seo-social-formats .seo-format-card .seo-format-preview.portrait {
  aspect-ratio: 9/16;
}
.seo-page .seo-social-formats .seo-format-card span {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6e6e6e;
}
.seo-page .seo-steps-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 576px) {
  .seo-page .seo-steps-visual {
    flex-direction: column;
  }
}
.seo-page .seo-steps-visual .seo-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.seo-page .seo-steps-visual .seo-step-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6e6e6e;
}
.seo-page .seo-steps-visual .seo-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.seo-page .seo-steps-visual .seo-step-arrow {
  color: #e0e0e0;
}
@media (max-width: 576px) {
  .seo-page .seo-steps-visual .seo-step-arrow {
    transform: rotate(90deg);
  }
}
.seo-page .seo-library-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .seo-page .seo-library-mock {
    grid-template-columns: repeat(2, 1fr);
  }
}
.seo-page .seo-library-mock .seo-library-item {
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid #e0e0e0;
}
.seo-page .seo-license-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .seo-page .seo-license-visual {
    grid-template-columns: repeat(2, 1fr);
  }
}
.seo-page .seo-license-visual .seo-license-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #10B981;
}
.seo-page .seo-license-visual .seo-license-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #2f2f2f;
}
.seo-page .use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .seo-page .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .seo-page .use-cases-grid {
    grid-template-columns: 1fr;
  }
}
.seo-page .use-case-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.seo-page .use-case-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}
.seo-page .use-case-card:hover .use-case-arrow {
  opacity: 1;
  transform: translateX(0);
}
.seo-page .use-case-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
}
.seo-page .use-case-card p {
  font-size: 0.85rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}
.seo-page .use-case-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-page .use-case-icon svg {
  width: 22px;
  height: 22px;
}
.seo-page .use-case-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.seo-page .use-case-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.seo-page .use-case-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.seo-page .use-case-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.seo-page .use-case-icon.rose {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}
.seo-page .use-case-icon.pink {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}
.seo-page .use-case-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.seo-page .use-case-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}
.seo-page .use-case-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #6e6e6e;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}
.seo-page .use-case-arrow svg {
  width: 18px;
  height: 18px;
}
.seo-page .refinement-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}
.seo-page .refinement-steps {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.seo-page .refinement-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.seo-page .refinement-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
}
.seo-page .refinement-icon svg {
  width: 28px;
  height: 28px;
}
.seo-page .refinement-icon.refined {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.25);
  color: #8b5cf6;
}
.seo-page .refinement-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6e6e6e;
}
.seo-page .refinement-arrow {
  color: #e0e0e0;
}
.seo-page .refinement-arrow svg {
  width: 20px;
  height: 20px;
}
.seo-page .refinement-prompt {
  font-size: 0.8rem;
  color: #6e6e6e;
  font-style: italic;
  padding: 0.4rem 0.85rem;
  background: #f5f5f5;
  border-radius: 100px;
  border: 1px solid #e0e0e0;
}
.seo-page .quality-v4-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .seo-page .quality-v4-icons {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .seo-page .quality-v4-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 340px;
  }
}
.seo-page .quality-icon {
  aspect-ratio: 1/1;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem;
}
.seo-page .quality-icon picture, .seo-page .quality-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.seo-page .quality-icon:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.seo-page .quality-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
  color: #6e6e6e;
  font-size: 0.85rem;
}
.seo-page .ad-creative-demo {
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}
.seo-page .ad-creative-flow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 576px) {
  .seo-page .ad-creative-flow {
    flex-direction: column;
  }
}
.seo-page .ad-creative-icons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.seo-page .ad-creative-icons img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  object-fit: contain;
  background: #f5f5f5;
}
.seo-page .ad-creative-arrow {
  color: #e0e0e0;
  flex-shrink: 0;
}
.seo-page .ad-creative-arrow svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 576px) {
  .seo-page .ad-creative-arrow {
    transform: rotate(90deg);
  }
}
.seo-page .ad-creative-result {
  flex: 1;
  min-width: 0;
}
.seo-page .ad-creative-result img {
  width: 100%;
  max-width: 240px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.seo-page .feature-visual-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.seo-page .visual-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
.seo-page .visual-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}
.seo-page .visual-card-dot:nth-child(2) {
  background: #febc2e;
}
.seo-page .visual-card-dot:nth-child(3) {
  background: #28c840;
}
.seo-page .visual-card-content {
  padding: 1.5rem;
}
.seo-page .features-v3-email-preview {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.seo-page .features-v3-email-header {
  height: 32px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-bottom: 1px solid #e0e0e0;
}
.seo-page .features-v3-email-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.seo-page .features-v3-email-line {
  height: 8px;
  background: #f5f5f5;
  border-radius: 4px;
  width: 60%;
}
.seo-page .features-v3-email-line.wide {
  width: 90%;
}
.seo-page .features-v3-email-line.short {
  width: 40%;
}
.seo-page .features-v3-email-btn {
  width: 80px;
  height: 24px;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 4px;
  margin-top: 0.25rem;
}
.seo-page .features-v3-vector-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.seo-page .features-v3-vector-preview svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.seo-page .features-v3-brand-demo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-page .features-v3-brand-card {
  width: 100%;
  max-width: 280px;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.seo-page .features-v3-brand-url {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.seo-page .features-v3-brand-url svg {
  flex-shrink: 0;
  color: #6e6e6e;
}
.seo-page .features-v3-brand-url span {
  font-size: 0.8rem;
  color: #6e6e6e;
}
.seo-page .features-v3-brand-colors {
  display: flex;
  gap: 0.5rem;
}
.seo-page .features-v3-swatch {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.seo-page .features-v3-swatch[data-bg=rose] {
  background: #f43f5e;
}
.seo-page .features-v3-swatch[data-bg=blue] {
  background: #3b82f6;
}
.seo-page .features-v3-swatch[data-bg=dark] {
  background: #1a1a1a;
}
.seo-page .features-v3-brand-fonts {
  display: flex;
  gap: 0.5rem;
}
.seo-page .features-v3-brand-fonts span {
  padding: 0.3rem 0.6rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #6e6e6e;
}
.seo-page .seo-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.seo-page .comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #ffffff;
}
.seo-page .comparison-table th, .seo-page .comparison-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid #e0e0e0;
}
.seo-page .comparison-table th {
  background: #f5f5f5;
  font-weight: 600;
  color: #2f2f2f;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.seo-page .comparison-table td:first-child {
  font-weight: 500;
  color: #2f2f2f;
}
.seo-page .comparison-table td:not(:first-child) {
  color: #6e6e6e;
}
.seo-page .comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.seo-page .comparison-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.02);
}
@media (max-width: 768px) {
  .seo-page .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .seo-page .comparison-table th, .seo-page .comparison-table td {
    white-space: nowrap;
    min-width: 140px;
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
  }
  .seo-page .comparison-table td:first-child,
  .seo-page .comparison-table th:first-child {
    position: sticky;
    left: 0;
    background: #ffffff;
    z-index: 1;
  }
  .seo-page .comparison-table th:first-child {
    background: #f5f5f5;
  }
}
.seo-page .comparison-table-wide th, .seo-page .comparison-table-wide td {
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
}
@media (max-width: 768px) {
  .seo-page .comparison-table-wide th, .seo-page .comparison-table-wide td {
    min-width: 120px;
    padding: 0.65rem 0.75rem;
    font-size: 0.78rem;
  }
}
.seo-page .comparison-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.seo-page .faq-item {
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.seo-page .faq-item:hover {
  border-color: rgba(59, 130, 246, 0.25);
}
.seo-page .faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}
.seo-page .faq-answer {
  font-size: 0.9rem;
  color: #6e6e6e;
  line-height: 1.65;
  margin: 0;
}

.seo-showcase-cta {
  margin-top: 2rem;
  justify-content: center;
}

.use-cases-api-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 576px) {
  .use-cases-api-grid {
    grid-template-columns: 1fr;
  }
}

.use-cases-api-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  transition: all 0.2s ease;
}
.use-cases-api-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}
.use-cases-api-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
}
.use-cases-api-card p {
  font-size: 0.85rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}

.pricing-page {
  background-color: #fafafa;
  min-height: 100vh;
}
.pricing-page .nav-link-icons {
  display: none;
}

.pricing-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .pricing-hero {
    padding: 6rem 1.5rem 3rem;
  }
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pricing-glow-v3 {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 40%, transparent 70%);
  filter: blur(80px);
}

.pricing-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .pricing-hero-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 576px) {
  .pricing-hero-title {
    font-size: 1.75rem;
  }
}

.pricing-hero-subtitle {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-cards-section {
  padding: 4rem 2rem 5rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .pricing-cards-section {
    padding: 2rem 1.5rem 3rem;
  }
}

.pricing-cards-container {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.pricing-toggle-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #e8e8e8;
  background: #ffffff;
  color: #737373;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pricing-toggle-btn:first-child {
  border-radius: 8px 0 0 8px;
}
.pricing-toggle-btn:nth-child(2) {
  border-radius: 0 8px 8px 0;
}
.pricing-toggle-btn.active {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.pricing-toggle-save {
  position: absolute;
  right: calc(50% - 160px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
@media (max-width: 576px) {
  .pricing-toggle-save {
    position: static;
    transform: none;
    margin-left: 0.5rem;
  }
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.pricing-card.featured {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 1px #1a1a1a;
}
@media (min-width: 992px) {
  .pricing-card.featured {
    transform: scale(1.05);
    z-index: 1;
  }
  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
  }
}

.pricing-card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 1.5rem;
}
.pricing-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.pricing-card-desc {
  font-size: 0.875rem;
  color: #737373;
  margin: 0;
}

.pricing-card-price {
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #737373;
}

.pricing-card-billing {
  font-size: 0.875rem;
  color: #737373;
  margin: 0 0 1.5rem 0;
}

.pricing-card-tokens {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.pricing-card-tokens .token-count {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}
.pricing-card-tokens .token-label {
  font-size: 0.875rem;
  color: #737373;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}
.pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: #737373;
  border-top: 1px solid rgba(232, 232, 232, 0.5);
}
.pricing-card-features li:first-child {
  border-top: none;
}
.pricing-card-features li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.pricing-card-features li.included svg {
  color: #27ae60;
}
.pricing-card-features li.included.highlight {
  color: #1a1a1a;
  font-weight: 500;
}
.pricing-card-features li.not-included {
  opacity: 0.5;
}
.pricing-card-features li.not-included svg {
  color: #737373;
}

.pricing-card-btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: #1a1a1a;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.pricing-card-btn:hover {
  background: #fafafa;
}
.pricing-card-btn.primary {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.pricing-card-btn.primary:hover {
  background: #060606;
}

.token-packs {
  text-align: center;
  padding: 3rem 0;
}

.token-packs-header {
  margin-bottom: 2rem;
}
.token-packs-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.token-packs-header p {
  font-size: 0.9375rem;
  color: #737373;
  margin: 0;
}

.token-packs-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.token-pack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0.75rem;
  min-width: 140px;
  transition: all 0.2s ease;
}
.token-pack:hover {
  border-color: #1a1a1a;
}
.token-pack.popular {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 1px #1a1a1a;
}
.token-pack .pack-badge {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.625rem;
  background: #27ae60;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 1rem;
  white-space: nowrap;
}
.token-pack .pack-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}
.token-pack .pack-label {
  font-size: 0.75rem;
  color: #737373;
}
.token-pack .pack-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 0.5rem;
}

.comparison-section {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .comparison-section {
    padding: 3rem 1.5rem;
  }
}

.comparison-container {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 3rem;
  border: 1px solid #e8e8e8;
  border-radius: 1rem;
  background: #ffffff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.comparison-table th, .comparison-table td {
  padding: 0.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}
.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
}
.comparison-table thead th {
  padding: 0.75rem 1rem;
  background: #fafafa;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}
.comparison-table thead th.feature-col {
  width: 40%;
}
.comparison-table thead th.highlight {
  background: rgba(26, 26, 26, 0.08);
}
.comparison-table thead th.plan-mini {
  color: #22c55e;
}
.comparison-table thead th.plan-pro {
  color: #3b82f6;
}
.comparison-table thead th.plan-max {
  color: #EF4444;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table tbody tr.section-row td {
  background: #fafafa;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 0.375rem 1rem;
}
.comparison-table tbody td {
  color: #737373;
}
.comparison-table tbody td.feature-col {
  color: #404040;
}
.comparison-table tbody td.highlight {
  background: rgba(26, 26, 26, 0.03);
}
.comparison-table .check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 50%;
  position: relative;
}
.comparison-table .check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #27ae60;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.comparison-table .cross {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: rgba(115, 115, 115, 0.1);
  border-radius: 50%;
  position: relative;
}
.comparison-table .cross::before, .comparison-table .cross::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 2px;
  height: 10px;
  background: #737373;
}
.comparison-table .cross::before {
  transform: rotate(45deg);
}
.comparison-table .cross::after {
  transform: rotate(-45deg);
}

.tokens-explained-section {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .tokens-explained-section {
    padding: 3rem 1.5rem;
  }
}

.tokens-explained-container {
  max-width: 1100px;
  margin: 0 auto;
}

.tokens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .tokens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .tokens-grid {
    grid-template-columns: 1fr;
  }
}

.token-info-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.token-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.token-info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.token-info-card p {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
  margin: 0;
}

.token-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.token-info-icon svg {
  width: 24px;
  height: 24px;
  color: #3b82f6;
}

.pricing-faq-section {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .pricing-faq-section {
    padding: 3rem 1.5rem;
  }
}

.pricing-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.pricing-faq-item h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.pricing-faq-item p {
  font-size: 0.9375rem;
  color: #737373;
  line-height: 1.6;
  margin: 0;
}

.roadmap-page {
  background-color: #fafafa;
  min-height: 100vh;
}
.roadmap-page .nav-link-icons {
  display: none;
}

.roadmap-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .roadmap-hero {
    padding: 6rem 1.5rem 3rem;
  }
}

.roadmap-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.roadmap-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 40%, transparent 70%);
  filter: blur(80px);
}

.roadmap-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.roadmap-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .roadmap-hero-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 576px) {
  .roadmap-hero-title {
    font-size: 1.75rem;
  }
}

.roadmap-hero-subtitle {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.roadmap-section {
  padding: 4rem 2rem 6rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .roadmap-section {
    padding: 2rem 1.5rem 4rem;
  }
}

.roadmap-container {
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline {
  position: relative;
}

.roadmap-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .roadmap-item {
    gap: 1.25rem;
  }
}
.roadmap-item:last-child {
  margin-bottom: 0;
}
.roadmap-item:last-child .marker-line {
  display: none;
}

.roadmap-item-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 1.75rem;
}

.marker-dot {
  width: 16px;
  height: 16px;
  background: #2f2f2f;
  border-radius: 50%;
  border: 3px solid #fafafa;
  box-shadow: 0 0 0 3px rgba(47, 47, 47, 0.2);
  flex-shrink: 0;
}

.marker-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(47, 47, 47, 0.3) 0%, rgba(224, 224, 224, 0.5) 100%);
  margin-top: 0.5rem;
  min-height: 2rem;
}

.roadmap-item-content {
  flex: 1;
  min-width: 0;
}

.roadmap-item-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}
.roadmap-item-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .roadmap-item-card {
    padding: 1.25rem;
  }
}
.roadmap-item-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
@media (max-width: 576px) {
  .roadmap-item-card h3 {
    font-size: 1.125rem;
  }
}
.roadmap-item-card > p {
  font-size: 0.9375rem;
  color: #6e6e6e;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.roadmap-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
}
.roadmap-status.coming-soon {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.roadmap-status.in-progress {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.roadmap-status.planned {
  background: rgba(110, 110, 110, 0.1);
  color: #6e6e6e;
}
.roadmap-status.launched {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.roadmap-status.beta {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.roadmap-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  flex-shrink: 0;
}
.roadmap-item-icon svg {
  width: 22px;
  height: 22px;
}
.roadmap-item-icon.purple {
  background: rgba(139, 92, 246, 0.1);
}
.roadmap-item-icon.purple svg {
  color: #8b5cf6;
}
.roadmap-item-icon.blue {
  background: rgba(59, 130, 246, 0.1);
}
.roadmap-item-icon.blue svg {
  color: #3b82f6;
}
.roadmap-item-icon.green {
  background: rgba(16, 185, 129, 0.1);
}
.roadmap-item-icon.green svg {
  color: #10B981;
}
.roadmap-item-icon.orange {
  background: rgba(245, 158, 11, 0.1);
}
.roadmap-item-icon.orange svg {
  color: #F59E0B;
}

.roadmap-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media (max-width: 576px) {
  .roadmap-features {
    grid-template-columns: 1fr;
  }
}
.roadmap-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #2f2f2f;
}
.roadmap-features li svg {
  width: 16px;
  height: 16px;
  color: #27ae60;
  flex-shrink: 0;
}

.request-feature-section {
  padding: 4rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .request-feature-section {
    padding: 3rem 1.5rem;
  }
}

.request-feature-container {
  max-width: 600px;
  margin: 0 auto;
}

.request-feature-content {
  text-align: center;
}
.request-feature-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .request-feature-content h2 {
    font-size: 1.5rem;
  }
}
.request-feature-content p {
  font-size: 1rem;
  color: #6e6e6e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.request-feature-content .btn-v4-primary {
  display: inline-flex;
}

.request-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 47, 47, 0.1);
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
}
.request-feature-icon svg {
  width: 32px;
  height: 32px;
  color: #2f2f2f;
}

.pub-page {
  min-height: 100vh;
  background-color: #fafafa;
  padding-top: 80px;
}

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

.pub-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6e6e6e;
  margin-bottom: 1rem;
}
.pub-breadcrumb a {
  color: #6e6e6e;
  text-decoration: none;
  transition: color 0.15s ease;
}
.pub-breadcrumb a:hover {
  color: #2f2f2f;
}
.pub-breadcrumb span {
  color: #2f2f2f;
  font-weight: 500;
}
.pub-breadcrumb svg {
  flex-shrink: 0;
  color: #6e6e6e;
  opacity: 0.5;
}

.pub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.pub-header-title {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-shrink: 0;
}
.pub-header-title h1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
  line-height: 1.2;
}

.pub-header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: flex-end;
}
.pub-header-controls .pub-style-dropdown-menu {
  bottom: auto;
  top: calc(100% + 0.5rem);
  left: auto;
  right: 0;
}

.pub-search-box {
  position: relative;
  flex: 1;
  max-width: 220px;
  min-width: 140px;
}
.pub-search-box input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.25rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  background: #ffffff;
  color: #2f2f2f;
  transition: all 0.15s ease;
  height: 2rem;
}
.pub-search-box input::placeholder {
  color: #6e6e6e;
}
.pub-search-box input:focus {
  outline: none;
  border-color: #2f2f2f;
  box-shadow: 0 0 0 3px rgba(47, 47, 47, 0.1);
}
.pub-search-box svg {
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #6e6e6e;
  pointer-events: none;
}

.pub-btn-cdn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0 0.75rem;
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  height: 2rem;
  flex-shrink: 0;
}
.pub-btn-cdn:hover {
  background-color: #000000;
}
.pub-btn-cdn svg {
  width: 16px;
  height: 16px;
}

.pub-category-tabs {
  display: flex;
  gap: 0.25rem;
  background: #f5f5f5;
  padding: 0.25rem;
  border-radius: 0.5rem;
}

.pub-category-tab {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  background: transparent;
  color: #6e6e6e;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pub-category-tab:hover {
  color: #2f2f2f;
}
.pub-category-tab.active {
  background: #ffffff;
  color: #2f2f2f;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pub-icon-count {
  color: #6e6e6e;
  font-size: 0.75rem;
  white-space: nowrap;
}

.pub-style-dropdown {
  position: relative;
}

.pub-style-dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #2f2f2f;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  height: 2rem;
}
.pub-style-dropdown-button:hover {
  background-color: #ededed;
  border-color: #c7c7c7;
}
.pub-style-dropdown-button:focus {
  outline: none;
  border-color: #2f2f2f;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
.pub-style-dropdown-button svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.pub-style-dropdown-button.active svg, .pub-style-dropdown-button[aria-expanded=true] svg {
  transform: rotate(180deg);
}

.pub-style-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 140px;
  z-index: 100;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.25rem);
  transition: all 0.2s ease;
}
.pub-style-dropdown-menu.show, .pub-style-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pub-style-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 400;
  color: #2f2f2f;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.pub-style-dropdown-item:hover {
  background-color: #f5f5f5;
}
.pub-style-dropdown-item.selected {
  background-color: #fafafa;
  font-weight: 500;
}

.pub-loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50vh;
  transition: opacity 0.3s ease;
}
.pub-loading-spinner.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.pub-spinner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pub-spinner-wrapper .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(47, 47, 47, 0.15);
  border-top-color: #2f2f2f;
  border-radius: 50%;
  animation: pub-spin 0.8s linear infinite;
}
.pub-spinner-wrapper span {
  color: #6e6e6e;
  font-size: 0.875rem;
}

@keyframes pub-spin {
  to {
    transform: rotate(360deg);
  }
}
.pub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.5rem;
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3px 3px 3px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(110, 110, 110, 0.3) transparent;
}
.pub-grid::-webkit-scrollbar {
  width: 6px;
}
.pub-grid::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}
.pub-grid::-webkit-scrollbar-thumb {
  background-color: rgba(110, 110, 110, 0.3);
  border-radius: 3px;
  transition: background-color 0.15s ease;
}
.pub-grid::-webkit-scrollbar-thumb:hover {
  background-color: rgba(110, 110, 110, 0.5);
}

.pub-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  transition: all 0.15s ease;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
}
.pub-card:hover {
  border-color: #2f2f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.pub-card.hidden {
  display: none;
}

.pub-card-preview {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pub-card-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pub-card-name {
  display: block;
  width: 100%;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #2f2f2f;
  text-decoration: none;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pub-card-actions {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.pub-card-actions button {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.pub-card-actions button svg {
  width: 10px;
  height: 10px;
}

.pub-card:hover .pub-card-actions {
  opacity: 1;
}

.pub-btn-action {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #2f2f2f;
}
.pub-btn-action:hover {
  background-color: #e8e8e8;
}

.pub-btn-admin-delete {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: #6e6e6e;
}
.pub-btn-admin-delete:hover {
  background-color: #fee;
  border-color: #e74c3c;
  color: #e74c3c;
}

.pub-btn-admin-edit {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: #6e6e6e;
}
.pub-btn-admin-edit:hover {
  background-color: rgba(47, 47, 47, 0.1);
  border-color: #2f2f2f;
  color: #2f2f2f;
}

.pub-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #10B981;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3000;
}
.pub-toast.show {
  opacity: 1;
}
.pub-toast.error {
  background-color: #EF4444;
}

.pub-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #6e6e6e;
}
.pub-empty svg {
  color: #e0e0e0;
  margin-bottom: 1rem;
}
.pub-empty p {
  margin: 0;
}

.pub-load-more-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 0;
  margin-top: 1rem;
}

.pub-btn-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 180px;
}
.pub-btn-load-more:hover:not(:disabled) {
  background-color: #1b1b1b;
}
.pub-btn-load-more:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.pub-btn-load-more .pub-load-more-spinner {
  display: flex;
  align-items: center;
}
.pub-btn-load-more .pub-load-more-spinner .spinner {
  animation: pub-spin 0.8s linear infinite;
}
.pub-btn-load-more .pub-load-more-spinner.hidden {
  display: none;
}
.pub-btn-load-more .pub-load-more-text.hidden {
  display: none;
}

.pub-load-more-count {
  font-size: 0.8125rem;
  color: #6e6e6e;
}

.pub-style-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  color: #6e6e6e;
  font-size: 0.875rem;
}
.pub-style-loading .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-top-color: #2f2f2f;
  border-radius: 50%;
  animation: pub-spin 0.8s linear infinite;
}

@media (max-width: 768px) {
  .pub-main {
    padding: 1rem;
  }
  .pub-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .pub-header-title {
    justify-content: space-between;
    width: 100%;
  }
  .pub-header-controls {
    justify-content: stretch;
    gap: 0.5rem;
  }
  .pub-search-box {
    flex: 1;
    max-width: none;
    min-width: 0;
  }
  .pub-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }
}
@media (max-width: 576px) {
  .pub-header-title h1 {
    font-size: 1.125rem;
  }
  .pub-header-controls {
    flex-wrap: wrap;
  }
  .pub-header-controls .pub-style-dropdown-menu {
    left: 0;
    right: auto;
  }
  .pub-search-box {
    order: 1;
    flex-basis: 100%;
  }
  .pub-style-dropdown {
    order: 2;
  }
  .pub-btn-cdn {
    order: 4;
  }
  .pub-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
}
.icon-detail-page .icon-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 1.5rem 4rem;
}
.icon-detail-page .icon-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6e6e6e;
  margin-bottom: 2rem;
}
.icon-detail-page .icon-detail-breadcrumb a {
  color: #6e6e6e;
  text-decoration: none;
  transition: color 0.15s ease;
}
.icon-detail-page .icon-detail-breadcrumb a:hover {
  color: #2f2f2f;
}
.icon-detail-page .icon-detail-breadcrumb span {
  color: #2f2f2f;
  font-weight: 500;
}
.icon-detail-page .icon-detail-breadcrumb svg {
  flex-shrink: 0;
  color: #e0e0e0;
}
.icon-detail-page .icon-detail-main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
.icon-detail-page .icon-detail-preview {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.icon-detail-page .icon-detail-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon-detail-page .icon-detail-info h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.icon-detail-page .icon-detail-style-badge,
.icon-detail-page .icon-detail-color-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}
.icon-detail-page .icon-detail-style-badge {
  background: rgba(47, 47, 47, 0.08);
  color: #2f2f2f;
}
.icon-detail-page .icon-detail-color-badge {
  background: rgba(139, 92, 246, 0.1);
  color: #7C3AED;
}
.icon-detail-page .icon-detail-description {
  font-size: 0.9375rem;
  color: #6e6e6e;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.icon-detail-page .icon-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}
.icon-detail-page .icon-detail-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: #6e6e6e;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
}
.icon-detail-page .icon-detail-usage {
  margin-bottom: 1.5rem;
}
.icon-detail-page .icon-detail-usage h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 0.75rem;
}
.icon-detail-page .icon-detail-code-block {
  margin-bottom: 0.75rem;
}
.icon-detail-page .icon-detail-code-block label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.375rem;
}
.icon-detail-page .icon-detail-code {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
}
.icon-detail-page .icon-detail-code code {
  flex: 1;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.8125rem;
  color: #2f2f2f;
  word-break: break-all;
  line-height: 1.4;
}
.icon-detail-page .icon-detail-copy-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  cursor: pointer;
  color: #6e6e6e;
  transition: all 0.15s ease;
}
.icon-detail-page .icon-detail-copy-btn:hover {
  border-color: #c7c7c7;
  color: #2f2f2f;
}
.icon-detail-page .icon-detail-copy-btn.copied {
  border-color: #27ae60;
  color: #27ae60;
}
.icon-detail-page .icon-detail-actions {
  display: flex;
  gap: 0.75rem;
}
.icon-detail-page .icon-detail-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #2f2f2f;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.icon-detail-page .icon-detail-download-btn:hover {
  background: #1b1b1b;
}
.icon-detail-page .icon-detail-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}
.icon-detail-page .icon-detail-related h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 1.25rem;
}
.icon-detail-page .icon-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.icon-detail-page .icon-detail-related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.15s ease;
}
.icon-detail-page .icon-detail-related-card:hover {
  border-color: #c7c7c7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.icon-detail-page .icon-detail-related-preview {
  width: 64px;
  height: 64px;
}
.icon-detail-page .icon-detail-related-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon-detail-page .icon-detail-related-style {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6e6e6e;
}
.icon-detail-page .icon-detail-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #ffffff;
  color: #2f2f2f;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.icon-detail-page .icon-detail-save-btn:hover {
  border-color: #2f2f2f;
  background: #f5f5f5;
}
.icon-detail-page .icon-detail-more {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}
.icon-detail-page .icon-detail-more h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 1.25rem;
}
.icon-detail-page .icon-detail-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
}
.icon-detail-page .icon-detail-more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.15s ease;
}
.icon-detail-page .icon-detail-more-card:hover {
  border-color: #c7c7c7;
  transform: translateY(-2px);
}
.icon-detail-page .icon-detail-more-preview {
  width: 48px;
  height: 48px;
}
.icon-detail-page .icon-detail-more-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon-detail-page .icon-detail-more-name {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6e6e6e;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.icon-detail-page .icon-detail-more-link {
  margin-top: 1rem;
  text-align: center;
}
.icon-detail-page .icon-detail-more-link a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6e6e6e;
  text-decoration: none;
  transition: color 0.15s ease;
}
.icon-detail-page .icon-detail-more-link a:hover {
  color: #2f2f2f;
}
.icon-detail-page .icon-detail-cta {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  text-align: center;
}
.icon-detail-page .icon-detail-cta-content {
  max-width: 440px;
  margin: 0 auto;
}
.icon-detail-page .icon-detail-cta-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0 0 0.5rem;
}
.icon-detail-page .icon-detail-cta-content p {
  font-size: 0.9375rem;
  color: #6e6e6e;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.icon-detail-page .icon-detail-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: #2f2f2f;
  color: #ffffff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}
.icon-detail-page .icon-detail-cta-btn:hover {
  background: #1b1b1b;
}
@media (max-width: 768px) {
  .icon-detail-page .icon-detail-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .icon-detail-page .icon-detail-preview {
    max-width: 280px;
    margin: 0 auto;
  }
  .icon-detail-page .icon-detail-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .icon-detail-page .icon-detail {
    padding: 1.5rem 1rem 3rem;
  }
  .icon-detail-page .icon-detail-info h1 {
    font-size: 1.375rem;
  }
  .icon-detail-page .icon-detail-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-detail-page .icon-detail-more-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .icon-detail-page .icon-detail-cta {
    padding: 2rem 1.5rem;
  }
  .icon-detail-page .icon-detail-cta-content h2 {
    font-size: 1.25rem;
  }
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.page-header-left {
  flex: 1;
}

.page-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1rem;
  color: #6e6e6e;
}

.btn-cdn-script {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-cdn-script svg {
  flex-shrink: 0;
}
.btn-cdn-script:hover {
  background-color: #222222;
}
.btn-cdn-script:active {
  transform: scale(0.98);
}

.size-toggle-group {
  display: flex;
  gap: 0.25rem;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.size-toggle {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6e6e6e;
  background-color: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.size-toggle:hover {
  color: #2f2f2f;
  background-color: rgba(47, 47, 47, 0.1);
}
.size-toggle.active {
  color: #ffffff;
  background-color: #2f2f2f;
}

.btn-custom-size {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.btn-custom-size svg {
  width: 14px;
  height: 14px;
}
.btn-custom-size:hover {
  background-color: #1b1b1b;
  transform: translateY(-1px);
}
.btn-custom-size:active {
  transform: translateY(0);
}
.btn-custom-size.hidden {
  display: none;
}

.custom-size-input-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.custom-size-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2f2f2f;
  flex-shrink: 0;
}

.custom-size-input-field {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: #2f2f2f;
  background-color: #ffffff;
  transition: all 0.15s ease;
}
.custom-size-input-field:focus {
  outline: none;
  border-color: #2f2f2f;
  box-shadow: 0 0 0 2px rgba(47, 47, 47, 0.1);
}

.custom-size-unit {
  font-size: 0.875rem;
  color: #6e6e6e;
  font-weight: 500;
}

.custom-size-preview-text {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin: 1rem 0;
}
.custom-size-preview-text code {
  display: block;
  margin-top: 0.5rem;
  background-color: #f5f5f5;
  padding: 0.625rem 0.875rem;
  border-radius: 0.375rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8125rem;
  color: #2f2f2f;
  border: 1px solid #e0e0e0;
  word-break: break-all;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

.library-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.library-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
}

.library-card-count {
  font-size: 0.875rem;
  color: #6e6e6e;
}

.library-card-preview {
  margin-bottom: 1rem;
}

.library-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.library-preview-item {
  aspect-ratio: 1;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
}

.library-card-actions {
  display: flex;
  gap: 0.5rem;
}

.library-card-add {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-style: dashed;
  min-height: 200px;
}
.library-card-add:hover {
  border-color: #2f2f2f;
  background-color: #f5f5f5;
}

.library-add-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #6e6e6e;
}
.library-add-content svg {
  width: 2.5rem;
  height: 2.5rem;
}
.library-add-content span {
  font-size: 0.9375rem;
  font-weight: 500;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.favorite-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.2s ease;
}
.favorite-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.favorite-icon-container {
  aspect-ratio: 1;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(-45deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(-45deg, transparent 75%, #ccc 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.favorite-icon {
  max-width: 80%;
  max-height: 80%;
}

.favorite-info {
  margin-bottom: 0.75rem;
}

.favorite-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.25rem;
}

.favorite-style {
  font-size: 0.8125rem;
  color: #6e6e6e;
}

.favorite-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s ease;
  color: #2f2f2f;
}
.btn-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.btn-icon:hover {
  background-color: #f5f5f5;
  border-color: #c7c7c7;
}
.btn-icon-danger {
  color: #e74c3c;
}
.btn-icon-danger:hover {
  background-color: #fdecea;
  border-color: #e74c3c;
}

.icon-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.icon-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0;
  text-align: center;
  transition: all 0.15s ease;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.icon-card:hover {
  border-color: #2f2f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.icon-card.hidden {
  display: none;
}
.icon-card.recoloring {
  pointer-events: none;
}

.icon-preview {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: linear-gradient(45deg, #d0d0d0 25%, transparent 25%), linear-gradient(-45deg, #d0d0d0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #d0d0d0 75%), linear-gradient(-45deg, transparent 75%, #d0d0d0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-color: #f5f5f5;
}
.icon-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.icon-preview.loading img {
  opacity: 0.3;
}

.recolor-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  z-index: 10;
}
.recolor-spinner .spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid #e0e0e0;
  border-top-color: #2f2f2f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.icon-name {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2f2f2f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top: 1px solid #e0e0e0;
  background-color: #ffffff;
}

.icon-card .icon-info,
.icon-card .icon-actions,
.icon-card .icon-name-wrapper,
.icon-card .icon-code-display {
  display: none;
}

.btn-library-action {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2f2f2f;
  transition: all 0.15s ease;
  padding: 0;
}
.btn-library-action svg {
  width: 12px;
  height: 12px;
}
.btn-library-action:hover:not(.loading):not(.success) {
  background-color: #a2a2a2;
  border-color: #2f2f2f;
  color: #2f2f2f;
}
.btn-library-action.loading {
  cursor: wait;
  opacity: 0.7;
}
.btn-library-action.loading .spinner-icon {
  animation: spin 1s linear infinite;
}
.btn-library-action.success {
  background-color: #10B981;
  border-color: #10B981;
  color: #ffffff;
}
.btn-library-action:disabled {
  cursor: not-allowed;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-state,
.error-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: #6e6e6e;
}

.error-state {
  color: #e74c3c;
}

.error-message {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  grid-column: 1/-1;
}
.empty-state svg {
  width: 4rem;
  height: 4rem;
  color: #6e6e6e;
  margin-bottom: 1.5rem;
}
.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.empty-state p {
  font-size: 1rem;
  color: #6e6e6e;
  margin-bottom: 0.5rem;
}

.empty-state-hint {
  font-size: 0.9375rem;
}
.empty-state-hint a {
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 500;
}
.empty-state-hint a:hover {
  text-decoration: underline;
}

.editing-view {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 200px);
}
.editing-view.hidden {
  display: none;
}

.editing-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.btn-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: #2f2f2f;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-back svg {
  flex-shrink: 0;
}
.btn-back:hover {
  background-color: #f5f5f5;
  border-color: #2f2f2f;
}

.editing-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
}

.editing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.editing-left,
.editing-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.editing-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}

.editing-preview-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

.editing-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #d0d0d0 25%, transparent 25%), linear-gradient(-45deg, #d0d0d0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #d0d0d0 75%), linear-gradient(-45deg, transparent 75%, #d0d0d0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-color: #f5f5f5;
  border-radius: 0.75rem;
  padding: 3rem;
  min-height: 300px;
  position: relative;
}
.editing-preview img {
  max-width: 256px;
  max-height: 256px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.editing-preview.loading img {
  opacity: 0.3;
}

.editing-preview-spinner {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 0.75rem;
  z-index: 10;
}
.editing-preview-spinner.active {
  display: flex;
}
.editing-preview-spinner .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e0e0e0;
  border-top-color: #2f2f2f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.editing-tools-container {
  display: flex;
  flex-direction: column;
}

.editing-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.btn-edit-tool {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #2f2f2f;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-edit-tool svg {
  flex-shrink: 0;
}
.btn-edit-tool:hover:not(:disabled) {
  background-color: #f5f5f5;
  border-color: #2f2f2f;
}
.btn-edit-tool:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-edit-tool.btn-delete:hover:not(:disabled) {
  background-color: #fee;
  border-color: #e74c3c;
  color: #e74c3c;
}

.editing-refinement {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.refinement-textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.15s ease;
}
.refinement-textarea:focus {
  outline: none;
  border-color: #2f2f2f;
  box-shadow: 0 0 0 3px rgba(47, 47, 47, 0.1);
}

.btn-refine {
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-refine:hover:not(:disabled) {
  background-color: #161616;
}
.btn-refine:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.refinement-note {
  font-size: 0.75rem;
  color: #6e6e6e;
  margin: 0;
}

.editing-info {
  display: flex;
  flex-direction: column;
}

.editing-code-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}
.editing-code-display code {
  flex: 1;
  font-size: 0.8125rem;
  color: #2f2f2f;
  font-family: "Courier New", Courier, monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.editing-code-display button {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2f2f2f;
  transition: all 0.15s ease;
  padding: 0;
}
.editing-code-display button:hover {
  background-color: #2f2f2f;
  border-color: #2f2f2f;
  color: #ffffff;
}

.editing-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
}

.editing-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  gap: 0.5rem;
}
.editing-detail-item .detail-label {
  color: #6e6e6e;
  font-weight: 500;
}
.editing-detail-item .detail-value {
  color: #2f2f2f;
  font-weight: 600;
}
.editing-detail-item .btn-edit-name {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #6e6e6e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: color 0.2s, background-color 0.2s;
  margin-left: auto;
}
.editing-detail-item .btn-edit-name:hover {
  color: #2f2f2f;
  background-color: rgba(0, 0, 0, 0.05);
}
.editing-detail-item .btn-edit-name svg {
  width: 14px;
  height: 14px;
}
.editing-detail-item .editing-name-input {
  flex: 1;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
  outline: none;
  max-width: 150px;
}
.editing-detail-item .editing-name-input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .editing-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .editing-tools {
    grid-template-columns: 1fr;
  }
}
.settings-section {
  margin-bottom: 2rem;
}

.settings-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-top: 1rem;
}

.settings-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.settings-item:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.settings-item-danger h4 {
  color: #e74c3c;
}

.settings-item-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.25rem;
}
.settings-item-info p {
  font-size: 0.875rem;
  color: #6e6e6e;
}

.settings-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 1rem 0;
}

.profile-image-upload {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-image-preview {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image-placeholder {
  font-size: 2rem;
  font-weight: 600;
  color: #6e6e6e;
}

.account-overview {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.account-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f2f2f, #090909);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-circle span {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.account-info {
  flex: 1;
}
.account-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}

.account-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #f5f5f5;
  color: #2f2f2f;
}
.tier-badge.tier-free {
  background-color: #e8f4fd;
  color: #2196f3;
}
.tier-badge.tier-mini {
  background-color: #d1fae5;
  color: #065f46;
}
.tier-badge.tier-pro {
  background-color: #e8f5e9;
  color: #4caf50;
}
.tier-badge.tier-trial {
  background-color: #dbeafe;
  color: #3b82f6;
}
.tier-badge.tier-max {
  background-color: #fff3e0;
  color: #ff9800;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #e8f5e9;
  color: #2e7d32;
}
.verified-badge svg {
  width: 12px;
  height: 12px;
}

.unverified-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #fff8e1;
  color: #f9a825;
}

.member-since {
  font-size: 0.875rem;
  color: #6e6e6e;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #f5f5f5;
  border-radius: 0.75rem;
  transition: all 0.15s ease;
}
.stat-item:hover {
  background-color: #f0f0f0;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2f2f2f;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: #6e6e6e;
}

.danger-title {
  color: #e74c3c;
}

.danger-card {
  border-color: #fde8e5;
  background-color: #fffbfb;
}

.delete-warning {
  background-color: #fef3f2;
  border: 1px solid #fde8e5;
  border-radius: 0.5rem;
  padding: 1rem;
}
.delete-warning p {
  margin: 0 0 0.5rem 0;
  color: #6e6e6e;
}
.delete-warning p strong {
  color: #c0392b;
}
.delete-warning ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #6e6e6e;
}
.delete-warning ul li {
  margin-bottom: 0.25rem;
}

.delete-step.hidden {
  display: none;
}

@media (max-width: 640px) {
  .account-overview {
    flex-direction: column;
    text-align: center;
  }
  .account-badges {
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .settings-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .settings-item button {
    width: 100%;
  }
}
.btn-secondary,
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 2.5rem;
  border: 1px solid transparent;
}
.btn-secondary svg,
.btn-danger svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.btn-secondary:disabled,
.btn-danger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background-color: #f5f5f5;
  color: #2f2f2f;
  border-color: #e0e0e0;
}
.btn-secondary:hover {
  background-color: #ededed;
  border-color: #c7c7c7;
}

.btn-danger {
  background-color: #e74c3c;
  color: #ffffff;
  border-color: #e74c3c;
}
.btn-danger:hover {
  background-color: #e43725;
  border-color: #e43725;
}

.btn-logout {
  margin: 3rem 0 0;
  padding: 0.75rem 2.5rem;
  background-color: #ffffff;
  color: #6e6e6e;
  border: 1px solid #e0e0e0;
  font-weight: 600;
  width: 100%;
  display: flex;
}
.btn-logout:hover {
  color: #2f2f2f;
  border-color: #6e6e6e;
  background-color: #f5f5f5;
}
.btn-logout svg {
  width: 1.125rem;
  height: 1.125rem;
}

.icon-code-container {
  max-width: 560px;
  width: 100%;
  margin: 1rem auto 0;
}
.icon-code-container.hidden {
  display: none;
}
.icon-code-container .icon-code-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
}
.icon-code-container .icon-code-display code {
  flex: 1;
  font-size: 0.6875rem;
  color: #2f2f2f;
  font-family: "Courier New", Courier, monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.icon-code-container .btn-copy-code {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2f2f2f;
  transition: all 0.15s ease;
  padding: 0;
}
.icon-code-container .btn-copy-code svg {
  width: 1rem;
  height: 1rem;
}
.icon-code-container .btn-copy-code:hover {
  background-color: #2f2f2f;
  border-color: #2f2f2f;
  color: #ffffff;
}

@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .page-header-right {
    width: 100%;
    flex-wrap: wrap;
  }
  .size-toggle-group {
    flex: 1;
    width: 100%;
  }
  .size-toggle {
    flex: 1;
    text-align: center;
  }
}
.public-icons-page .public-page {
  min-height: 100vh;
  background-color: #fafafa;
  padding-top: 80px;
}
.public-icons-page .public-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.filter-controls {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}
.filter-controls .style-dropdown-menu {
  bottom: auto;
  top: calc(100% + 0.5rem);
  left: auto;
  right: 0;
}

.search-box {
  width: 200px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: #ffffff;
  color: #2f2f2f;
  transition: all 0.15s ease;
}
.search-box input::placeholder {
  color: #6e6e6e;
}
.search-box input:focus {
  outline: none;
  border-color: #2f2f2f;
  box-shadow: 0 0 0 3px rgba(47, 47, 47, 0.1);
}
.search-box svg {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #6e6e6e;
  pointer-events: none;
}

.category-tabs {
  display: flex;
  gap: 0.25rem;
  background: #f5f5f5;
  padding: 0.25rem;
  border-radius: 0.5rem;
}

.btn-cdn-script {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-cdn-script:hover {
  background-color: #000000;
}
.btn-cdn-script svg {
  width: 18px;
  height: 18px;
}

.category-tab {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  background: transparent;
  color: #6e6e6e;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.category-tab:hover {
  color: #2f2f2f;
}
.category-tab.active {
  background: #ffffff;
  color: #2f2f2f;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.icon-count {
  color: #6e6e6e;
  font-size: 0.875rem;
  flex: 1;
  text-align: center;
  margin: 0;
}

.icons-loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50vh;
  transition: opacity 0.3s ease;
}
.icons-loading-spinner.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icons-loading-spinner .spinner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.icons-loading-spinner .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(47, 47, 47, 0.15);
  border-top-color: #2f2f2f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.icons-loading-spinner span {
  color: #6e6e6e;
  font-size: 0.875rem;
}

.public-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.5rem;
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3px 3px 3px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(110, 110, 110, 0.3) transparent;
}
.public-icons-grid::-webkit-scrollbar {
  width: 6px;
}
.public-icons-grid::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}
.public-icons-grid::-webkit-scrollbar-thumb {
  background-color: rgba(110, 110, 110, 0.3);
  border-radius: 3px;
  transition: background-color 0.15s ease;
}
.public-icons-grid::-webkit-scrollbar-thumb:hover {
  background-color: rgba(110, 110, 110, 0.5);
}

.public-icon-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  transition: all 0.15s ease;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
}
.public-icon-card:hover {
  border-color: #2f2f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.public-icon-card.hidden {
  display: none;
}

.public-icon-preview {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.public-icon-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.public-icon-name {
  display: block;
  width: 100%;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-icon-class {
  display: none;
}

.public-icon-actions {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.public-icon-actions button {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.public-icon-actions button svg {
  width: 10px;
  height: 10px;
}

.public-icon-card:hover .public-icon-actions {
  opacity: 1;
}

.btn-copy-class {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #2f2f2f;
}
.btn-copy-class:hover {
  background-color: #e8e8e8;
}

.btn-save-icon {
  background-color: #2f2f2f;
  border: none;
  color: #ffffff;
}
.btn-save-icon:hover {
  background-color: #000000;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #6e6e6e;
}
.empty-state svg {
  color: #e0e0e0;
  margin-bottom: 1rem;
}
.empty-state p {
  margin: 0;
}

.cdn-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.cdn-modal.active {
  display: flex;
}

.public-cdn-modal-content {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  width: calc(100% - 2rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cdn-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.cdn-modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0 !important;
}

.cdn-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6e6e6e;
  padding: 0;
  line-height: 1;
}
.cdn-modal-close:hover {
  color: #2f2f2f;
}

.cdn-code-block {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.cdn-code-block code {
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  color: #2f2f2f;
  word-break: break-all;
}

.cdn-modal-actions {
  display: flex;
  gap: 0.75rem;
}
.cdn-modal-actions button {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-copy {
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
}
.btn-copy:hover {
  background-color: #000000;
}

.btn-close-modal {
  background-color: #f5f5f5;
  color: #2f2f2f;
  border: 1px solid #e0e0e0;
}
.btn-close-modal:hover {
  background-color: #e8e8e8;
}

.load-more-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 0;
  margin-top: 1rem;
}

.btn-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 180px;
}
.btn-load-more:hover:not(:disabled) {
  background-color: #1b1b1b;
}
.btn-load-more:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-load-more .load-more-spinner {
  display: flex;
  align-items: center;
}
.btn-load-more .load-more-spinner .spinner {
  animation: spin 0.8s linear infinite;
}
.btn-load-more .load-more-spinner.hidden {
  display: none;
}
.btn-load-more .load-more-text.hidden {
  display: none;
}

.load-more-count {
  font-size: 0.8125rem;
  color: #6e6e6e;
}

.style-loading-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  color: #6e6e6e;
  font-size: 0.875rem;
}
.style-loading-indicator .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-top-color: #2f2f2f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.public-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #10B981;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3000;
}
.public-toast.show {
  opacity: 1;
}
.public-toast.error {
  background-color: #EF4444;
}

.public-copy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.public-copy-modal.active {
  display: flex;
}

.public-copy-modal-content {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.public-copy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.public-copy-modal-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2f2f2f;
}
.public-copy-modal-header h3 .modal-title-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.public-copy-modal-header h3 .modal-title-link svg {
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}
.public-copy-modal-header h3 .modal-title-link:hover svg {
  opacity: 0.8;
}
.public-copy-modal-header .modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6e6e6e;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.15s ease;
}
.public-copy-modal-header .modal-close-btn:hover {
  background-color: #f5f5f5;
  color: #2f2f2f;
}

.public-copy-modal-icon-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: zoom-in;
}
.public-copy-modal-icon-preview img {
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.05s ease-out;
}

.public-copy-modal-sizes {
  margin-bottom: 1rem;
}
.public-copy-modal-sizes label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.public-copy-modal-sizes .size-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.public-copy-modal-sizes .size-option {
  padding: 0.5rem;
  text-align: center;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2f2f2f;
  cursor: pointer;
  transition: all 0.15s ease;
}
.public-copy-modal-sizes .size-option:hover {
  background-color: #a2a2a2;
  border-color: #2f2f2f;
}
.public-copy-modal-sizes .size-option.active {
  background-color: #2f2f2f;
  border-color: #2f2f2f;
  color: #ffffff;
}

.public-copy-modal-code {
  margin-bottom: 1rem;
}
.public-copy-modal-code label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.public-copy-modal-code .code-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.public-copy-modal-code .code-display code {
  flex: 1;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8125rem;
  color: #2f2f2f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.public-copy-modal-code .code-display button {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2f2f2f;
  transition: all 0.15s ease;
  padding: 0;
}
.public-copy-modal-code .code-display button svg {
  width: 14px;
  height: 14px;
}
.public-copy-modal-code .code-display button:hover {
  background-color: #a2a2a2;
  border-color: #2f2f2f;
  color: #2f2f2f;
}

.public-copy-modal-actions {
  display: flex;
  gap: 0.5rem;
}
.public-copy-modal-actions button, .public-copy-modal-actions a {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.public-copy-modal-actions .btn-save-to-library {
  background-color: #2f2f2f;
  color: #ffffff;
}
.public-copy-modal-actions .btn-save-to-library:hover {
  background-color: #000000;
}
.public-copy-modal-actions .btn-close {
  background-color: #f5f5f5;
  color: #2f2f2f;
  border-color: #e0e0e0;
  gap: 0.35rem;
}
.public-copy-modal-actions .btn-close:hover {
  background-color: #e8e8e8;
}

@media (max-width: 640px) {
  .filter-controls {
    flex-wrap: wrap;
  }
  .search-box {
    flex: 1;
    min-width: 120px;
  }
  .icon-count {
    order: 3;
    width: 100%;
  }
  .category-tabs {
    width: 100%;
    justify-content: center;
  }
  .public-icons-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
}
@media (max-width: 1024px) {
  .icon-library-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.375rem;
  }
  .editing-content {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .editing-preview {
    padding: 2rem;
    min-height: 250px;
  }
  .editing-preview img {
    max-width: 200px;
    max-height: 200px;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 0 0.5rem;
  }
  .page-title {
    font-size: 1.5rem;
  }
  .page-subtitle {
    font-size: 0.875rem;
  }
  .icon-library-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .icon-card {
    border-radius: 0.375rem;
  }
  .icon-preview {
    padding: 0.5rem;
  }
  .icon-name {
    font-size: 0.6875rem;
    padding: 0.375rem;
  }
  .editing-view {
    height: auto;
    min-height: calc(100vh - 150px);
  }
  .editing-header {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
  }
  .btn-back {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
  }
  .btn-back span {
    display: none;
  }
  .editing-title {
    font-size: 1rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .editing-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    overflow-y: visible;
  }
  .editing-preview-container {
    order: 1;
  }
  .editing-preview {
    padding: 1.5rem;
    min-height: 200px;
    border-radius: 0.5rem;
  }
  .editing-preview img {
    max-width: 160px;
    max-height: 160px;
  }
  .editing-tools-container {
    order: 2;
  }
  .editing-tools {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
  }
  .btn-edit-tool {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    gap: 0.375rem;
  }
  .btn-edit-tool svg {
    width: 16px;
    height: 16px;
  }
  .editing-left,
  .editing-right {
    gap: 1rem;
  }
  .editing-refinement {
    order: 3;
  }
  .refinement-textarea {
    min-height: 80px;
    padding: 0.75rem;
  }
  .editing-info {
    order: 4;
  }
  .editing-label {
    font-size: 0.8125rem;
  }
  .editing-code-display {
    padding: 0.5rem 0.75rem;
  }
  .editing-code-display code {
    font-size: 0.75rem;
  }
  .editing-code-display button {
    width: 1.75rem;
    height: 1.75rem;
  }
  .editing-details {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  .editing-detail-item {
    font-size: 0.8125rem;
  }
  .app-modal-content {
    padding: 1.25rem;
    margin: 1rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  .app-modal-title {
    font-size: 1.125rem;
  }
  .color-palette {
    gap: 0.375rem;
  }
  .color-swatch,
  .recolor-swatch {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 480px) {
  .icon-library-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
  }
  .icon-preview {
    padding: 0.375rem;
  }
  .icon-name {
    font-size: 0.625rem;
    padding: 0.25rem;
  }
  .page-header {
    margin-bottom: 1rem;
  }
  .page-title {
    font-size: 1.25rem;
  }
  .page-header-right {
    gap: 0.375rem;
  }
  .size-toggle-group {
    padding: 0.125rem;
  }
  .size-toggle {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  .btn-cdn-script {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
  .editing-header {
    padding: 0.5rem 0.75rem;
  }
  .editing-title {
    font-size: 0.9375rem;
  }
  .editing-content {
    padding: 0.75rem;
  }
  .editing-preview {
    padding: 1rem;
    min-height: 160px;
  }
  .editing-preview img {
    max-width: 120px;
    max-height: 120px;
  }
  .editing-tools {
    grid-template-columns: 1fr;
  }
  .btn-edit-tool {
    padding: 0.5rem 0.625rem;
    font-size: 0.75rem;
  }
  .refinement-textarea {
    min-height: 60px;
    font-size: 0.8125rem;
  }
  .btn-refine {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
  .empty-state {
    padding: 2rem 1rem;
  }
  .empty-state svg {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }
  .empty-state h3 {
    font-size: 1.25rem;
  }
  .empty-state p {
    font-size: 0.875rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .icon-library-grid {
    gap: 0.5rem;
  }
  .icon-card {
    min-height: 100px;
  }
  .icon-card:hover {
    transform: none;
  }
  .icon-card:active {
    transform: scale(0.98);
  }
  .btn-edit-tool {
    min-height: 44px;
  }
  .editing-code-display button {
    width: 2.5rem;
    height: 2.5rem;
  }
  .btn-library-action {
    width: 2rem;
    height: 2rem;
  }
}
[data-tooltip] {
  position: relative;
}
[data-tooltip]::before, [data-tooltip]::after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.15s ease;
  z-index: 99999;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.5rem 0.75rem;
  background-color: #2f2f2f;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 0.375rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
[data-tooltip]::before {
  content: "";
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #2f2f2f;
}
[data-tooltip]:hover::before, [data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}
[data-tooltip]:hover::after {
  transform: translateX(-50%) translateY(0);
}

.btn-disabled-upgrade {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-disabled-upgrade:hover {
  background-color: #f5f5f5 !important;
  border-color: #e0e0e0 !important;
  transform: none !important;
}

.btn-refine.btn-disabled-upgrade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-refine.btn-disabled-upgrade:hover {
  background-color: #2f2f2f !important;
}

.verification-banner {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .verification-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.verification-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.verification-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.verification-banner-icon svg {
  color: white;
}

.verification-banner-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.25rem;
}
.verification-banner-text p {
  font-size: 0.875rem;
  color: #a16207;
  margin: 0;
}
.verification-banner-text p strong {
  color: #92400e;
}

.verification-banner-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .verification-banner-form {
    align-items: flex-end;
  }
}

.verification-input-group {
  display: flex;
  gap: 0.5rem;
}
.verification-input-group .form-input {
  width: 140px;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.25rem;
  font-weight: 600;
}
.verification-input-group .btn-primary {
  padding: 0.625rem 1.25rem;
  background-color: #f59e0b;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.15s ease;
}
.verification-input-group .btn-primary:hover {
  background-color: #d97706;
}
.verification-input-group .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-link {
  background: none;
  border: none;
  color: #a16207;
  font-size: 0.8125rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.btn-link:hover {
  color: #92400e;
}

.verification-message {
  font-size: 0.8125rem;
  margin: 0;
}
.verification-message.success {
  color: #166534;
}
.verification-message.error {
  color: #dc2626;
}
.verification-message.hidden {
  display: none;
}

.blog-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  pointer-events: none;
  overflow: hidden;
  z-index: -999;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.blog-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(110, 110, 110, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(110, 110, 110, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 120% 70% at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 120% 70% at 50% 0%, black 20%, transparent 70%);
}

.blog-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 47, 47, 0.06) 0%, transparent 70%);
  filter: blur(60px);
}

.blog-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 1.5rem 4rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem 0 1rem;
}
.blog-header h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.blog-header-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2f2f2f;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.blog-subtitle {
  font-size: 1.125rem;
  color: #6e6e6e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.blog-category-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 2rem;
  color: #6e6e6e;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-category-btn:hover {
  color: #2f2f2f;
  border-color: rgba(47, 47, 47, 0.3);
}
.blog-category-btn.active {
  background: #2f2f2f;
  border-color: #2f2f2f;
  color: #ffffff;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(47, 47, 47, 0.3);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image-link {
  display: block;
  text-decoration: none;
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f5f5f5;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
}

.blog-card-category {
  background: rgba(47, 47, 47, 0.1);
  color: #2f2f2f;
  padding: 0.25rem 0.625rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.blog-card-date {
  color: #6e6e6e;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.blog-card-title a {
  color: #2f2f2f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card-title a:hover {
  color: #2f2f2f;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
}

.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  color: #6e6e6e;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pagination-btn:hover:not(:disabled) {
  border-color: rgba(47, 47, 47, 0.3);
  color: #2f2f2f;
}
.pagination-btn.active {
  background: #2f2f2f;
  border-color: #2f2f2f;
  color: #ffffff;
}
.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination-btn svg {
  width: 16px;
  height: 16px;
}

.blog-empty {
  grid-column: 1/-1;
  text-align: center;
  color: #6e6e6e;
  padding: 3rem;
}

.blog-post {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 100px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 4rem;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #6e6e6e;
  text-decoration: none;
  margin-right: auto;
}
.blog-back-link:hover {
  color: #2f2f2f;
}

.blog-post-category {
  background: rgba(47, 47, 47, 0.08);
  color: #2f2f2f;
  padding: 0.25rem 0.625rem;
  border-radius: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.blog-post-date {
  font-size: 0.875rem;
  color: #6e6e6e;
}

.blog-post-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.blog-post-subtitle {
  font-size: 1.125rem;
  color: #6e6e6e;
  line-height: 1.6;
  max-width: 600px;
}

.blog-post-updated {
  font-size: 0.8125rem;
  color: #6e6e6e;
  margin: 0 0 0.75rem 0;
}

.blog-post-hero {
  margin: 2rem 0;
  border-radius: 10px;
  overflow: hidden;
}
.blog-post-hero img {
  width: 100%;
  height: auto;
}

.blog-post-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #2f2f2f;
}
.blog-post-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #2f2f2f;
  scroll-margin-top: 100px;
}
.blog-post-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2f2f2f;
  scroll-margin-top: 100px;
}
.blog-post-content p {
  margin-bottom: 1rem;
}
.blog-post-content a {
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.blog-post-content a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.blog-post-content a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.25em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.blog-post-content ul li,
.blog-post-content ol li {
  margin-bottom: 0.5rem;
}
.blog-post-content blockquote {
  border-left: 3px solid #2f2f2f;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: #6e6e6e;
  font-style: italic;
}
.blog-post-content code {
  background: #f5f5f5;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: "Courier New", monospace;
}
.blog-post-content pre {
  background: #0d0d12;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.blog-post-content pre code {
  background: none;
  padding: 0;
  color: #94a3b8;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  white-space: pre;
  display: block;
}
.blog-post-content pre .hl-kw {
  color: #c084fc;
}
.blog-post-content pre .hl-fn {
  color: #fbbf24;
}
.blog-post-content pre .hl-str {
  color: #10b981;
}
.blog-post-content pre .hl-num {
  color: #f59e0b;
}
.blog-post-content pre .hl-cm {
  color: #475569;
}
.blog-post-content pre .hl-key {
  color: #3b82f6;
}
.blog-post-content pre .hl-op {
  color: #94a3b8;
}
.blog-post-content pre .hl-tag {
  color: #6366f1;
}
.blog-post-content pre .hl-attr {
  color: #fbbf24;
}
.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.blog-post-content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2.5rem 0;
}
.blog-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.blog-post-content table th,
.blog-post-content table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.blog-post-content table th {
  background: #f5f5f5;
  font-weight: 600;
  color: #2f2f2f;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.blog-post-content table td {
  color: #6e6e6e;
}
.blog-post-content table tr:last-child td {
  border-bottom: none;
}
.blog-post-content table tr:nth-child(even) td {
  background: rgba(245, 245, 245, 0.5);
}
.blog-post-content strong {
  color: #2f2f2f;
  font-weight: 600;
}
.blog-post-content em {
  color: #6e6e6e;
}

.blog-post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.blog-post-cta {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}
.blog-post-cta h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-post-cta p {
  color: #6e6e6e;
  margin-bottom: 1.25rem;
}
.blog-post-cta .btn-primary {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  background: #2f2f2f;
  color: #ffffff;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
}
.blog-post-cta .btn-primary:hover {
  opacity: 0.9;
}

.blog-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #2f2f2f;
  margin: 2rem 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
  scroll-margin-top: 100px;
}
.blog-section-title svg {
  width: 24px;
  height: 24px;
  color: #2f2f2f;
  flex-shrink: 0;
}
.blog-section-title:first-child {
  margin-top: 0;
}

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

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

.blog-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: 0.75rem;
}
.blog-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2f2f2f;
}
.blog-feature-icon.blue svg {
  color: #3B82F6;
}
.blog-feature-icon.purple svg {
  color: #7C3AED;
}
.blog-feature-icon.pink svg {
  color: #EC4899;
}
.blog-feature-icon.green svg {
  color: #10B981;
}
.blog-feature-icon.orange svg {
  color: #F59E0B;
}
.blog-feature-icon.cyan svg {
  color: #06B6D4;
}

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

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

.blog-note {
  background-color: rgba(47, 47, 47, 0.05);
  border-left: 4px solid #2f2f2f;
  padding: 0.875rem 1rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}
.blog-note p {
  margin: 0;
  font-size: 0.9375rem;
  color: #2f2f2f;
  line-height: 1.6;
}
.blog-note strong {
  color: #2f2f2f;
}

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

.blog-warning {
  background-color: rgba(245, 158, 11, 0.1);
  border-left-color: #f59e0b;
}

.blog-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.blog-comparison-table th,
.blog-comparison-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.blog-comparison-table th {
  background: #f5f5f5;
  font-weight: 600;
  color: #2f2f2f;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.blog-comparison-table td {
  color: #2f2f2f;
  vertical-align: middle;
}
.blog-comparison-table tr:last-child td {
  border-bottom: none;
}
.blog-comparison-table tbody tr:hover td {
  background: rgba(245, 245, 245, 0.5);
}
.blog-comparison-table .check {
  color: #27ae60;
  font-weight: 600;
}
.blog-comparison-table .cross {
  color: #6e6e6e;
}
.blog-comparison-table .partial {
  color: #F59E0B;
}

.blog-tool-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.blog-tool-card.featured {
  border-color: #2f2f2f;
  background: linear-gradient(to bottom, rgba(47, 47, 47, 0.03), transparent);
}

.blog-tool-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-tool-icon {
  width: 3rem;
  height: 3rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-tool-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2f2f2f;
}
.blog-tool-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.blog-tool-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0;
}

.blog-tool-tagline {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin: 0;
}

.blog-tool-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 1.25rem 0 0.5rem 0;
}
.blog-tool-content h4:first-child {
  margin-top: 0;
}
.blog-tool-content ul {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
}
.blog-tool-content ul li {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
  color: #2f2f2f;
}
.blog-tool-content p {
  font-size: 0.9375rem;
  margin: 0 0 1rem 0;
}

.blog-tool-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  margin-top: 1rem;
}

.blog-tool-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2f2f2f;
  text-decoration: none;
}
.blog-tool-link:hover {
  text-decoration: underline;
}
.blog-tool-link svg {
  width: 14px;
  height: 14px;
}

.blog-tool-pricing {
  font-size: 0.8125rem;
  color: #6e6e6e;
}

.blog-toc {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.blog-toc-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.blog-toc-list {
  margin: 0;
  padding-left: 1.25rem;
}
.blog-toc-list li {
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.blog-toc-list li a {
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.blog-toc-list li a:hover {
  color: #2f2f2f;
  text-decoration: underline;
}

.blog-bar-chart {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.blog-bar-chart-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.blog-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-bar-row:last-child {
  margin-bottom: 0;
}

.blog-bar-label {
  flex: 0 0 140px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2f2f2f;
  text-align: right;
}

.blog-bar-track {
  flex: 1;
  height: 28px;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  min-width: 0;
}

.blog-bar-fill {
  height: 100%;
  border-radius: 6px;
  min-width: 4px;
}
.blog-bar-fill.traditional {
  background: linear-gradient(90deg, #6e6e6e, rgba(110, 110, 110, 0.7));
}
.blog-bar-fill.ai {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.blog-bar-value {
  flex: 0 0 90px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6e6e6e;
}

@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 2rem;
  }
  .blog-subtitle {
    font-size: 1rem;
  }
  .blog-categories {
    gap: 0.375rem;
  }
  .blog-category-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
  }
  .blog-post-title {
    font-size: 1.75rem;
  }
  .blog-feature-grid {
    grid-template-columns: 1fr;
  }
  .blog-comparison-table {
    display: block;
    overflow-x: auto;
  }
  .blog-section-title {
    font-size: 1.25rem;
  }
  .blog-bar-label {
    flex: 0 0 100px;
    font-size: 0.8125rem;
  }
  .blog-bar-value {
    flex: 0 0 70px;
    font-size: 0.75rem;
  }
  .blog-pagination {
    gap: 0.375rem;
  }
  .pagination-btn {
    min-width: 2.25rem;
    height: 2.25rem;
    font-size: 0.8125rem;
  }
}
.pro-landing {
  background-color: #fafafa;
  min-height: 100vh;
}
.pro-landing .nav-link-icons {
  display: none;
}

.pro-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .pro-hero {
    padding: 6rem 1.5rem 3rem;
  }
}

.pro-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pro-hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 40%, transparent 70%);
  filter: blur(80px);
}

.pro-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.pro-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .pro-hero-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 576px) {
  .pro-hero-title {
    font-size: 1.75rem;
  }
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 2rem;
}
.pro-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.pro-value {
  padding: 3rem 2rem 4rem;
}
@media (max-width: 768px) {
  .pro-value {
    padding: 2rem 1.5rem 3rem;
  }
}

.pro-value-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pro-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .pro-value-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.pro-value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.pro-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.pro-value-card p {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}

.pro-value-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2f2f2f;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pro-value-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pro-tools {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .pro-tools {
    padding: 3rem 1.5rem;
  }
}

.pro-tools-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pro-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .pro-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .pro-tools-grid {
    grid-template-columns: 1fr;
  }
}

.pro-tool-card {
  position: relative;
  padding: 2rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.pro-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.pro-tool-card[data-color=blue]:hover {
  border-color: #3b82f6;
}
.pro-tool-card[data-color=purple]:hover {
  border-color: #8b5cf6;
}
.pro-tool-card[data-color=orange]:hover {
  border-color: #f97316;
}
.pro-tool-card[data-color=teal]:hover {
  border-color: #14b8a6;
}
.pro-tool-card[data-color=rose]:hover {
  border-color: #f43f5e;
}
.pro-tool-card.pro-only {
  border-color: rgba(59, 130, 246, 0.15);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, #fafafa 100%);
}
.pro-tool-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.pro-tool-card > p {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.pro-tool-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.6rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.pro-tool-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pro-tool-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.pro-tool-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.pro-tool-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.pro-tool-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.pro-tool-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.pro-tool-icon.rose {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}

.pro-tool-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pro-tool-features li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.8125rem;
  color: #6e6e6e;
  line-height: 1.4;
}
.pro-tool-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-size: 0.75rem;
}

.pro-comparison {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .pro-comparison {
    padding: 3rem 1.5rem;
  }
}

.pro-comparison-container {
  max-width: 700px;
  margin: 0 auto;
}

.pro-compare-table {
  margin-top: 3rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.pro-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e0e0e0;
}
.pro-compare-row:last-child {
  border-bottom: none;
}
.pro-compare-row > div {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .pro-compare-row > div {
    padding: 0.75rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.pro-compare-row svg {
  width: 18px;
  height: 18px;
}

.pro-compare-header {
  background: #f5f5f5;
}
.pro-compare-header > div {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6e6e6e;
}

.pro-compare-feature {
  color: #2f2f2f;
  font-weight: 500;
}

.pro-compare-mini {
  color: #6e6e6e;
  justify-content: center;
  text-align: center;
}
.pro-compare-mini svg {
  color: #27ae60;
}

.pro-compare-pro {
  color: #2f2f2f;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  background: rgba(59, 130, 246, 0.03);
}
.pro-compare-pro svg {
  color: #3b82f6;
}

.pro-compare-highlight .pro-compare-mini svg {
  color: #e0e0e0;
}

.pro-compare-footer {
  background: #f5f5f5;
}
.pro-compare-footer .pro-compare-pro {
  color: #3b82f6;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.06);
}

.pro-pricing {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .pro-pricing {
    padding: 3rem 1.5rem;
  }
}

.pro-pricing-container {
  max-width: 440px;
  margin: 0 auto;
}

.pro-pricing-card {
  position: relative;
  padding: 2.5rem;
  background: #ffffff;
  border: 2px solid #2f2f2f;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0 0 1px #2f2f2f, 0 16px 48px rgba(0, 0, 0, 0.1);
}

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

.pro-pricing-header {
  margin-bottom: 1.5rem;
}
.pro-pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2f2f2f;
  margin-bottom: 0.25rem;
}
.pro-pricing-header p {
  font-size: 0.9375rem;
  color: #6e6e6e;
  margin: 0;
}

.pro-pricing-price {
  margin-bottom: 0.25rem;
}

.pro-pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #2f2f2f;
  letter-spacing: -0.02em;
}

.pro-pricing-period {
  font-size: 1.125rem;
  color: #6e6e6e;
}

.pro-pricing-billing {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin-bottom: 2rem;
}

.pro-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}
.pro-pricing-features li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.5rem;
  font-size: 0.9375rem;
  color: #2f2f2f;
  border-top: 1px solid #e0e0e0;
}
.pro-pricing-features li:first-child {
  border-top: none;
}
.pro-pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 600;
}

.pro-pricing-btn {
  width: 100%;
  margin-bottom: 1rem;
}

.pro-pricing-note {
  font-size: 0.8125rem;
  color: #6e6e6e;
  margin: 0;
}

.pro-faq {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .pro-faq {
    padding: 3rem 1.5rem;
  }
}

.pro-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.get-pro-landing {
  background-color: #fafafa;
  min-height: 100vh;
}
.get-pro-landing .nav-link-icons {
  display: none;
}

.gp-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .gp-hero {
    padding: 6rem 1.5rem 3rem;
  }
}

.gp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gp-hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 40%, transparent 70%);
  filter: blur(80px);
}

.gp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.gp-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .gp-hero-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 576px) {
  .gp-hero-title {
    font-size: 1.75rem;
  }
}

.gp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 2rem;
}
.gp-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.gp-value {
  padding: 3rem 2rem 4rem;
}
@media (max-width: 768px) {
  .gp-value {
    padding: 2rem 1.5rem 3rem;
  }
}

.gp-value-container {
  max-width: 1100px;
  margin: 0 auto;
}

.gp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .gp-value-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.gp-value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.gp-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.gp-value-card p {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}

.gp-value-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2f2f2f;
  letter-spacing: -0.02em;
  line-height: 1;
}

.gp-value-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.gp-value-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (max-width: 576px) {
  .gp-value-bonus {
    gap: 0.75rem;
  }
}

.gp-bonus-badge-compact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
}
.gp-bonus-badge-compact.featured {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px #22c55e, 0 4px 12px rgba(34, 197, 94, 0.08);
}
@media (max-width: 576px) {
  .gp-bonus-badge-compact {
    padding: 0.5rem 1rem;
  }
}

.gp-bonus-badge-amount {
  font-size: 1.125rem;
  font-weight: 800;
  color: #22c55e;
  letter-spacing: -0.02em;
}

.gp-bonus-badge-label {
  font-size: 0.8125rem;
  color: #6e6e6e;
}

.gp-value-bonus-note {
  font-size: 0.75rem;
  color: #6e6e6e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .gp-value-bonus-note {
    display: none;
  }
}

.gp-tools {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .gp-tools {
    padding: 3rem 1.5rem;
  }
}

.gp-tools-container {
  max-width: 1100px;
  margin: 0 auto;
}

.gp-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .gp-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gp-tools-grid {
    grid-template-columns: 1fr;
  }
}

.gp-tool-card {
  position: relative;
  padding: 2rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.gp-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.gp-tool-card[data-color=blue]:hover {
  border-color: #3b82f6;
}
.gp-tool-card[data-color=purple]:hover {
  border-color: #8b5cf6;
}
.gp-tool-card[data-color=orange]:hover {
  border-color: #f97316;
}
.gp-tool-card[data-color=teal]:hover {
  border-color: #14b8a6;
}
.gp-tool-card[data-color=rose]:hover {
  border-color: #f43f5e;
}
.gp-tool-card.gp-pro-only {
  border-color: rgba(59, 130, 246, 0.15);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, #fafafa 100%);
}
.gp-tool-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.gp-tool-card > p {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.gp-tool-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.6rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.gp-tool-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.gp-tool-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.gp-tool-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.gp-tool-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.gp-tool-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.gp-tool-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.gp-tool-icon.rose {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}

.gp-tool-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gp-tool-features li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.8125rem;
  color: #6e6e6e;
  line-height: 1.4;
}
.gp-tool-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-size: 0.75rem;
}

.gp-workflow {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .gp-workflow {
    padding: 3rem 1.5rem;
  }
}

.gp-workflow-container {
  max-width: 1100px;
  margin: 0 auto;
}

.gp-workflow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .gp-workflow-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}

.gp-workflow-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}
@media (max-width: 768px) {
  .gp-workflow-step {
    max-width: 320px;
    padding: 0;
  }
}

.gp-workflow-preview {
  margin-bottom: 1.25rem;
}

.gp-wf-preview-area {
  position: relative;
  aspect-ratio: 1;
}

.gp-workflow-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.25rem;
}
.gp-workflow-info p {
  font-size: 0.8125rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}

.gp-workflow-tool {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b5cf6;
  margin-bottom: 0.25rem;
}

.gp-workflow-connector {
  display: flex;
  align-items: center;
  padding-top: 10rem;
  flex-shrink: 0;
  gap: 6px;
  padding-left: 4px;
  padding-right: 4px;
}
.gp-workflow-connector .wf-flow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e8e8e8;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gp-workflow-connector .wf-flow-arrow {
  width: 10px;
  height: 14px;
  color: #e8e8e8;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gp-workflow-connector.wf-active .wf-flow-dot {
  background: #8b5cf6;
  animation: wfFlowPulse 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.gp-workflow-connector.wf-active .wf-flow-dot:nth-child(2) {
  animation-delay: 0.25s;
}
.gp-workflow-connector.wf-active .wf-flow-dot:nth-child(3) {
  animation-delay: 0.5s;
}
.gp-workflow-connector.wf-active .wf-flow-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #8b5cf6;
}
@media (max-width: 768px) {
  .gp-workflow-connector {
    padding-top: 0;
    flex-direction: column;
    gap: 5px;
    padding-left: 0;
    padding-right: 0;
    margin: 0.5rem 0;
  }
  .gp-workflow-connector .wf-flow-arrow {
    transform: rotate(90deg) translateX(-4px);
  }
  .gp-workflow-connector.wf-active .wf-flow-arrow {
    transform: rotate(90deg) translateX(0);
  }
}

@keyframes wfFlowPulse {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
.gp-workflow-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.gp-wf-input-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  height: 2.25rem;
  overflow: hidden;
}
.gp-wf-input-bar > svg {
  width: 14px;
  height: 14px;
  color: #6e6e6e;
  flex-shrink: 0;
}

.gp-wf-typed {
  font-size: 0.75rem;
  color: #2f2f2f;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
}

.gp-wf-cursor {
  display: none;
  width: 1px;
  height: 14px;
  background: #2f2f2f;
  flex-shrink: 0;
  animation: wfBlink 0.7s step-end infinite;
}

@keyframes wfBlink {
  50% {
    opacity: 0;
  }
}
.gp-wf-loader {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  z-index: 2;
}
.gp-wf-loader.wf-active {
  display: flex;
}
.gp-wf-loader span {
  font-size: 0.75rem;
  color: #6e6e6e;
  font-weight: 500;
}

.gp-wf-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid #e0e0e0;
  border-top-color: #8b5cf6;
  border-radius: 50%;
  animation: wfSpin 0.7s linear infinite;
}

@keyframes wfSpin {
  to {
    transform: rotate(360deg);
  }
}
.gp-wf-result {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gp-wf-result.wf-active {
  opacity: 1;
  transform: translateY(0);
}

.gp-wf-brand-card {
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.gp-wf-brand-visual {
  position: relative;
  height: 80px;
  overflow: hidden;
}
.gp-wf-brand-visual > svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gp-wf-brand-logo {
  position: absolute;
  bottom: -10px;
  left: 0.75rem;
  z-index: 1;
}
.gp-wf-brand-logo svg {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.gp-wf-brand-body {
  padding: 1rem 0.75rem 0.75rem;
  flex: 1;
}

.gp-wf-brand-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.125rem;
}

.gp-wf-brand-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2f2f2f;
}

.gp-wf-brand-badge {
  padding: 0.1rem 0.4rem;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
}

.gp-wf-brand-domain {
  display: block;
  font-size: 0.6875rem;
  color: #6e6e6e;
  margin-bottom: 0.625rem;
}

.gp-wf-brand-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.gp-wf-brand-section {
  min-width: 0;
}

.gp-wf-brand-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6e6e6e;
  margin-bottom: 0.25rem;
}

.gp-wf-brand-colors {
  display: flex;
  gap: 0.25rem;
}

.gp-wf-brand-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.gp-wf-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.gp-wf-brand-tag {
  padding: 0.1rem 0.35rem;
  background: #f5f5f5;
  border-radius: 3px;
  font-size: 0.5625rem;
  color: #6e6e6e;
}

.gp-wf-brand-aesthetic {
  font-size: 0.5625rem;
  color: #6e6e6e;
  line-height: 1.4;
}

.gp-wf-icon-card {
  width: 100%;
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.gp-wf-icon-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gp-wf-social-card {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}
.gp-wf-social-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gp-comparison {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .gp-comparison {
    padding: 3rem 1.5rem;
  }
}

.gp-comparison-container {
  max-width: 700px;
  margin: 0 auto;
}

.gp-compare-table {
  margin-top: 3rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.gp-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e0e0e0;
}
.gp-compare-row:last-child {
  border-bottom: none;
}
.gp-compare-row > div {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .gp-compare-row > div {
    padding: 0.75rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.gp-compare-row svg {
  width: 18px;
  height: 18px;
}

.gp-compare-header {
  background: #f5f5f5;
}
.gp-compare-header > div {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6e6e6e;
}

.gp-compare-feature {
  color: #2f2f2f;
  font-weight: 500;
}

.gp-compare-free {
  color: #6e6e6e;
  justify-content: center;
  text-align: center;
}
.gp-compare-free svg {
  color: #27ae60;
}

.gp-compare-pro {
  color: #2f2f2f;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  background: rgba(59, 130, 246, 0.03);
}
.gp-compare-pro svg {
  color: #3b82f6;
}

.gp-compare-highlight .gp-compare-free svg {
  color: #e0e0e0;
}

.gp-compare-footer {
  background: #f5f5f5;
}
.gp-compare-footer .gp-compare-pro {
  color: #3b82f6;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.06);
}

.gp-pricing {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .gp-pricing {
    padding: 3rem 1.5rem;
  }
}

.gp-pricing-container {
  max-width: 1100px;
  margin: 0 auto;
}

.gp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .gp-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.gp-pricing-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.gp-pricing-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gp-pricing-featured {
  border: 2px solid #2f2f2f;
  box-shadow: 0 0 0 1px #2f2f2f, 0 16px 48px rgba(0, 0, 0, 0.1);
}

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

.gp-pricing-header {
  margin-bottom: 1.5rem;
}
.gp-pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2f2f2f;
  margin-bottom: 0.25rem;
}
.gp-pricing-header p {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin: 0;
}

.gp-pricing-price {
  margin-bottom: 0.25rem;
}

.gp-pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #2f2f2f;
  letter-spacing: -0.02em;
}

.gp-pricing-period {
  font-size: 1.125rem;
  color: #6e6e6e;
}

.gp-pricing-billing {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin-bottom: 2rem;
}

.gp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}
.gp-pricing-features li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.5rem;
  font-size: 0.9375rem;
  color: #2f2f2f;
  border-top: 1px solid #e0e0e0;
}
.gp-pricing-features li:first-child {
  border-top: none;
}
.gp-pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 600;
}

.gp-token-breakdown {
  font-size: 0.8125rem !important;
  color: #6e6e6e !important;
  border-top: none !important;
  padding-top: 0 !important;
  padding-left: 1.5rem;
  margin-top: -0.25rem;
}
.gp-token-breakdown::before {
  content: "" !important;
}

.gp-bonus-highlight {
  color: #22c55e !important;
  font-weight: 600;
}
.gp-bonus-highlight::before {
  color: #22c55e !important;
}

.gp-pricing-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 0;
}
.gp-pricing-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.gp-faq {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .gp-faq {
    padding: 3rem 1.5rem;
  }
}

.gp-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.gp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gp-sticky-bar.visible {
  transform: translateY(0);
}

.gp-sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .gp-sticky-inner {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }
}

.gp-sticky-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.gp-sticky-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: #2f2f2f;
  white-space: nowrap;
}
.gp-sticky-text span {
  font-size: 0.8125rem;
  color: #6e6e6e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 576px) {
  .gp-sticky-text span {
    display: none;
  }
}

.gp-sticky-btn {
  flex-shrink: 0;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-landing {
  background-color: #fafafa;
  min-height: 100vh;
}
.plan-landing .nav-link-icons {
  display: none;
}

.plan-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .plan-hero {
    padding: 6rem 1.5rem 3rem;
  }
}

.plan-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.plan-hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 40%, transparent 70%);
  filter: blur(80px);
}

.plan-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.plan-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .plan-hero-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 576px) {
  .plan-hero-title {
    font-size: 1.75rem;
  }
}

.plan-landing .plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
}
.plan-landing .plan-badge.green {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
}
.plan-landing .plan-badge.purple {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #7C3AED;
}

.plan-landing .plan-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.plan-landing .plan-badge-dot.green {
  background: #10B981;
}
.plan-landing .plan-badge-dot.purple {
  background: #8b5cf6;
}

.plan-value {
  padding: 3rem 2rem 4rem;
}
@media (max-width: 768px) {
  .plan-value {
    padding: 2rem 1.5rem 3rem;
  }
}

.plan-value-container {
  max-width: 1100px;
  margin: 0 auto;
}

.plan-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.plan-value-grid.plan-value-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .plan-value-grid.plan-value-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .plan-value-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.plan-value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.plan-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.plan-value-card p {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}

.plan-value-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2f2f2f;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan-value-number.plan-value-number-sm {
  font-size: 2rem;
}

.plan-value-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.plan-features {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .plan-features {
    padding: 3rem 1.5rem;
  }
}

.plan-features-container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.plan-feature-card {
  position: relative;
  padding: 2rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.plan-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.plan-feature-card[data-color=blue]:hover {
  border-color: #3b82f6;
}
.plan-feature-card[data-color=purple]:hover {
  border-color: #8b5cf6;
}
.plan-feature-card[data-color=orange]:hover {
  border-color: #f97316;
}
.plan-feature-card[data-color=teal]:hover {
  border-color: #14b8a6;
}
.plan-feature-card[data-color=pink]:hover {
  border-color: #EC4899;
}
.plan-feature-card[data-color=cyan]:hover {
  border-color: #06B6D4;
}
.plan-feature-card.max-exclusive {
  border-color: rgba(139, 92, 246, 0.15);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, #fafafa 100%);
}
.plan-feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.plan-feature-card p {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}

.plan-feature-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.6rem;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.plan-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.plan-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.plan-feature-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.plan-feature-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.plan-feature-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.plan-feature-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.plan-feature-icon.pink {
  background: rgba(236, 72, 153, 0.1);
  color: #EC4899;
}
.plan-feature-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}

.plan-upgrade-nudge {
  padding: 3rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .plan-upgrade-nudge {
    padding: 2rem 1.5rem;
  }
}

.plan-upgrade-container {
  max-width: 700px;
  margin: 0 auto;
}

.plan-upgrade-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  text-align: center;
}

.plan-upgrade-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.plan-upgrade-text p {
  font-size: 0.9375rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.plan-upgrade-text .section-eyebrow {
  margin-bottom: 1rem;
}

.plan-comparison {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .plan-comparison {
    padding: 3rem 1.5rem;
  }
}

.plan-comparison-container {
  max-width: 700px;
  margin: 0 auto;
}

.plan-compare-table {
  margin-top: 3rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.plan-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e0e0e0;
}
.plan-compare-row:last-child {
  border-bottom: none;
}
.plan-compare-row > div {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .plan-compare-row > div {
    padding: 0.75rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.plan-compare-row svg {
  width: 18px;
  height: 18px;
}

.plan-compare-header {
  background: #f5f5f5;
}
.plan-compare-header > div {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6e6e6e;
}

.plan-compare-feature {
  color: #2f2f2f;
  font-weight: 500;
}

.plan-compare-left {
  color: #6e6e6e;
  justify-content: center;
  text-align: center;
}
.plan-compare-left svg {
  color: #27ae60;
}

.plan-compare-right {
  color: #2f2f2f;
  font-weight: 600;
  justify-content: center;
  text-align: center;
}
.plan-compare-right svg {
  color: #3b82f6;
}

.max-comparison .plan-compare-right {
  background: rgba(139, 92, 246, 0.03);
}
.max-comparison .plan-compare-right svg {
  color: #8b5cf6;
}

.plan-compare-highlight .plan-compare-left svg {
  color: #e0e0e0;
}

.plan-compare-footer {
  background: #f5f5f5;
}
.plan-compare-footer .plan-compare-right {
  font-weight: 700;
}
.max-comparison .plan-compare-footer .plan-compare-right {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.06);
}

.max-comparison .plan-compare-footer .plan-compare-right {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.06);
}

.plan-pricing {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .plan-pricing {
    padding: 3rem 1.5rem;
  }
}

.plan-pricing-container {
  max-width: 440px;
  margin: 0 auto;
}

.plan-pricing-card {
  position: relative;
  padding: 2.5rem;
  background: #ffffff;
  border: 2px solid #2f2f2f;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0 0 1px #2f2f2f, 0 16px 48px rgba(0, 0, 0, 0.1);
}
.plan-pricing-card.plan-pricing-accent-purple {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 1px #8b5cf6, 0 16px 48px rgba(0, 0, 0, 0.1);
}
.plan-pricing-card.plan-pricing-accent-purple .plan-pricing-badge {
  background: #8b5cf6;
}

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

.plan-pricing-header {
  margin-bottom: 1.5rem;
}
.plan-pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2f2f2f;
  margin-bottom: 0.25rem;
}
.plan-pricing-header p {
  font-size: 0.9375rem;
  color: #6e6e6e;
  margin: 0;
}

.plan-pricing-price {
  margin-bottom: 0.25rem;
}

.plan-pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #2f2f2f;
  letter-spacing: -0.02em;
}

.plan-pricing-period {
  font-size: 1.125rem;
  color: #6e6e6e;
}

.plan-pricing-billing {
  font-size: 0.875rem;
  color: #6e6e6e;
  margin-bottom: 2rem;
}

.plan-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}
.plan-pricing-features li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.5rem;
  font-size: 0.9375rem;
  color: #2f2f2f;
  border-top: 1px solid #e0e0e0;
}
.plan-pricing-features li:first-child {
  border-top: none;
}
.plan-pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 600;
}

.plan-pricing-btn {
  width: 100%;
  margin-bottom: 1rem;
}

.plan-pricing-note {
  font-size: 0.8125rem;
  color: #6e6e6e;
  margin: 0;
}

.plan-faq {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .plan-faq {
    padding: 3rem 1.5rem;
  }
}

.plan-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.plan-business-lite .plan-badge {
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  color: #0d9488;
}
.plan-business-lite .plan-badge-dot {
  background: #14b8a6;
}
.plan-business-lite .plan-hero-glow {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, rgba(6, 182, 212, 0.03) 40%, transparent 70%);
}
.plan-business-lite .plan-pricing-card {
  border-color: #14b8a6;
  box-shadow: 0 0 0 1px #14b8a6, 0 16px 48px rgba(0, 0, 0, 0.1);
}
.plan-business-lite .plan-pricing-card .plan-pricing-badge {
  background: #14b8a6;
}
.plan-business-lite .plan-feature-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.plan-business-lite .faq-icon.teal {
  background: rgba(20, 184, 166, 0.08);
  color: #14b8a6;
}

.plan-business-plus .plan-badge {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #4f46e5;
}
.plan-business-plus .plan-badge-dot {
  background: #6366f1;
}
.plan-business-plus .plan-hero-glow {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.03) 40%, transparent 70%);
}
.plan-business-plus .plan-pricing-card {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px #6366f1, 0 16px 48px rgba(0, 0, 0, 0.1);
}
.plan-business-plus .plan-pricing-card .plan-pricing-badge {
  background: #6366f1;
}
.plan-business-plus .plan-feature-icon.indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}
.plan-business-plus .faq-icon.indigo {
  background: rgba(99, 102, 241, 0.08);
  color: #6366f1;
}

.biz-services {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .biz-services {
    padding: 3rem 1.5rem;
  }
}

.biz-services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.biz-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .biz-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .biz-services-grid {
    grid-template-columns: 1fr;
  }
}

.biz-service-card {
  padding: 2rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.biz-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.biz-service-card[data-color=orange]:hover {
  border-color: #f97316;
}
.biz-service-card[data-color=blue]:hover {
  border-color: #3b82f6;
}
.biz-service-card[data-color=teal]:hover {
  border-color: #14b8a6;
}
.biz-service-card[data-color=purple]:hover {
  border-color: #8b5cf6;
}
.biz-service-card[data-color=rose]:hover {
  border-color: #f43f5e;
}
.biz-service-card[data-color=cyan]:hover {
  border-color: #06B6D4;
}
.biz-service-card[data-color=green]:hover {
  border-color: #22c55e;
}
.biz-service-card[data-color=amber]:hover {
  border-color: #F59E0B;
}
.biz-service-card[data-color=indigo]:hover {
  border-color: #6366f1;
}
.biz-service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.biz-service-card > p {
  font-size: 0.875rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.biz-service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.biz-service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.biz-service-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.biz-service-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.biz-service-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.biz-service-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.biz-service-icon.rose {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}
.biz-service-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06B6D4;
}
.biz-service-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.biz-service-icon.amber {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.biz-service-icon.indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.biz-service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.biz-service-bullets li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1.25rem;
  font-size: 0.8125rem;
  color: #6e6e6e;
  line-height: 1.5;
}
.biz-service-bullets li::before {
  content: "~";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 600;
}

.biz-process {
  padding: 5rem 2rem;
  background: #fafafa;
}
@media (max-width: 768px) {
  .biz-process {
    padding: 3rem 1.5rem;
  }
}

.biz-process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.biz-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .biz-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .biz-process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3rem auto 0;
  }
}

.biz-process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.biz-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.biz-process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.biz-process-step p {
  font-size: 0.8125rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}

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

.biz-why {
  padding: 5rem 2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .biz-why {
    padding: 3rem 1.5rem;
  }
}

.biz-why-container {
  max-width: 1100px;
  margin: 0 auto;
}

.biz-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .biz-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .biz-why-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3rem auto 0;
  }
}

.biz-why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.biz-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.biz-why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.5rem;
}
.biz-why-card p {
  font-size: 0.8125rem;
  color: #6e6e6e;
  line-height: 1.5;
  margin: 0;
}

.biz-why-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.biz-why-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.biz-why-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.biz-why-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.biz-why-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.biz-why-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.biz-why-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}
.biz-why-icon.indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.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-public.css.map */
