@charset "UTF-8";

@font-face {
  font-family: "CameraPlainVariable";
  src: url("https://cdn.gpteng.co/mcp-widgets/v1/fonts/CameraPlainVariable.woff2")
    format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Background and surfaces */
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;

  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;

  --popover: 0 0% 100%;
  --popover-foreground: 222 47% 11%;

  /* Primary - active blue */
  --primary: 225 88% 53%;
  --primary-foreground: 0 0% 100%;

  /* Secondary - teal */
  --secondary: 173 58% 39%;
  --secondary-foreground: 0 0% 100%;

  /* Muted */
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;

  /* Accent */
  --accent: 262 83% 58%;
  --accent-foreground: 0 0% 100%;

  /* Destructive */
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;

  /* Border and input */
  --border: 214 32% 91%;
  --input: 214 32% 91%;
  --ring: 225 88% 53%;

  --radius: 0.75rem;

  /* Custom tokens */
  --hero-gradient: linear-gradient(
    135deg,
    hsl(222 47% 11%) 0%,
    hsl(222 47% 18%) 50%,
    hsl(240 20% 20%) 100%
  );
  --card-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --card-shadow-hover:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Sidebar */
  --sidebar-background: 0 0% 98%;
  --sidebar-foreground: 240 5% 26%;
  --sidebar-primary: 225 88% 53%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 210 40% 96%;
  --sidebar-accent-foreground: 222 47% 11%;
  --sidebar-border: 214 32% 91%;
  --sidebar-ring: 225 88% 53%;
}

.dark {
  --background: 222 47% 6%;
  --foreground: 210 40% 98%;

  --card: 222 47% 11%;
  --card-foreground: 210 40% 98%;

  --popover: 222 47% 11%;
  --popover-foreground: 210 40% 98%;

  --primary: 225 88% 53%;
  --primary-foreground: 0 0% 100%;

  --secondary: 173 58% 39%;
  --secondary-foreground: 0 0% 100%;

  --muted: 222 47% 18%;
  --muted-foreground: 215 20% 72%;

  --accent: 262 83% 58%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 62% 30%;
  --destructive-foreground: 210 40% 98%;

  --border: 222 47% 24%;
  --input: 222 47% 22%;
  --ring: 225 88% 53%;

  --hero-gradient: linear-gradient(
    135deg,
    hsl(222 47% 5%) 0%,
    hsl(222 47% 9%) 50%,
    hsl(240 20% 14%) 100%
  );

  --sidebar-background: 222 47% 10%;
  --sidebar-foreground: 210 40% 92%;
  --sidebar-primary: 225 88% 53%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 222 47% 18%;
  --sidebar-accent-foreground: 210 40% 98%;
  --sidebar-border: 222 47% 24%;
  --sidebar-ring: 225 88% 53%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "CameraPlainVariable", sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* SaaS panel responsive sidebar */
body.saas-panel .aside {
  transition: transform 0.25s ease;
}
body.saas-panel .saas-aside-backdrop {
  display: none;
}
body.saas-panel .topnavbar .saas-sidebar-toggle {
  display: none;
}
@media (max-width: 991px) {
  body.saas-panel .aside {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 240px;
    z-index: 1050;
    transform: translateX(-100%);
    background: hsl(var(--sidebar-background));
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
  }
  body.saas-panel.saas-aside-open .aside,
  body.saas-panel.aside-toggled .aside {
    transform: translateX(0);
    display: block !important;
  }
  body.saas-panel .saas-aside-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1040;
  }
  body.saas-panel.saas-aside-open .saas-aside-backdrop,
  body.saas-panel.aside-toggled .saas-aside-backdrop {
    display: block;
  }
  body.saas-panel .content-wrapper {
    margin-left: 0 !important;
  }
  body.saas-panel .navbar-toggle.saas-sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: transparent;
    color: hsl(var(--foreground));
  }
  body.saas-panel .topnavbar .navbar-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

.font-display {
  font-family: "CameraPlainVariable", sans-serif;
}

.bg-background {
  background-color: hsl(var(--background));
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-card-80 {
  background-color: hsl(var(--card) / 0.8);
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.bg-muted-30 {
  background-color: hsl(var(--muted) / 0.3);
}

.bg-muted-50 {
  background-color: hsl(var(--muted) / 0.5);
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-primary-10 {
  background-color: hsl(var(--primary) / 0.1);
}

.bg-primary-20 {
  background-color: hsl(var(--primary) / 0.2);
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-secondary-10 {
  background-color: hsl(var(--secondary) / 0.1);
}

.bg-secondary-20 {
  background-color: hsl(var(--secondary) / 0.2);
}

.bg-accent-10 {
  background-color: hsl(var(--accent) / 0.1);
}

.bg-accent-20 {
  background-color: hsl(var(--accent) / 0.2);
}

.module-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.module-action {
  margin-top: 4px;
  display: flex;
  justify-content: flex-end;
}

.module-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}

.module-menu-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: hsl(var(--primary));
  background: transparent;
  border: 0;
  padding: 0;
}

.module-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.module-menu-modal.hidden {
  display: none;
}

.module-menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.module-menu-modal__panel {
  position: relative;
  max-width: 520px;
  margin: 8vh auto;
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
  padding: 18px;
  z-index: 1;
}

.module-menu-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  padding-bottom: 12px;
}

.module-menu-modal__title {
  font-weight: 700;
  color: #e2e8f0;
}

.module-menu-modal__subtitle {
  font-size: 12px;
  color: #94a3b8;
}

.module-menu-modal__close {
  background: transparent;
  border: 0;
  font-size: 22px;
  line-height: 1;
  color: #94a3b8;
}

.module-menu-modal__body {
  padding-top: 12px;
  max-height: 320px;
  overflow: auto;
  background: #0f172a;
  border-radius: 12px;
  padding: 12px;
}

.module-menu-modal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 12px;
  margin-top: 12px;
}

