:root {
  --poker-grid-line: rgba(108, 244, 255, 0.07);
}

.poker-page {
  position: relative;
  overflow: clip;
  background: var(--color-void-black);
}

.poker-page .poker-section {
  position: relative;
  isolation: isolate;
}

.poker-page .poker-section--violet {
  background-color: var(--color-deep-violet);
}

.poker-page .poker-section--grid::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(var(--poker-grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--poker-grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

.poker-page .poker-section__inner {
  width: min(100% - (var(--gutter) * 2), var(--container-max));
  margin-inline: auto;
}

.poker-page .poker-eyebrow {
  margin: 0;
}

.poker-page .poker-section-heading {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.poker-page .poker-section-heading h2,
.poker-page .poker-section-heading p {
  margin: 0;
}

.poker-page .poker-rule {
  width: 56px;
  height: 1px;
  background: var(--color-electric-cyan);
  box-shadow: var(--shadow-glow);
}

.poker-page .poker-link-arrow::after {
  margin-left: var(--space-2);
  color: var(--color-electric-cyan);
  content: "›";
  transition: transform var(--transition-fast);
}

.poker-page .poker-link-arrow:hover::after,
.poker-page .poker-link-arrow:focus-visible::after {
  display: inline-block;
  transform: translateX(4px);
}

.poker-page .poker-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: end;
  overflow: hidden;
  background: var(--color-void-black);
}

.poker-page .poker-hero__image,
.poker-page .poker-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poker-page .poker-hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.poker-page .poker-hero__veil {
  z-index: -2;
  background:
    radial-gradient(circle at 75% 26%, rgba(255, 79, 163, 0.16), transparent 28%),
    radial-gradient(circle at 63% 70%, rgba(108, 244, 255, 0.12), transparent 33%),
    linear-gradient(90deg, rgba(8, 7, 13, 0.83) 0%, rgba(8, 7, 13, 0.42) 52%, rgba(23, 16, 43, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 7, 13, 0.88) 0%, rgba(8, 7, 13, 0.18) 58%, rgba(8, 7, 13, 0.48) 100%);
}

.poker-page .poker-hero__grid {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 44%;
  opacity: 0.45;
  background-image: linear-gradient(var(--poker-grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--poker-grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.poker-page .poker-hero__inner {
  display: grid;
  width: min(100% - (var(--gutter) * 2), var(--container-max));
  min-width: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-5);
  margin-inline: auto;
  padding-block: var(--space-8);
}

.poker-page .poker-hero__panel {
  display: flex;
  min-width: 0;
  grid-column: 8 / -1;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  border: var(--border-active);
  background: rgba(34, 20, 58, 0.9);
  box-shadow: var(--shadow-panel), var(--shadow-glow);
}

.poker-page .poker-hero__panel h1,
.poker-page .poker-hero__panel p {
  margin: 0;
}

.poker-page .poker-hero__microline {
  color: var(--color-electric-cyan) !important;
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.poker-page .poker-hero__panel h1 {
  max-width: 16ch;
  font-size: var(--text-hero);
  line-height: var(--leading-hero);
}

.poker-page .poker-hero__lead {
  max-width: 44ch;
  color: var(--color-text-secondary);
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
}

.poker-page .poker-status-rail {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.poker-page .poker-status-rail > * {
  min-width: 0;
}

.poker-page .poker-hero__actions {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.poker-page .poker-hero__actions > * {
  min-width: 0;
}

.poker-page .poker-hero__note {
  max-width: 48ch;
  color: var(--color-text-muted) !important;
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
}

.poker-page .poker-values {
  padding-block: var(--section-space);
}

.poker-page .poker-values__layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--space-7);
  align-items: start;
}

.poker-page .poker-values__intro {
  min-width: 0;
}

.poker-page .poker-values__intro .lead {
  max-width: 58ch;
}

.poker-page .poker-values__cards {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  align-items: start;
}

.poker-page .poker-value-card {
  display: flex;
  min-width: 0;
  min-height: 294px;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  transition: border-color var(--transition-panel), background-color var(--transition-panel), box-shadow var(--transition-panel);
}

.poker-page .poker-value-card:nth-child(2) {
  margin-top: var(--space-5);
}

.poker-page .poker-value-card:nth-child(3) {
  margin-top: var(--space-3);
}

.poker-page .poker-value-card--pink::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--color-signal-pink);
  border-right: 1px solid var(--color-signal-pink);
  content: "";
}

.poker-page .poker-value-card h3,
.poker-page .poker-value-card p {
  margin: 0;
}

.poker-page .poker-value-card h3 {
  max-width: 16ch;
}

.poker-page .poker-value-card p:not(.meta) {
  max-width: 32ch;
}

.poker-page .poker-card-reveal {
  margin-top: auto !important;
  color: var(--color-electric-cyan) !important;
  opacity: 0.55;
  transition: opacity var(--transition-fast);
}

.poker-page .poker-value-card:hover,
.poker-page .poker-value-card:focus-within {
  border-color: var(--color-electric-cyan);
  background: rgba(43, 27, 70, 0.94);
  box-shadow: var(--shadow-panel), var(--shadow-glow);
}

.poker-page .poker-value-card:hover .poker-card-reveal,
.poker-page .poker-value-card:focus-within .poker-card-reveal {
  opacity: 1;
}

.poker-page .poker-rhythm {
  padding-block: var(--section-space);
}

.poker-page .poker-rhythm__layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 5fr) minmax(0, 1fr) minmax(0, 6fr);
  gap: var(--space-5);
  align-items: center;
}

.poker-page .poker-rhythm__copy,
.poker-page .poker-rhythm__media,
.poker-page .poker-rhythm__rail {
  min-width: 0;
}

.poker-page .poker-rhythm__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.poker-page .poker-rhythm__copy h2,
.poker-page .poker-rhythm__copy p,
.poker-page .poker-rhythm__copy blockquote {
  margin: 0;
}

.poker-page .poker-rhythm__copy > p {
  max-width: 52ch;
}

.poker-page .poker-rhythm__copy blockquote {
  max-width: 38ch;
}

.poker-page .poker-rhythm__rail {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  border-left: 1px solid var(--color-electric-cyan);
  padding-left: var(--space-3);
}

.poker-page .poker-rhythm__rail p {
  margin: 0;
  max-width: 24ch;
  color: var(--color-text-muted);
  font-size: var(--text-caption);
}

.poker-page .poker-rhythm__rail-list {
  display: grid;
  gap: var(--space-2);
  margin: 0;
}

.poker-page .poker-rhythm__rail-list li {
  color: var(--color-electric-cyan);
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.poker-page .poker-rhythm__media {
  margin: 0;
  overflow: hidden;
  border: var(--border-subtle);
}

.poker-page .poker-rhythm__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.poker-page .poker-moods {
  padding-block: var(--section-space);
}

.poker-page .poker-moods__heading {
  width: min(100%, 60ch);
}

.poker-page .poker-moods__heading p:last-child {
  max-width: 60ch;
}

.poker-page .poker-mood-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.poker-page .poker-mood-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  border: var(--border-subtle);
  background: rgba(23, 16, 43, 0.55);
  padding: var(--space-5);
  transition: border-color var(--transition-panel), background-color var(--transition-panel), box-shadow var(--transition-panel);
}

.poker-page .poker-mood-card::before {
  width: 62px;
  height: 3px;
  background: var(--color-electric-cyan);
  content: "";
}

.poker-page .poker-mood-card:nth-child(2)::before {
  width: 44px;
  background: var(--color-line-violet);
}

.poker-page .poker-mood-card:nth-child(3)::before {
  width: 26px;
  background: var(--color-signal-pink);
}

.poker-page .poker-mood-card h3,
.poker-page .poker-mood-card p {
  margin: 0;
}

.poker-page .poker-mood-card h3 {
  max-width: 18ch;
}

.poker-page .poker-mood-card > p {
  max-width: 38ch;
}

.poker-page .poker-mood-meta {
  display: grid;
  width: 100%;
  gap: var(--space-2);
  margin: 0;
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: var(--border-subtle);
}

.poker-page .poker-mood-meta li {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.poker-page .poker-mood-card .button-secondary {
  width: 100%;
  margin-top: var(--space-2);
}

.poker-page .poker-mood-card:hover,
.poker-page .poker-mood-card:focus-within {
  border-color: var(--color-electric-cyan);
  background: rgba(34, 20, 58, 0.9);
  box-shadow: var(--shadow-glow);
}

.poker-page .poker-mood-card:hover .poker-mood-meta,
.poker-page .poker-mood-card:focus-within .poker-mood-meta {
  border-color: rgba(108, 244, 255, 0.62);
}

.poker-page .poker-path {
  padding-block: var(--section-space);
}

.poker-page .poker-path__layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: var(--space-7);
  align-items: start;
}

.poker-page .poker-path__heading {
  min-width: 0;
}

.poker-page .poker-path__heading p:last-child {
  max-width: 54ch;
}

.poker-page .poker-path__steps {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(154px, 1fr);
  gap: var(--space-3);
  align-items: stretch;
}

.poker-page .poker-path-step,
.poker-page .poker-path-cta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  border-top: 1px solid var(--color-line-violet);
  padding: var(--space-4) 0 0;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.poker-page .poker-path-step:focus-within {
  border-color: var(--color-electric-cyan);
}

.poker-page .poker-path-step h3,
.poker-page .poker-path-step p,
.poker-page .poker-path-cta p {
  margin: 0;
}

.poker-page .poker-path-step h3 {
  font-size: 1.2rem;
}

.poker-page .poker-path-step p {
  max-width: 35ch;
  font-size: 0.9375rem;
}

.poker-page .poker-path-cta {
  justify-content: center;
  border: var(--border-active);
  background: rgba(34, 20, 58, 0.7);
  padding: var(--space-4);
}

.poker-page .poker-path-cta p {
  max-width: 25ch;
  color: var(--color-text-secondary);
  font-size: var(--text-caption);
}

.poker-page .poker-path-cta .button {
  width: 100%;
}

.poker-page .poker-format {
  padding-block: var(--section-space);
}

.poker-page .poker-format__heading {
  width: min(100%, 58ch);
}

.poker-page .poker-format__heading p:last-child {
  max-width: 58ch;
}

.poker-page .poker-format-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-7);
}

