/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #131112;
  color: #e8e6e8;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body > div#app > main {
  display: flex;
  flex-flow: column;
  min-height: 100svh;
}
a {
  text-decoration: none;
}
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 2rem;
}
.home__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  width: 100%;
  gap: 1.5rem;
}
.home__title {
  margin: 0;
  font-family:
    "Geist Mono",
    "IBM Plex Sans Arabic",
    monospace;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f5f3f5;
}
.home__subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #9d969d;
}
.home__subtitle strong {
  color: #fc51a6;
  font-weight: 600;
}
.home__inline-code {
  font-family:
    "SF Mono",
    "Fira Code",
    "Fira Mono",
    Menlo,
    Monaco,
    Consolas,
    "Courier New",
    monospace;
  font-size: 0.9em;
  background: rgba(252, 81, 166, 0.1);
  color: #fc51a6;
  padding: 1px 7px;
  border-radius: 4px;
}
.home__command-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.home__command {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.home__code {
  font-family:
    "SF Mono",
    "Fira Code",
    "Fira Mono",
    Menlo,
    Monaco,
    Consolas,
    "Courier New",
    monospace;
  font-size: 0.9rem;
  color: #e8e6e8;
  background: none;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home__copy {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(252, 81, 166, 0.12);
  color: #fc51a6;
  border: 1px solid rgba(252, 81, 166, 0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.home__copy:hover {
  background: rgba(252, 81, 166, 0.22);
  border-color: rgba(252, 81, 166, 0.5);
}
.home__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.home__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #6b636b;
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0.02em;
}
.home__link:hover {
  color: #9d969d;
}
.home__llms-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.home__llms-menu-wrapper {
  position: relative;
}
@keyframes rainbow-border {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.home__llms-trigger {
  position: relative;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f0ecf0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  background:
    linear-gradient(
      90deg,
      #8b1a5a,
      #8b4a0e,
      #7a6800,
      #1a6b3a,
      #1a4d7a,
      #4a1a8b,
      #8b1a5a);
  background-size: 200% 100%;
  animation: rainbow-border 4s linear infinite;
  transition:
    opacity 0.15s,
    transform 0.1s,
    padding 0.1s,
    border-radius 0.2s;
}
.home__llms-trigger:hover,
.home__llms-trigger.home__llms-trigger--open {
  opacity: 0.9;
  padding: 8px 8px;
  border-radius: 4px;
  transform: scale(1.05);
}
.home__llms-trigger--open {
  opacity: 0.85;
  transform: scale(0.98);
}
.home__llms-dropdown {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #1e1b1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.home__llms-dropdown[data-visible=false] {
  visibility: hidden;
  pointer-events: none;
}
.home__llms-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.82rem;
  color: #9d969d;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  text-decoration: none;
  font-family: inherit;
}
.home__llms-option:disabled {
  opacity: 0.6;
  cursor: default;
}
.home__llms-option + .home__llms-option {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.home__llms-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #e8e6e8;
}
.features {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}
.features__inner {
  width: 100%;
  max-width: 960px;
}
.features__heading {
  margin: 0 0 2.5rem;
  text-align: center;
  font-family:
    "Geist Mono",
    "IBM Plex Sans Arabic",
    monospace;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f5f3f5;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.feature {
  background: #131112;
  padding: 1.75rem 1.5rem;
  transition: background 0.15s;
}
.feature:hover {
  background: #181517;
}
.feature__title {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fc51a6;
}
.feature__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9d969d;
}
.features__more {
  display: block;
  margin: 2.5rem auto 0;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fc51a6;
  transition: opacity 0.15s;
}
.features__more:hover {
  opacity: 0.75;
}
.package {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  flex: 1;
}
.package__back {
  display: inline-block;
  margin-bottom: 2.5rem;
  font-size: 0.85rem;
  color: #6b636b;
  transition: color 0.15s;
}
.package__back:hover {
  color: #9d969d;
}
.package__header {
  margin-bottom: 3.5rem;
}
.package__title {
  margin: 0 0 1rem;
  font-family:
    "Geist Mono",
    "IBM Plex Sans Arabic",
    monospace;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5f3f5;
}
.package__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #9d969d;
}
.package__install {
  display: inline-flex;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.package__section {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.package__section-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fc51a6;
}
.package__paragraph {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #c8bfc8;
}
.package__paragraph:last-child {
  margin-bottom: 0;
}
.package__cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.package__cta-text {
  margin: 0;
  font-size: 0.95rem;
  color: #9d969d;
}
.home__footer {
  text-align: center;
  padding: 1rem 2rem;
  color: #6b636b;
  font-size: 0.8rem;
}
.home__footer a {
  color: #fc51a6;
}