.module-menu-compact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 10px;
}

.module-menu-count {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 11px;
}

.module-menu-modal__body li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 12px;
  color: #cbd5f5;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
}

.module-menu-modal__body li span small {
  display: block;
  font-size: 11px;
  color: #94a3b8;
}

.module-limit {
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.6);
  font-size: 11px;
}

.module-menu-modal__body li:last-child {
  border-bottom: 0;
}

.module-limit {
  font-weight: 700;
  color: #e2e8f0;
}

.pricing-module-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  text-align: left;
  justify-items: start;
}

.pricing-module-row > span:nth-child(2) {
  min-width: 0;
  text-align: left;
}

.pricing-module-link {
  border: 1px solid hsl(var(--primary) / 0.35);
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary) / 0.2);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
}

.module-card__header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.module-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
}

.module-detail-link {
  color: inherit;
  text-decoration: none;
}

.module-detail-link:hover {
  color: hsl(var(--primary));
}

.module-actions {
  margin-top: 6px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-ghost:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-sm {
  font-size: 12px;
  padding: 6px 12px;
}

.module-detail-hero {
  padding: 140px 0 80px;
  background: var(--hero-gradient);
}

.module-detail-header {
  display: grid;
  gap: 32px;
}

.module-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.module-detail-price {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.module-detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 600;
}

.module-gallery {
  display: grid;
  gap: 16px;
}

.module-gallery img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.module-info-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}

.module-menu-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.module-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed hsl(var(--border));
  font-size: 13px;
  color: hsl(var(--foreground));
}

.module-menu-item small {
  color: hsl(var(--muted-foreground));
}

.module-related-grid {
  display: grid;
  gap: 20px;
}

.module-title {
  font-size: 18px;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.module-key {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--muted-foreground));
}

.module-desc {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.6;
}

.module-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.module-chip--success {
  background: hsl(140 70% 92%);
  color: hsl(142 76% 24%);
}

.saas-showcase-shell {
  position: relative;
  border-radius: 1.7rem;
  border: 1px solid hsl(var(--border) / 0.75);
  padding: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, hsl(var(--primary) / 0.15), transparent 36%),
    radial-gradient(circle at 100% 100%, hsl(var(--accent) / 0.12), transparent 40%),
    hsl(var(--card) / 0.7);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.saas-showcase-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.saas-showcase-orb--one {
  top: -80px;
  right: -80px;
  background: hsl(var(--primary) / 0.28);
}

.saas-showcase-orb--two {
  left: -80px;
  bottom: -80px;
  background: hsl(var(--accent) / 0.24);
}

.saas-showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.saas-showcase-slider {
  position: relative;
  z-index: 2;
}

.saas-showcase-focus {
  display: grid;
  gap: 0.9rem;
  background: linear-gradient(122deg, #0b1735 0%, #111f47 55%, #122553 100%);
  border: 1px solid rgba(93, 133, 228, 0.32);
  border-radius: 1rem;
  padding: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 22px 42px rgba(8, 17, 43, 0.34);
  position: relative;
  overflow: hidden;
}

.saas-showcase-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 12%, rgba(86, 155, 255, 0.22), transparent 44%);
  pointer-events: none;
}

.saas-showcase-focus__content {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.saas-showcase-focus__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6ba8ff;
  margin-bottom: 0.45rem;
}

.saas-showcase-focus__category.is-hidden {
  display: none;
}

.saas-showcase-focus__title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.3;
  color: #f5f9ff;
}

.saas-showcase-focus__description {
  margin: 0.65rem 0 0;
  color: #c6d5f5;
  font-size: 0.96rem;
  line-height: 1.68;
  white-space: pre-line;
}

.saas-showcase-focus__actions {
  margin-top: 0.95rem;
}

.saas-showcase-focus__more {
  border: 1px solid rgba(125, 168, 255, 0.45);
  background: rgba(20, 58, 125, 0.45);
  color: #d6e8ff;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.saas-showcase-focus__more:hover {
  background: rgba(33, 84, 176, 0.52);
  color: #ffffff;
  border-color: rgba(146, 187, 255, 0.58);
}

.saas-showcase-focus__media {
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 24, 52, 0.92), rgba(15, 31, 72, 0.82));
  border: 1px solid rgba(113, 150, 232, 0.28);
  min-height: 150px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
}

.saas-showcase-focus__media img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.saas-showcase-focus:hover .saas-showcase-focus__media img {
  transform: scale(1.02);
}

.saas-showcase-slider__toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.saas-showcase-slider__toolbar.is-hidden {
  display: none;
}

.saas-showcase-nav-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.saas-showcase-nav-btn svg {
  width: 1rem;
  height: 1rem;
}

.saas-showcase-nav-btn:hover:not(:disabled) {
  border-color: hsl(var(--primary) / 0.45);
  color: hsl(var(--primary));
  transform: translateY(-1px);
}

.saas-showcase-nav-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.saas-showcase-track-wrap {
  overflow: hidden;
}