.poker-page .poker-format-card {
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
}

.poker-page .poker-format-card h3,
.poker-page .poker-format-card p {
  margin: 0;
}

.poker-page .poker-format-card h3 {
  max-width: 16ch;
}

.poker-page .poker-format-card > p {
  max-width: 34ch;
}

.poker-page .poker-format-list {
  display: grid;
  width: 100%;
  gap: var(--space-2);
  margin: 0;
  margin-top: auto;
}

.poker-page .poker-format-list li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: var(--space-2);
  color: var(--color-text-secondary);
  font-size: var(--text-caption);
}

.poker-page .poker-format-list li::before {
  width: 5px;
  height: 5px;
  margin-top: 0.45em;
  background: var(--color-electric-cyan);
  box-shadow: 0 0 8px rgba(108, 244, 255, 0.55);
  content: "";
}

.poker-page .poker-format-card--offline {
  border-color: rgba(185, 255, 114, 0.58);
  background: rgba(28, 47, 34, 0.22);
}

.poker-page .poker-format-card--offline .meta {
  color: var(--color-signal-green);
}

.poker-page .poker-format-card:focus-within {
  border-color: var(--color-electric-cyan);
  box-shadow: var(--shadow-glow);
}

.poker-page .poker-host {
  padding-block: var(--section-space);
}

