@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.cinema-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000000;
}

.cinema-background-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema-bottom-blur-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 45%);
  mask-image: linear-gradient(to top, black 0%, transparent 45%);
}

.cinema-shell {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.cinema-navbar {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

.cinema-logo {
  display: flex;
  min-height: 2rem;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  letter-spacing: -0.04em;
}

.cinema-logo-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.cinema-logo-separator {
  display: inline-block;
  width: 1px;
  height: 0.92em;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(0.02em);
}

.cinema-logo-proxy {
  color: rgba(255, 255, 255, 0.54) !important;
  font-weight: 300 !important;
  letter-spacing: -0.035em;
}

.cinema-desktop-navigation {
  display: none;
  align-items: center;
  gap: 1.55rem;
}

.cinema-desktop-navigation a {
  font-size: 0.875rem;
  transition: color 180ms ease;
}

.cinema-desktop-navigation a:hover {
  color: #d1d5db;
}

.cinema-navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cinema-search-button {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 180ms ease;
}

.cinema-profile-button {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: transform 180ms ease;
}

.cinema-search-button:hover,
.cinema-profile-button:hover,
.cinema-menu-button:hover,
.argent-command-card button:hover {
  transform: scale(1.03);
}

.cinema-menu-button {
  position: relative;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 180ms ease;
}

.cinema-menu-icon {
  position: absolute;
  transition: transform 500ms ease-out, opacity 500ms ease-out;
}

.cinema-menu-icon-open {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.cinema-menu-icon-close {
  transform: rotate(-180deg) scale(0.5);
  opacity: 0;
}

.cinema-menu-button.is-open .cinema-menu-icon-open {
  transform: rotate(180deg) scale(0.5);
  opacity: 0;
}

.cinema-menu-button.is-open .cinema-menu-icon-close {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.cinema-mobile-menu {
  position: absolute;
  top: 72px;
  right: 0;
  left: 0;
  z-index: 40;
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  background: rgba(17, 24, 39, 0.95);
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: translateY(-1rem);
  opacity: 0;
  pointer-events: none;
  transition: transform 500ms ease-out, opacity 500ms ease-out;
}

.cinema-mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cinema-mobile-navigation {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cinema-mobile-navigation a {
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  opacity: 0;
  transform: translateX(-1rem);
  transition: transform 500ms ease-out, opacity 500ms ease-out, background 180ms ease;
}

.cinema-mobile-menu.is-open .cinema-mobile-navigation a {
  opacity: 1;
  transform: translateX(0);
}

.cinema-mobile-navigation a:hover {
  background: rgba(31, 41, 55, 0.5);
}

.cinema-mobile-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  border-top: 1px solid #1f2937;
  padding-top: 1rem;
}

.cinema-mobile-actions button:first-child {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.cinema-mobile-profile {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.cinema-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1rem 6rem;
}

.cinema-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 1.25rem;
  max-width: 74rem;
}

.cinema-hero-copy {
  min-width: 0;
}

.cinema-metadata-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
}

.cinema-metadata-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cinema-metadata-row strong {
  font-weight: 500;
}

.cinema-title-stack {
  width: 100%;
  max-width: 48rem;
  margin: 0 0 0.85rem;
}

.cinema-title {
  max-width: 48rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.05rem, 5.4vw, 4rem);
  font-weight: 430;
  line-height: 0.96;
  letter-spacing: -0.058em;
}

.cinema-title-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  margin-left: 8px;
}

.cinema-title-separator {
  display: inline-block;
  width: 1px;
  height: 0.74em;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(0.04em);
}

.cinema-title-subtext {
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 320;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.cinema-title-rule {
  width: 100%;
  height: 1px;
  margin: 0.95rem 0 0;
  background: rgba(255, 255, 255, 0.34);
}

.cinema-description {
  text-shadow: 1px 1px 1px rgba(0,0,0, 0.2);  
  max-width: 48rem;
  margin: 0 0 1.05rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  font-weight: 420;
  line-height: 1.55;
}

.cinema-description span {
  color: #ffffff;
  font-weight: 650;
}

.cinema-resource-row {
  display: flex;
  width: 100%;
  max-width: 76rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.cinema-resource-button {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 9999px;
  padding: 0.75rem 1.35rem;
  border: none;
  color: #ffffff;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cinema-resource-button:hover {
  transform: translateY(-1px) scale(1.02);
}

.cinema-resource-button-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.cinema-resource-button-primary:hover {
  background: #e5e7eb;
}

.argent-test-flow-panel {
  position: relative;
  width: 100%;
  max-width: 64rem;
  margin: 0 0 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(18, 20, 30, 0.58), rgba(8, 8, 12, 0.34));
  -webkit-backdrop-filter: blur(34px) saturate(155%);
  backdrop-filter: blur(34px) saturate(155%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: clamp(1.05rem, 2vw, 1.45rem);
  isolation: isolate;
}

.argent-test-flow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    140deg,
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.26) 18%,
    rgba(255,255,255,0.05) 45%,
    rgba(255,255,255,0.18) 72%,
    rgba(255,255,255,0.56) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.argent-test-flow-panel::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -5rem;
  z-index: -1;
  width: 15rem;
  height: 15rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(48px);
  pointer-events: none;
}

.argent-test-flow-heading-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.argent-test-flow-header p {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.argent-test-flow-header h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.argent-test-flow-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.45rem 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.argent-command-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.argent-command-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.35rem;
  background: rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 34px rgba(0, 0, 0, 0.18);
  padding: 0.95rem;
}

.argent-command-copy {
  min-width: 0;
}

.argent-command-copy > span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.argent-command-card pre {
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.68rem, 1vw, 0.8rem);
  line-height: 1.5;
  white-space: pre;
  overflow-wrap: normal;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.24) rgba(255, 255, 255, 0.055);
}