.saas-showcase-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem 0.05rem 0.6rem;
}

.saas-showcase-track::-webkit-scrollbar {
  display: none;
}

.saas-showcase-track .saas-showcase-card {
  flex: 0 0 100%;
  min-width: 0;
  grid-column: auto;
  scroll-snap-align: start;
}

.saas-showcase-card {
  grid-column: span 12;
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--border) / 0.88);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.saas-showcase-card--interactive {
  cursor: pointer;
}

.saas-showcase-card.is-active {
  border-color: hsl(var(--primary) / 0.6);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
  transform: translateY(-4px);
}

.saas-showcase-card--interactive:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 3px;
}

.saas-showcase-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.saas-showcase-modal.is-open {
  display: block;
}

.saas-showcase-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(4px);
}

.saas-showcase-modal__dialog {
  position: relative;
  width: min(980px, calc(100% - 1.5rem));
  margin: 4vh auto 0;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: 0 30px 80px rgba(2, 8, 23, 0.34);
  overflow: hidden;
}

.saas-showcase-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  z-index: 2;
}

.saas-showcase-modal__close svg {
  width: 0.9rem;
  height: 0.9rem;
}

.saas-showcase-modal__grid {
  display: grid;
  gap: 0;
}

.saas-showcase-modal__content {
  padding: 1.35rem 1.2rem 1.4rem;
}

.saas-showcase-modal__category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.saas-showcase-modal__category.is-hidden {
  display: none;
}

.saas-showcase-modal__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
  color: hsl(var(--foreground));
}

.saas-showcase-modal__description {
  margin: 0.75rem 0 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  white-space: pre-line;
  max-height: 50vh;
  overflow: auto;
  padding-right: 0.35rem;
}

.saas-showcase-modal__media {
  background: hsl(var(--muted) / 0.4);
  min-height: 240px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saas-showcase-modal__media img {
  width: 100%;
  max-height: 56vh;
  object-fit: contain;
}

.saas-showcase-card:hover {
  transform: translateY(-5px);
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
}

.saas-showcase-card--style-glass {
  background:
    radial-gradient(circle at 10% -10%, hsl(var(--primary) / 0.14), transparent 40%),
    linear-gradient(140deg, hsl(var(--card) / 0.98), hsl(var(--muted) / 0.5));
}

.saas-showcase-card--style-solid {
  background: hsl(var(--card));
}

.saas-showcase-card--style-outline {
  background: hsl(var(--background));
  box-shadow: none;
}

.saas-showcase-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: hsl(var(--muted) / 0.55);
}

.saas-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(15, 23, 42, 0.25) 100%);
}

.saas-showcase-media-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(6px);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.saas-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.saas-showcase-card:hover .saas-showcase-media img {
  transform: scale(1.04);
}

.saas-showcase-content {
  padding: 1.15rem 1.15rem 1.25rem;
}

.saas-showcase-title {
  margin: 0;
  color: hsl(var(--foreground));
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 700;
}

.saas-showcase-description {
  margin: 0.6rem 0 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.94rem;
  line-height: 1.62;
}