.poker-page .poker-host__layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 5fr) minmax(0, 1fr) minmax(0, 6fr);
  gap: var(--space-5);
  align-items: start;
}

.poker-page .poker-host__copy,
.poker-page .poker-host__media {
  min-width: 0;
}

.poker-page .poker-host__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.poker-page .poker-host__copy h2,
.poker-page .poker-host__copy p {
  margin: 0;
}

.poker-page .poker-host__copy > p {
  max-width: 50ch;
}

.poker-page .poker-host__media {
  grid-column: 3;
  grid-row: 1;
  margin: calc(var(--space-7) * -1) 0 0;
  overflow: hidden;
  border: var(--border-subtle);
}

.poker-page .poker-host__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.poker-page .poker-accordion {
  display: grid;
  width: 100%;
  gap: var(--space-3);
}

.poker-page .poker-accordion details {
  min-width: 0;
  border: var(--border-subtle);
  background: rgba(23, 16, 43, 0.64);
  transition: border-color var(--transition-panel), background-color var(--transition-panel), box-shadow var(--transition-panel);
}

.poker-page .poker-accordion details[open] {
  border-left-color: var(--color-electric-cyan);
  background: rgba(34, 20, 58, 0.9);
  box-shadow: var(--shadow-glow);
}

.poker-page .poker-accordion summary {
  display: grid;
  min-width: 0;
  min-height: 44px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-primary);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
  list-style: none;
}