.argent-command-card-paid pre {
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(0, 0, 0, 0.32);
}

.argent-command-card-paid pre::-webkit-scrollbar {
  height: 0.42rem;
}

.argent-command-card-paid pre::-webkit-scrollbar-track {
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.32);
}

.argent-command-card-paid pre::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.24);
}

.argent-command-card-paid pre::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.34);
}

.argent-command-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.argent-command-card button {
  align-self: center;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  min-width: 4.25rem;
  padding: 0.58rem 0.88rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.argent-command-card button:hover {
  background: #ffffff;
  transform: scale(1.03);
}

.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes blurFadeUp {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.animate-blur-fade-up {
  opacity: 0;
  animation: blurFadeUp 1s ease-out forwards;
}

.cinema-footer {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: -0.01em;
}

@media (max-height: 760px) {
  .cinema-title {
    font-size: clamp(1.4rem, 3.8vw, 2.35rem);
  }

  .cinema-title-stack {
    margin-bottom: 0.7rem;
  }

  .cinema-title-rule {
    margin-top: 0.7rem;
  }

  .cinema-description {
    margin-bottom: 1rem;
  }

  .argent-test-flow-panel {
    padding: 0.9rem;
  }

  .argent-command-card {
    padding: 0.78rem;
  }


  .cinema-resource-button {
    min-height: 2.75rem;
    padding-top: 0.68rem;
    padding-bottom: 0.68rem;
  }
}

@media (min-width: 640px) {
  .cinema-navbar {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .cinema-search-button,
  .cinema-profile-button {
    display: flex;
  }

  .cinema-mobile-actions {
    display: none;
  }

  .cinema-hero-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .cinema-metadata-row {
    gap: 1.25rem;
    font-size: 0.875rem;
  }

  .cinema-metadata-row svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .cinema-resource-row {
    gap: 0.95rem;
  }

  .cinema-resource-button {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media (min-width: 768px) {
  .cinema-navbar {
    padding: 1.5rem 3rem;
  }

  .cinema-logo {
    min-height: 2.5rem;
  }

  .cinema-logo-primary {
    font-size: 1.2rem;
  }

  .cinema-search-button {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .cinema-hero-content {
    padding: 0 3rem 6.5rem;
  }

  .cinema-footer {
    right: 3rem;
    left: 3rem;
  }

  .cinema-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .cinema-metadata-row {
    margin-bottom: 1.5rem;
  }

  .cinema-title-stack {
    margin-bottom: 1rem;
  }

  .cinema-description {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .cinema-desktop-navigation {
    display: flex;
  }

  .cinema-menu-button {
    display: none;
  }

  .cinema-mobile-menu {
    display: none;
  }

  .cinema-hero-layout {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow: auto;
  }

  .cinema-page {
    min-height: 100svh;
    overflow: hidden;
  }

  .cinema-shell {
    min-height: 100svh;
  }

  .cinema-hero-content {
    justify-content: flex-end;
    padding-bottom: 6rem;
  }

  .argent-test-flow-panel {
    max-width: none;
  }

  .argent-command-stack {
    grid-template-columns: minmax(0, 1fr);
  }

  .argent-command-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .argent-command-card button {
    width: 100%;
  }


  .cinema-footer {
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
  }
}

@media (max-width: 420px) {
  .cinema-metadata-row span:nth-child(4) {
    display: none;
  }

  .argent-command-stack,
  .argent-command-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .argent-command-card button {
    width: 100%;
  }


  .cinema-resource-button {
    width: 100%;
  }

  .argent-test-flow-heading-row {
    flex-direction: column;
    gap: 0.65rem;
  }
}


@media (min-width: 1180px) {
  .cinema-resource-row {
    flex-wrap: nowrap;
  }
}
