.vibe-site {
  min-height: 100vh;
  color: #f3ead2;
  background:
    linear-gradient(rgba(12, 14, 14, 0.86), rgba(12, 14, 14, 0.92)),
    url("assets/generated/texture-dark-metal.png") center / 760px;
}

.vibe-site a {
  color: inherit;
}

.vibe-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 58px;
  width: min(1480px, calc(100% - 28px));
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(229, 188, 102, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6, 10, 11, 0.92), rgba(23, 31, 30, 0.88)),
    url("assets/ui-kit/header/header.png") center / 100% 100% no-repeat;
  backdrop-filter: blur(14px);
}

.vibe-brand {
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  text-decoration: none;
}

.vibe-brand img {
  grid-row: 1 / 3;
  width: 34px;
  filter: drop-shadow(0 0 9px rgba(49, 231, 220, 0.24));
}

.vibe-brand span {
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.vibe-brand strong {
  color: #fff3d0;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
}

.vibe-nav nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
}

.vibe-nav nav a,
.vibe-nav-cta {
  color: rgba(245, 235, 211, 0.82);
  text-decoration: none;
}

.vibe-nav nav a:hover,
.vibe-nav-cta:hover {
  color: var(--teal-soft);
}

.vibe-nav-cta {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid rgba(118, 255, 242, 0.34);
  border-radius: 999px;
  background: rgba(7, 14, 15, 0.62);
}

.vibe-hero {
  min-height: clamp(330px, 36vh, 375px);
  margin-top: -62px;
  display: grid;
  align-items: center;
  padding: 76px 0 28px;
  background:
    linear-gradient(90deg, rgba(10, 13, 13, 0.92) 0%, rgba(14, 17, 17, 0.76) 40%, rgba(21, 20, 16, 0.08) 100%),
    linear-gradient(180deg, transparent 70%, rgba(12, 14, 14, 1) 100%),
    url("assets/generated/hero-arcane-dashboard.png") center / cover no-repeat;
}

.vibe-hero-inner,
.vibe-proof,
.vibe-product,
.vibe-feature-band,
.vibe-workflow,
.vibe-models,
.vibe-requirements,
.vibe-faq,
.vibe-final,
.vibe-footer {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

.vibe-hero-inner {
  max-width: 880px;
  margin-left: max(16px, calc((100vw - 1240px) / 2));
}

.vibe-kicker,
.vibe-section-label,
.vibe-mini-label {
  color: var(--teal-soft);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vibe-hero h1 {
  max-width: 870px;
  margin: 12px 0 0;
  color: #fff1cd;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.35vw, 4.05rem);
  font-weight: 500;
  line-height: 0.94;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.46);
}

.vibe-hero p {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(244, 235, 215, 0.86);
  font-size: 1rem;
  line-height: 1.55;
}

.vibe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.vibe-button {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  min-width: 184px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 34px;
  border-radius: 8px;
  color: #f7fff9;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

.vibe-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.vibe-button::before {
  content: "";
  position: absolute;
  inset: -6px 0;
  z-index: -1;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.vibe-button-primary::before {
  background-image: url("assets/generated/button-primary-frame.png");
}

.vibe-button-secondary::before {
  background-image: url("assets/generated/button-secondary-frame.png");
}

.vibe-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(219, 178, 94, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(221, 184, 103, 0.14);
}

.vibe-proof div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 20px;
  background:
    linear-gradient(rgba(16, 22, 22, 0.92), rgba(16, 22, 22, 0.96)),
    url("assets/generated/texture-dark-metal.png") center / 540px;
}

.vibe-proof strong {
  color: #fff1cc;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
}

.vibe-proof span,
.vibe-section-copy p,
.vibe-section-heading p {
  color: rgba(232, 220, 198, 0.76);
  line-height: 1.55;
}

.vibe-product,
.vibe-feature-band,
.vibe-workflow,
.vibe-models,
.vibe-requirements,
.vibe-faq,
.vibe-final {
  padding-block: clamp(48px, 6vw, 84px);
}

.vibe-product {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.vibe-section-copy h2,
.vibe-section-heading h2,
.vibe-requirements h2,
.vibe-final h2 {
  margin: 12px 0 0;
  color: #fff2cd;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.7vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
}

.vibe-section-copy p {
  margin-top: 20px;
  font-size: 1.02rem;
}

.vibe-console {
  min-height: 390px;
  color: #eee0c2;
}

.vibe-console-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(217, 180, 98, 0.24);
}

.vibe-console-top span,
.vibe-mini-label {
  color: rgba(141, 255, 243, 0.82);
}

.vibe-console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  gap: 24px;
  padding-top: 24px;
}

.vibe-console h3,
.vibe-feature-grid h3,
.vibe-steps h3 {
  margin: 8px 0 0;
  color: #fff2cd;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.vibe-console p,
.vibe-feature-grid p,
.vibe-steps p,
.vibe-faq p,
.vibe-final p {
  margin-top: 10px;
  color: rgba(232, 220, 198, 0.74);
  line-height: 1.55;
}

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

.vibe-task-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(221, 184, 103, 0.22);
  border-radius: 6px;
  background: rgba(4, 9, 10, 0.45);
}

.vibe-task-list svg {
  width: 18px;
  height: 18px;
  fill: var(--teal-soft);
}

.vibe-progress-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 44px;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.vibe-section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

.vibe-feature-grid,
.vibe-steps,
.vibe-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vibe-feature-grid article,
.vibe-steps article,
.vibe-faq details,
.vibe-model-table,
.vibe-requirements ul {
  border: 1px solid rgba(219, 178, 94, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(rgba(13, 19, 20, 0.86), rgba(17, 24, 24, 0.94)),
    url("assets/generated/texture-dark-metal.png") center / 540px;
  box-shadow: inset 0 0 0 1px rgba(255, 245, 207, 0.06);
}

.vibe-feature-grid article,
.vibe-steps article {
  min-height: 232px;
  padding: 24px;
}

.vibe-feature-grid svg,
.vibe-feature-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  fill: var(--teal-soft);
  filter: drop-shadow(0 0 10px rgba(49, 231, 220, 0.2));
}

.vibe-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vibe-steps article span {
  color: var(--teal-soft);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.vibe-models {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.vibe-model-table {
  display: grid;
  overflow: hidden;
}

.vibe-model-table div {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(180px, 1.18fr) minmax(120px, 0.72fr);
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(221, 184, 103, 0.18);
}

.vibe-model-table div.vibe-model-group {
  grid-template-columns: 1fr;
  padding: 12px 18px 10px;
  background:
    linear-gradient(90deg, rgba(64, 216, 222, 0.16), rgba(221, 184, 103, 0.06) 46%, transparent);
}

.vibe-model-table div.vibe-model-group span {
  color: var(--teal-soft);
  font-family: var(--serif);
  font-size: 0.96rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vibe-model-table div:last-child {
  border-bottom: 0;
}

.vibe-model-table strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-weight: 500;
}

.vibe-model-table span {
  min-width: 0;
  color: rgba(240, 229, 204, 0.84);
}

.vibe-requirements {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 70px);
}

.vibe-requirements ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vibe-requirements li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(221, 184, 103, 0.18);
}

.vibe-requirements li:last-child {
  border-bottom: 0;
}

.vibe-requirements strong {
  color: var(--gold-bright);
}

.vibe-requirements span {
  color: rgba(240, 229, 204, 0.8);
}

.vibe-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vibe-faq details {
  padding: 20px 22px;
}

.vibe-faq summary {
  cursor: pointer;
  color: #fff2cd;
  font-family: var(--serif);
  font-size: 1.22rem;
}

.vibe-final {
  display: grid;
  justify-items: center;
  text-align: center;
}

.vibe-final img {
  width: 116px;
  filter: drop-shadow(0 0 18px rgba(49, 231, 220, 0.32));
}

.vibe-final p {
  max-width: 560px;
}

.vibe-footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(221, 184, 103, 0.22);
}