.poker-page .poker-accordion summary::-webkit-details-marker {
  display: none;
}

.poker-page .poker-accordion summary::after {
  color: var(--color-electric-cyan);
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.25rem;
}

.poker-page .poker-accordion details[open] summary::after {
  content: "−";
}

.poker-page .poker-accordion__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0 var(--space-4) var(--space-4);
}

.poker-page .poker-accordion__content p {
  margin: 0;
  max-width: 42ch;
}

.poker-page .poker-assurance {
  padding-block: var(--section-space);
}

.poker-page .poker-assurance__layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: var(--space-7);
  align-items: center;
}

.poker-page .poker-assurance__statement {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.poker-page .poker-assurance__statement h2,
.poker-page .poker-assurance__statement p {
  margin: 0;
}

.poker-page .poker-assurance__statement h2 {
  max-width: 21ch;
}

.poker-page .poker-assurance__statement > p:last-child {
  max-width: 40ch;
}

.poker-page .poker-assurance__facts {
  display: grid;
  min-width: 0;
  gap: var(--space-3);
}

.poker-page .poker-assurance-fact {
  display: grid;
  min-width: 0;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: var(--space-3);
  border-left: 1px solid rgba(185, 255, 114, 0.42);
  padding: var(--space-3) var(--space-4);
  background: rgba(8, 7, 13, 0.2);
}

.poker-page .poker-assurance-fact::before {
  width: 7px;
  height: 7px;
  margin-top: 0.5em;
  border-radius: 50%;
  background: var(--color-signal-green);
  box-shadow: 0 0 8px rgba(185, 255, 114, 0.56);
  content: "";
}

.poker-page .poker-assurance-fact h3,
.poker-page .poker-assurance-fact p {
  margin: 0;
}

.poker-page .poker-assurance-fact h3 {
  margin-bottom: var(--space-1);
  font-size: 1rem;
}

.poker-page .poker-assurance-fact p {
  max-width: 36ch;
  font-size: var(--text-caption);
}

.poker-page .poker-closing {
  padding-block: var(--section-space);
}

.poker-page .poker-closing__panel {
  display: flex;
  width: min(100%, 800px);
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  margin-inline: auto;
  border-color: var(--color-line-violet);
  padding: var(--space-7);
}

.poker-page .poker-closing__panel h2,
.poker-page .poker-closing__panel p {
  margin: 0;
}

.poker-page .poker-closing__panel h2 {
  max-width: 22ch;
}

.poker-page .poker-closing__summary {
  max-width: 52ch;
}

.poker-page .poker-closing__panel .button {
  min-width: 220px;
}

.poker-page .poker-related {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin: 0;
  padding-top: var(--space-5);
  border-top: var(--border-subtle);
}

.poker-page .poker-related li {
  min-width: 0;
}

.poker-page .poker-related a {
  display: flex;
  min-width: 0;
  min-height: 44px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-1);
  color: var(--color-text-primary);
  text-decoration: none;
}