.saas-showcase-footer {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.saas-showcase-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.saas-showcase-footer-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.saas-showcase-action {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: hsl(var(--primary));
  letter-spacing: 0.01em;
}

.saas-showcase-action svg {
  width: 0.82rem;
  height: 0.82rem;
  transition: transform 0.24s ease;
}

.saas-showcase-card--interactive:hover .saas-showcase-action svg,
.saas-showcase-card--interactive:focus-visible .saas-showcase-action svg {
  transform: translateX(3px);
}

.saas-gallery-card .saas-gallery-description {
  margin-top: 0.4rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .saas-showcase-focus {
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
    padding: 1.25rem;
  }

  .saas-showcase-focus__title {
    font-size: 1.48rem;
  }

  .saas-showcase-track .saas-showcase-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .saas-showcase-shell {
    padding: 1.25rem;
  }

  .saas-showcase-card {
    grid-column: span 6;
  }

  .saas-showcase-modal__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .saas-showcase-modal__content {
    padding: 1.65rem 1.5rem;
  }

  .saas-showcase-modal__title {
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .saas-showcase-track .saas-showcase-card {
    flex-basis: calc((100% - 2rem) / 3);
  }

  .saas-showcase-grid--cols-2 .saas-showcase-card {
    grid-column: span 6;
  }

  .saas-showcase-grid--cols-3 .saas-showcase-card {
    grid-column: span 4;
  }

  .saas-showcase-grid--compact .saas-showcase-card {
    grid-column: span 4;
  }

  .saas-showcase-grid--balanced.saas-showcase-grid--cols-3 .saas-showcase-card {
    grid-column: span 4;
  }

  .saas-showcase-grid--balanced.saas-showcase-grid--cols-2 .saas-showcase-card {
    grid-column: span 6;
  }

  .saas-showcase-grid--featured .saas-showcase-card--featured {
    grid-column: span 12;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: stretch;
  }

  .saas-showcase-grid--featured .saas-showcase-card--featured .saas-showcase-media {
    min-height: 320px;
    aspect-ratio: auto;
  }

  .saas-showcase-grid--featured .saas-showcase-card--featured .saas-showcase-content {
    padding: 1.95rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .saas-showcase-grid--featured .saas-showcase-card--featured .saas-showcase-title {
    font-size: 1.72rem;
  }

  .saas-showcase-grid--featured .saas-showcase-card--featured .saas-showcase-description {
    font-size: 1.02rem;
    max-width: 38ch;
  }
}

.comparison-table-wrapper {
  border-radius: 24px;
  border: 1px solid hsl(var(--border));
  overflow-x: auto;
  background: hsl(var(--card));
  box-shadow: var(--card-shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid hsl(var(--border));
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-plan__name {
  font-weight: 700;
  font-size: 14px;
}

.comparison-plan__price {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-top: 4px;
}

.comparison-module__title {
  font-weight: 600;
  font-size: 14px;
  color: hsl(var(--foreground));
}

.comparison-module__meta {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

.coverage-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.coverage-badge.badge-success {
  background: hsl(142 70% 92%);
  color: hsl(142 76% 24%);
}

.coverage-badge.badge-warning {
  background: hsl(45 100% 92%);
  color: hsl(30 82% 26%);
}

.coverage-badge.badge-muted {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

.coverage-badge.badge-danger {
  background: hsl(0 84% 90%);
  color: hsl(0 62% 30%);
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.checkout-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

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

.checkout-grid .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-grid .field-full {
  grid-column: 1 / -1;
}

.checkout-grid label {
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-grid .input {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  padding: 8px 11px;
  height: 40px;
  background: hsl(var(--muted) / 0.3);
  color: hsl(var(--foreground));
  font-size: 14px;
  transition: all 0.2s ease;
}

.checkout-grid .input-group {
  display: flex;
  align-items: center;
  background: hsl(var(--muted) / 0.3);
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  overflow: hidden;
}

.checkout-grid .input-group .input {
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 8px 11px;
  height: 36px;
  width: auto;
}

.checkout-grid .input-addon {
  padding: 0 12px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted) / 0.3);
  border-right: 1px solid hsl(var(--border));
}

.checkout-grid .input-addon:last-child {
  border-right: none;
  border-left: 1px solid hsl(var(--border));
}

.checkout-grid .field-hint {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-top: 6px;
}

.coupon-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.coupon-row .input {
  flex: 1;
}

.addon-group {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
  padding: 10px;
}

.check-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: hsl(var(--foreground));
  margin-bottom: 8px;
}

.is-hidden {
  display: none !important;
}

.pkg-total-sub {
  margin-top: 6px;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

.addon-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.addon-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.addon-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid hsl(var(--border));
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.addon-card:hover {
  border-color: hsl(var(--primary));
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.addon-checkbox {
  width: 16px;
  height: 16px;
  accent-color: hsl(var(--primary));
}

.addon-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.addon-title {
  font-weight: 700;
  font-size: 14px;
  color: hsl(var(--foreground));
}

.addon-sub {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

.addon-badge {
  margin-left: auto;
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.addon-card.is-locked {
  opacity: 0.7;
  cursor: not-allowed;
}

.addon-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.addon-modal.show {
  display: flex;
}

.addon-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.addon-modal__panel {
  position: relative;
  z-index: 60;
  width: min(860px, 92vw);
  max-height: 85vh;
  background: #fff;
  border-radius: 16px;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
}

.addon-modal__header {
  padding: 16px 20px;
  border-bottom: 1px solid hsl(var(--border));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.addon-modal__title {
  font-weight: 700;
  font-size: 16px;
  color: hsl(var(--foreground));
}

.addon-modal__subtitle {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-top: 4px;
}

.addon-modal__close {
  border: none;
  background: transparent;
  font-size: 22px;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
}

.addon-modal__body {
  padding: 18px;
  overflow-y: auto;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.addon-modal__footer {
  padding: 14px 20px;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  justify-content: flex-end;
}

.dark .addon-modal__panel {
  background: #0f172a;
  border-color: #1e293b;
}

.dark .addon-modal__header,
.dark .addon-modal__footer {
  border-color: #1e293b;
}

.dark .addon-modal__title {
  color: #e2e8f0;
}

.dark .addon-modal__subtitle {
  color: #94a3b8;
}

.dark .addon-card {
  background: #0b1220;
  border-color: #1e293b;
}

.dark .addon-card.is-locked {
  opacity: 0.6;
}

.dark .addon-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}
.addon-empty {
  padding: 12px;
  border-radius: 10px;
  background: hsl(var(--muted) / 0.3);
  color: hsl(var(--muted-foreground));
  font-size: 13px;
}

.slug-status {
  margin-left: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.slug-status.is-available {
  color: #22c55e;
}

.slug-status.is-taken {
  color: #ef4444;
}

.checkout-grid .input:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
  outline: none;
}

.checkout-grid .input-textarea {
  min-height: 110px;
  resize: vertical;
}

.billing-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.4);
}

.billing-toggle button {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
}

.billing-toggle button.is-active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.plan-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.plan-card {
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  padding: 16px;
  background: hsl(var(--card));
  cursor: pointer;
  transition: all 0.2s ease;
}

.plan-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-card__body {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.plan-card:hover {
  border-color: hsl(var(--primary));
  box-shadow: var(--card-shadow-hover);
}

.plan-card input:checked + .plan-card__body,
.plan-card input:checked ~ .plan-card__body {
  border-radius: 16px;
}

.plan-card input:checked ~ .plan-card__body .plan-title,
.plan-card input:checked ~ .plan-card__body .plan-price {
  color: hsl(var(--primary));
}

.plan-title {
  font-weight: 700;
  font-size: 16px;
  color: hsl(var(--foreground));
}

.plan-subtitle {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  margin-top: 4px;
}

.plan-price {
  text-align: right;
  font-weight: 700;
  font-size: 18px;
  color: hsl(var(--foreground));
}

.plan-price small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}

.checkout-preview {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.checkout-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.checkout-hero__content {
  max-width: 700px;
}

.checkout-hero__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.checkout-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #e2e8f0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pkg-preview {
  background: #f8fafc;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.pkg-preview__header {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 55%, #1d4ed8 100%);
  padding: 18px;
  /* color: #f8fafc; */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.pkg-preview__title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.pkg-preview__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pkg-preview__name {
  font-size: 18px;
  font-weight: 700;
  color: #f8fafc;
}

.pkg-preview__cycle {
  font-size: 12px;
  font-weight: 600;
  color: #1e3a8a;
  background: #dbeafe;
  padding: 4px 10px;
  border-radius: 999px;
}

.pkg-preview__body {
  padding: 16px;
  background: #f8fafc;
  max-height: 520px;
  overflow-y: auto;
}

.pkg-preview__section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 12px;
}

.license-pill {
  background: #e0f2fe;
  color: #0f172a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.pkg-module-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pkg-module-card {
  padding: 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.pkg-module-card.is-disabled {
  opacity: 0.55;
  background: #f1f5f9;
}

.pkg-module-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pkg-module-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.pkg-icon--yes {
  background: #dbeafe;
  color: #2563eb;
}

.pkg-icon--no {
  background: #e2e8f0;
  color: #94a3b8;
}

.pkg-icon--info {
  background: #e0f2fe;
  color: #0284c7;
}

.pkg-module-title {
  font-weight: 700;
  font-size: 13px;
  color: #0f172a;
}

.pkg-module-sub {
  font-size: 11px;
  color: #64748b;
}

.pkg-badge {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pkg-badge--included {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.pkg-badge--addon {
  background: #ecfdf3;
  color: #047857;
  border: 1px solid #bbf7d0;
}

.pkg-addon-remove {
  margin-left: 8px;
  border: 0;
  background: transparent;
  color: #ef4444;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pkg-addon-remove:hover {
  color: #dc2626;
}

.pkg-badge--excluded {
  background: #e2e8f0;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.pkg-menu-toggle {
  margin-top: 8px;
  border: none;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.pkg-menu-toggle.active i {
  transform: rotate(180deg);
}

.pkg-menu-dropdown {
  position: relative;
  display: inline-block;
}

.pkg-menu-list {
  list-style: none;
  padding: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-top: 6px;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 260px;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.pkg-menu-list.show {
  display: block;
}

.pkg-menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  padding: 4px 6px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 4px;
  background: #ffffff;
  border-radius: 6px;
  color: #475569;
}

.pkg-menu-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.pkg-limit {
  font-size: 11px;
  font-weight: 700;
  color: #1d4ed8;
  background: #dbeafe;
  padding: 2px 6px;
  border-radius: 6px;
}

.pkg-preview__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  padding: 12px 18px;
}

.pkg-price-breakdown {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: grid;
  gap: 8px;
}

.pkg-break-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #475569;
}

.pkg-break-row strong {
  color: #1e293b;
  font-weight: 700;
}

.pkg-break-row--discount strong {
  color: #dc2626;
}

.pkg-total-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
}

.pkg-total-price {
  font-size: 28px;
  font-weight: 800;
  color: #1d4ed8;
}

.dark .pkg-preview {
  background: #0b1220;
  border: 1px solid #1e293b;
  box-shadow: 0 30px 50px rgba(2, 6, 23, 0.45);
}

.dark .pkg-preview__header {
  /* background: linear-gradient(135deg, #0f172a 0%, #111827 55%, #1f2937 100%);
  border-bottom: 1px solid #1f2937;
  color: #e2e8f0; */
}

.dark .pkg-preview__title {
  /* color: #94a3b8; */
}

.dark .pkg-preview__name {
  color: #e2e8f0;
}

.dark .pkg-preview__cycle {
  color: #b5d8ff;
  background: rgba(59, 130, 246, 0.2);
}

.dark .pkg-preview__body {
  background: #0f172a;
}

.dark .pkg-preview__section {
  color: #94a3b8;
}

.dark .license-pill {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

.dark .pkg-module-card {
  background: #111827;
  border-color: #1f2937;
}

.dark .pkg-module-card.is-disabled {
  background: #0f172a;
}

.dark .pkg-module-title {
  color: #e2e8f0;
}

.dark .pkg-module-sub {
  color: #94a3b8;
}

.dark .pkg-badge--included {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.dark .pkg-badge--addon {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.dark .pkg-badge--excluded {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.dark .pkg-menu-toggle {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

.dark .pkg-menu-list {
  background: #0b1220;
  border: 1px solid #1f2937;
  box-shadow: 0 18px 30px rgba(2, 6, 23, 0.5);
}

.dark .pkg-menu-list li {
  background: #0f172a;
  border-bottom: 1px solid #1f2937;
  color: #cbd5f5;
}

.dark .pkg-limit {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.2);
}

.dark .pkg-preview__footer {
  background: #0f172a;
  border-top: 1px solid #1f2937;
}

.dark .pkg-price-breakdown {
  background: #0b1220;
  border-color: #1f2937;
}

.dark .pkg-break-row {
  color: #cbd5f5;
}

.dark .pkg-break-row strong {
  color: #e2e8f0;
}

.dark .pkg-break-row--discount strong {
  color: #fca5a5;
}

.dark .pkg-total-label {
  color: #94a3b8;
}

.dark .pkg-total-price {
  color: #93c5fd;
}

@media (max-width: 1024px) {
  .checkout-shell {
    grid-template-columns: 1fr;
  }
  .checkout-preview {
    position: static;
  }
}

@media (max-width: 640px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.dark .bg-primary-10,
.dark .bg-primary\/10 {
  background-color: hsl(var(--primary) / 0.18);
}

.dark .bg-secondary-10,
.dark .bg-secondary\/10 {
  background-color: hsl(var(--secondary) / 0.18);
}

.dark .bg-accent-10,
.dark .bg-accent\/10 {
  background-color: hsl(var(--accent) / 0.18);
}

.dark .bg-primary-20,
.dark .bg-primary\/20 {
  background-color: hsl(var(--primary) / 0.28);
}

.dark .bg-secondary-20,
.dark .bg-secondary\/20 {
  background-color: hsl(var(--secondary) / 0.28);
}

.dark .bg-accent-20,
.dark .bg-accent\/20 {
  background-color: hsl(var(--accent) / 0.28);
}

.dark .bg-muted-30,
.dark .bg-muted\/30 {
  background-color: hsl(var(--muted) / 0.45);
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-secondary {
  color: hsl(var(--secondary));
}

.text-accent {
  color: hsl(var(--accent));
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

.border-border {
  border-color: hsl(var(--border));
}

.border-border-50 {
  border-color: hsl(var(--border) / 0.5);
}

.hero-gradient {
  background: var(--hero-gradient);
}

.glass-card {
  background-color: hsl(var(--card) / 0.82);
  border: 1px solid hsl(var(--border) / 0.6);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(24px);
}

.glass-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.gradient-text {
  background-image: linear-gradient(
    120deg,
    hsl(var(--primary)),
    hsl(var(--accent)),
    hsl(var(--secondary))
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-padding {
  padding: 4rem 0;
}

.container-padding {
  padding: 0 1rem;
}

.navbar {
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.navbar.is-scrolled {
  background-color: hsl(var(--background) / 0.86);
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
}
.theme-button {
  color: #fff !important;
}
.navbar.is-scrolled .theme-button {
  color: hsl(var(--muted-foreground)) !important;
}

.nav-active {
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
}

.hero-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(90px);
  opacity: 0.75;
}

.hero-orb.primary {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -140px;
  background: hsl(var(--primary) / 0.25);
}

.hero-orb.secondary {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -120px;
  background: hsl(var(--secondary) / 0.25);
}

.hero-orb.accent {
  width: 520px;
  height: 520px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: hsl(var(--accent) / 0.18);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      transparent 0,
      transparent 19px,
      hsl(var(--foreground) / 0.08) 20px
    ),
    linear-gradient(
      90deg,
      transparent 0,
      transparent 19px,
      hsl(var(--foreground) / 0.08) 20px
    );
  background-size: 20px 20px;
  opacity: 0.12;
  mix-blend-mode: screen;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  border: 1px solid transparent;
}

.btn.is-selected {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 10px 30px hsl(var(--primary) / 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px hsl(var(--primary) / 0.35);
}

.btn-outline {
  border-color: hsl(var(--primary-foreground) / 0.25);
  color: hsl(var(--primary-foreground));
  background-color: hsl(var(--primary-foreground) / 0.08);
}

.btn-outline:hover {
  background-color: hsl(var(--primary-foreground) / 0.18);
}

.light .btn-outline {
  border-color: hsl(var(--primary) / 0.25);
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.08);
}

.light .btn-outline:hover {
  background-color: hsl(var(--primary) / 0.14);
}

.btn-outline:disabled,
.btn-outline[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  background-color: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  border-color: hsl(var(--border));
  box-shadow: none;
  transform: none;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

.btn-muted {
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
  background-color: hsl(var(--muted));
}

.btn-muted:hover {
  background-color: hsl(var(--muted) / 0.7);
}

.btn-ghost {
  background-color: transparent;
  color: hsl(var(--foreground));
}

.btn-ghost:hover {
  background-color: hsl(var(--muted) / 0.6);
}
.btn-default {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-primary {
  background-color: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.2);
}

.badge-muted {
  background-color: hsl(var(--muted) / 0.7);
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border));
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.card-hover {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card--featured {
  color: hsl(var(--primary-foreground));
  border: 1px solid hsl(var(--primary) / 0.45);
  background: linear-gradient(
    145deg,
    hsl(var(--primary) / 0.96) 0%,
    hsl(var(--accent) / 0.7) 55%,
    hsl(var(--secondary) / 0.6) 100%
  );
  box-shadow: 0 24px 50px hsl(var(--primary) / 0.25);
}

.pricing-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    hsl(var(--primary-foreground) / 0.18),
    transparent 60%
  );
  pointer-events: none;
}

.pricing-card--featured > * {
  position: relative;
  z-index: 1;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: hsl(var(--secondary) / 0.9);
  color: hsl(var(--secondary-foreground));
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-inverse {
  background-color: hsl(var(--primary-foreground));
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary-foreground) / 0.6);
}

.btn-inverse:hover {
  background-color: hsl(var(--primary-foreground) / 0.9);
}

.pricing-card.popular {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px hsl(var(--primary) / 0.2);
}

.pricing-card.popular .btn-outline {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border-color: transparent;
}

.pricing-card.popular .btn-outline:hover {
  background-color: hsl(var(--secondary) / 0.9);
}

.addon-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 0.5rem;
  scroll-snap-type: x mandatory;
}

.addon-card {
  min-width: 230px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.7);
  background: linear-gradient(
    145deg,
    hsl(var(--card) / 0.9),
    hsl(var(--muted) / 0.6)
  );
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.dark .addon-card {
  background: linear-gradient(
    145deg,
    hsl(var(--card) / 0.9),
    hsl(var(--muted) / 0.45)
  );
}

.scroll-frame {
  position: relative;
}

.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background-color: hsl(var(--background) / 0.85);
  border: 1px solid hsl(var(--border));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.scroll-button.left {
  left: -0.5rem;
}

.scroll-button.right {
  right: -0.5rem;
}

.scroll-button:hover {
  background-color: hsl(var(--muted));
}

.table-scroll {
  overflow-x: auto;
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
}

.comparison-table thead th {
  background-color: hsl(var(--muted) / 0.7);
  color: hsl(var(--foreground));
  font-weight: 600;
}

.comparison-table tbody tr td {
  border-bottom: 1px solid hsl(var(--border));
}

.comparison-table tbody tr:hover td {
  background-color: hsl(var(--muted) / 0.35);
}

.comparison-section {
  background-color: hsl(var(--muted) / 0.5);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.comparison-featured {
  background: linear-gradient(180deg, hsl(var(--primary) / 0.15), transparent);
  font-weight: 600;
}

.dark .comparison-featured {
  background: linear-gradient(180deg, hsl(var(--primary) / 0.22), transparent);
}

.input-soft {
  background-color: hsl(var(--muted) / 0.7);
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  border-radius: 12px;
  min-height: 48px;
}

.input-soft::placeholder {
  color: hsl(var(--muted-foreground));
}

.input-soft:focus {
  outline: none;
}

.dark .input-soft {
  background-color: hsl(var(--muted) / 0.45);
}

.signup-shell {
  position: relative;
  background:
    radial-gradient(circle at top, hsl(var(--primary) / 0.15), transparent 55%),
    radial-gradient(
      circle at 80% 30%,
      hsl(var(--accent) / 0.12),
      transparent 50%
    ),
    hsl(var(--background));
}

.signup-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      transparent 0,
      transparent 19px,
      hsl(var(--foreground) / 0.06) 20px
    ),
    linear-gradient(
      90deg,
      transparent 0,
      transparent 19px,
      hsl(var(--foreground) / 0.06) 20px
    );
  background-size: 20px 20px;
  opacity: 0.15;
  pointer-events: none;
}

.signup-panel {
  position: relative;
  z-index: 1;
}

.signup-card {
  background-color: hsl(var(--card) / 0.95);
  border: 1px solid hsl(var(--border));
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.15);
}

.signup-plan {
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.signup-plan.is-selected {
  border-color: hsl(var(--primary));
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.12),
    hsl(var(--accent) / 0.08)
  );
  box-shadow: 0 20px 35px hsl(var(--primary) / 0.2);
  transform: translateY(-2px);
}

.signup-aside {
  background: linear-gradient(
    140deg,
    hsl(var(--background)) 0%,
    hsl(var(--primary) / 0.1) 35%,
    hsl(var(--accent) / 0.08) 100%
  );
}

.signup-summary {
  background-color: hsl(var(--card) / 0.9);
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.signup-highlight {
  border-radius: 1rem;
  background-color: hsl(var(--secondary) / 0.18);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--secondary) / 0.3);
}

.signup-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.signup-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.signup-brand__name {
  font-weight: 700;
  font-size: 1.05rem;
}

.signup-brand__meta {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
}

.signup-steps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.signup-step {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

.signup-step span:first-child {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}

.signup-step.is-active span:first-child {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.signup-step-divider {
  width: 24px;
  height: 1px;
  background-color: hsl(var(--border));
}

.signup-title {
  font-size: 1.9rem;
  font-weight: 700;
}

.signup-subtitle {
  color: hsl(var(--muted-foreground));
  margin-top: 0.35rem;
}

.signup-form {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.signup-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
}

.signup-footer a {
  color: hsl(var(--primary));
  font-weight: 600;
}

.summary-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}

.summary-plan {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0.8rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
  font-size: 0.95rem;
}

.summary-divider {
  margin: 1.2rem 0;
  height: 1px;
  background-color: hsl(var(--border));
}

.summary-bullets {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.login-panel {
  display: flex;
  justify-content: center;
}

.login-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .login-grid {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }
}

.login-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.login-card {
  width: min(440px, 100%);
  background: hsl(var(--card) / 0.96);
  border: 1px solid hsl(var(--border));
  border-radius: 26px;
  padding: 2.25rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.login-card__header {
  display: grid;
  gap: 1.5rem;
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.login-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
}

.login-brand__name {
  font-weight: 700;
}

.login-brand__meta {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
}

.login-title {
  font-size: 1.9rem;
  font-weight: 700;
}

.login-subtitle {
  color: hsl(var(--muted-foreground));
}

.login-form {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
}

.input-group--pill {
  border-radius: 999px;
  overflow: hidden;
}

.input-group--pill .input {
  padding-left: 0.95rem;
  padding-right: 0.95rem;
}

.login-shell {
  width: min(980px, 100%);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  background: hsl(var(--card) / 0.92);
  border: 1px solid hsl(var(--border));
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1024px) {
  .login-shell {
    grid-template-columns: 1fr 1fr;
  }
}

.login-pane {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.login-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.login-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
}

.login-brand-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.login-title {
  font-size: 2rem;
  font-weight: 700;
}

.login-subtitle {
  margin-top: 0.25rem;
  color: hsl(var(--muted-foreground));
}

.login-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.login-pane .field-group {
  margin-bottom: 0.5rem;
}

.login-pane .input-group {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  background: hsl(var(--muted) / 0.25);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.login-pane .input-group:focus-within {
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.2);
}

.login-pane .field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.4rem;
}

.login-pane .input-group--pill {
  border-radius: 14px;
}

.login-pane .input-group--pill .input {
  padding-left: 0.75rem;
}

.login-pane .input-group .input {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
}

.login-pane .input-addon {
  padding: 0 12px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted) / 0.3);
  border-right: 1px solid hsl(var(--border));
}
.input-addon-button {
  background: transparent !important;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.login-pane .input-addon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.login-pane .input-addon--action {
  border-left: 1px solid hsl(var(--border));
  border-right: none;
  background: rgba(59, 130, 246, 0.15);
  color: #dbeafe;
  font-weight: 600;
  height: 100%;
  min-width: 64px;
  justify-content: center;
}

.login-meta {
  margin-top: 0.25rem;
}

.login-socials .btn {
  padding: 0.7rem 1rem;
}

.login-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.login-divider {
  margin: 1.75rem 0 1rem;
  position: relative;
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.85rem;
}

.login-divider::before,
.login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: hsl(var(--border));
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.login-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.login-hero {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at top, hsl(var(--primary) / 0.2), transparent 60%),
    hsl(var(--background));
}

.login-hero__icon {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  margin-bottom: 1.5rem;
}

.login-hero h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.login-hero p {
  color: hsl(var(--muted-foreground));
}

.setup-shell {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.setup-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.setup-card {
  background: rgba(9, 16, 32, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.setup-header {
  margin-bottom: 24px;
}

.setup-title {
  font-size: 28px;
  font-weight: 700;
  color: #f8fafc;
  margin: 18px 0 8px;
}

.setup-subtitle {
  color: #9ca3af;
  font-size: 14px;
}

.setup-summary {
  border-radius: 18px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(15, 23, 42, 0.85);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.setup-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.setup-package {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
}

.setup-muted {
  color: #94a3b8;
  font-size: 12px;
}

.setup-amount {
  font-size: 20px;
  color: #f8fafc;
}

.setup-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.setup-link {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.setup-link a {
  color: #60a5fa;
  font-weight: 600;
}

@media (max-width: 640px) {
  .setup-card {
    padding: 24px;
    border-radius: 18px;
  }
  .setup-title {
    font-size: 24px;
  }
}

.login-glass {
  position: absolute;
  right: -260px;
  top: 50%;
  transform: translateY(-40%);
  width: 300px;
  color: hsl(var(--foreground));
}

.login-glass__title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.login-glass__card {
  background: linear-gradient(
    160deg,
    hsl(var(--card) / 0.85),
    hsl(var(--background) / 0.95)
  );
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.login-glass__heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.login-glass__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.35rem;
}

.login-glass__divider {
  height: 1px;
  background: hsl(var(--border));
  margin: 0.85rem 0;
}

.login-glass__pill {
  margin-top: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: hsl(var(--secondary) / 0.18);
  border: 1px solid hsl(var(--secondary) / 0.3);
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
}

.login-glass__pill ul {
  margin: 0;
  padding-left: 1.1rem;
}

@media (max-width: 1100px) {
  .login-glass {
    position: static;
    transform: none;
    width: min(320px, 100%);
    margin: 1.75rem auto 0;
  }
  .login-stage {
    flex-direction: column;
    gap: 1.75rem;
  }
}

.input-addon--action {
  cursor: pointer;
  border-left: 1px solid hsl(var(--border));
  background-color: hsl(var(--muted) / 0.2);
  font-weight: 600;
}

.signup-form .input {
  width: 100%;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.signup-form .input:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2);
}

.signup-form .input-group {
  display: flex;
  align-items: stretch;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
}

.signup-form .input-group .input {
  border: none;
  border-radius: 0;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background-color: transparent;
}

.signup-form .input-addon {
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  color: hsl(var(--muted-foreground));
  background-color: hsl(var(--muted) / 0.35);
  border-right: 1px solid hsl(var(--border));
  font-size: 0.85rem;
}

.signup-form .input-addon:last-child {
  border-right: 0;
  border-left: 1px solid hsl(var(--border));
}

.toggle-pill {
  border-radius: 999px;
  padding: 0.3rem 0.4rem;
  background-color: hsl(var(--muted));
}

.toggle-pill button {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}

.toggle-pill button.is-active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.theme-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 160px;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 0.4rem;
  z-index: 40;
}

.theme-menu button {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.theme-menu button:hover,
.theme-menu button.is-active {
  background-color: hsl(var(--muted));
}

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

.animate-float-delayed {
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

.animate-pulse-slow {
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .container-padding {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 0;
  }

  .container-padding {
    padding: 0 2rem;
  }

  .addon-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .addon-card {
    min-width: 0;
  }

  .scroll-button {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .animate-float-delayed,
  .animate-pulse-slow {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.w-half {
  width: 50%;
}
.gradient-text {
  background-image: linear-gradient(
    120deg,
    hsl(var(--primary)),
    hsl(var(--accent)),
    hsl(var(--secondary))
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