.vibe-footer a,
.vibe-footer span {
  color: rgba(244, 235, 215, 0.72);
  text-decoration: none;
}

@media (max-width: 980px) {
  .vibe-nav {
    grid-template-columns: 1fr auto;
  }

  .vibe-nav nav {
    display: none;
  }

  .vibe-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vibe-product,
  .vibe-models,
  .vibe-requirements {
    grid-template-columns: 1fr;
  }

  .vibe-feature-grid,
  .vibe-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vibe-nav {
    width: min(100% - 16px, 720px);
    min-height: 56px;
    margin-top: 8px;
    padding: 6px 9px;
  }

  .vibe-brand {
    grid-template-columns: 32px auto;
  }

  .vibe-brand img {
    width: 32px;
  }

  .vibe-nav-cta {
    min-height: 32px;
    padding-inline: 12px;
  }

  .vibe-hero {
    min-height: 360px;
    margin-top: -58px;
    padding-top: 66px;
    padding-bottom: 20px;
    background:
      linear-gradient(180deg, rgba(10, 13, 13, 0.84) 0%, rgba(10, 13, 13, 0.52) 38%, rgba(12, 14, 14, 1) 100%),
      url("assets/generated/hero-arcane-dashboard.png") 31% top / 590px auto no-repeat;
  }

  .vibe-hero-inner,
  .vibe-proof,
  .vibe-product,
  .vibe-feature-band,
  .vibe-workflow,
  .vibe-models,
  .vibe-requirements,
  .vibe-faq,
  .vibe-final,
  .vibe-footer {
    width: min(100% - 22px, 720px);
  }

  .vibe-hero h1 {
    margin-top: 8px;
    font-size: clamp(2rem, 9.5vw, 2.85rem);
  }

  .vibe-hero p {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .vibe-hero-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .vibe-proof,
  .vibe-feature-grid,
  .vibe-steps,
  .vibe-faq-grid {
    grid-template-columns: 1fr;
  }

  .vibe-console-grid {
    grid-template-columns: 1fr;
  }

  .vibe-requirements li,
  .vibe-model-table div {
    grid-template-columns: 1fr;
  }

  .vibe-button {
    min-height: 46px;
    width: 100%;
  }

  .vibe-footer {
    flex-wrap: wrap;
    justify-content: center;
  }
}