.poker-page .poker-related strong {
  color: var(--color-electric-cyan);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
}

.poker-page .poker-related span {
  color: var(--color-text-muted);
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
}

.poker-page .poker-related a:hover strong,
.poker-page .poker-related a:focus-visible strong {
  color: var(--color-text-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-electric-cyan);
  text-underline-offset: 0.22em;
}

@media (max-width: 980px) {
  .poker-page .poker-hero__panel {
    grid-column: 7 / -1;
  }

  .poker-page .poker-values__layout,
  .poker-page .poker-path__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .poker-page .poker-values__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .poker-page .poker-path__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .poker-page .poker-path-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .poker-page .poker-mood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poker-page .poker-mood-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .poker-page .poker-host__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .poker-page .poker-host__media {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
  }

  .poker-page .poker-host__copy {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 820px) {
  .poker-page .poker-assurance__layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  .poker-page .poker-rhythm__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .poker-page .poker-rhythm__media {
    grid-column: 1;
    grid-row: 1;
  }

  .poker-page .poker-rhythm__rail {
    flex-direction: row;
    align-self: auto;
    align-items: center;
    gap: var(--space-4);
    border-top: 1px solid var(--color-electric-cyan);
    border-left: 0;
    padding-top: var(--space-3);
    padding-left: 0;
  }

  .poker-page .poker-rhythm__rail p {
    max-width: none;
  }

  .poker-page .poker-rhythm__rail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .poker-page .poker-rhythm__copy {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (max-width: 760px) {
  .poker-page .poker-values__cards,
  .poker-page .poker-format-grid,
  .poker-page .poker-related {
    grid-template-columns: minmax(0, 1fr);
  }

  .poker-page .poker-value-card:nth-child(2),
  .poker-page .poker-value-card:nth-child(3) {
    margin-top: 0;
  }

  .poker-page .poker-value-card {
    min-height: 0;
  }

  .poker-page .poker-closing__panel {
    padding: var(--space-5);
  }
}

@media (max-width: 700px) {
  .poker-page .poker-section--grid::before {
    background-size: 24px 24px;
  }

  .poker-page .poker-hero {
    min-height: 650px;
  }

  .poker-page .poker-hero__image {
    object-position: 60% center;
  }

  .poker-page .poker-hero__veil {
    background:
      linear-gradient(0deg, rgba(8, 7, 13, 0.96) 0%, rgba(8, 7, 13, 0.72) 42%, rgba(8, 7, 13, 0.12) 73%),
      linear-gradient(90deg, rgba(23, 16, 43, 0.28), rgba(8, 7, 13, 0.08));
  }

  .poker-page .poker-hero__inner {
    display: flex;
    width: min(100% - (var(--gutter) * 2), var(--container-max));
    min-height: 650px;
    align-items: end;
    padding-block: var(--space-4);
  }

  .poker-page .poker-hero__panel {
    width: 100%;
    padding: var(--space-5);
  }

  .poker-page .poker-hero__panel h1 {
    max-width: 17ch;
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .poker-page .poker-hero__actions {
    flex-direction: column;
  }

  .poker-page .poker-hero__actions > * {
    width: 100%;
  }

  .poker-page .poker-mood-grid,
  .poker-page .poker-path__steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .poker-page .poker-mood-card:first-child,
  .poker-page .poker-path-cta {
    grid-column: auto;
  }

  .poker-page .poker-mood-card {
    min-height: 0;
  }

  .poker-page .poker-path__steps {
    gap: var(--space-4);
    border-left: 1px solid var(--color-electric-cyan);
    padding-left: var(--space-4);
  }

  .poker-page .poker-path-step,
  .poker-page .poker-path-cta {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .poker-page .poker-rhythm__rail {
    display: grid;
    gap: var(--space-3);
  }

  .poker-page .poker-rhythm__rail-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .poker-page .poker-closing__panel .button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poker-page *,
  .poker-page *::before,
  .poker-page *::after {
    transition: none !important;
  }
}
