:root {
  --bg: #f3f1ec;
  --panel: rgba(248, 247, 243, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --ink: #101119;
  --muted: #4e535c;
  --accent: #d6f000;
  --accent-deep: #a2bb00;
  --accent-soft: rgba(214, 240, 0, 0.18);
  --deep-teal: #123744;
  --line: rgba(16, 17, 25, 0.1);
  --shadow: 0 24px 80px rgba(16, 17, 25, 0.12);
  --radius: 32px;
}

@font-face {
  font-family: "Stark";
  src: url("assets/fonts/Stark.OTF") format("opentype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(243, 241, 236, 0.92), rgba(243, 241, 236, 0.97)),
    url("assets/images/gradient-dark-teal.png") center / cover fixed no-repeat,
    linear-gradient(135deg, #eef2ef 0%, #dbe6e3 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
}

body::before {
  width: 34rem;
  height: 34rem;
  top: -10rem;
  right: -8rem;
  background: url("assets/images/circle-neon.png") center / contain no-repeat;
  opacity: 0.44;
  filter: blur(1px);
}

body::after {
  width: 28rem;
  height: 28rem;
  bottom: -7rem;
  left: -5rem;
  background: radial-gradient(circle, rgba(18, 55, 68, 0.22), rgba(18, 55, 68, 0));
  border-radius: 50%;
  filter: blur(16px);
}

.kiosk-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 32px;
  display: grid;
  place-items: center;
}

.screen {
  display: none;
  width: min(1180px, 100%);
  animation: fade-in 220ms ease;
}

.screen.is-active {
  display: block;
}

.screen-splash {
  display: none;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.screen-splash.is-active {
  display: grid;
}

.brand-panel,
.content-panel,
.hero-card {
  background: var(--panel);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-panel,
.content-panel {
  padding: 44px;
}

.hero-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-teal);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Stark", "Avenir Next", Avenir, sans-serif;
  line-height: 0.95;
  font-weight: 400;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  max-width: 8ch;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.9rem;
}

.lede {
  max-width: 34rem;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
  color: var(--muted);
}

.brand-logo {
  display: block;
  width: min(320px, 72%);
  height: auto;
  margin-bottom: 28px;
}

.touch-target,
.primary-button,
.secondary-button,
.option-card,
input,
textarea {
  font: inherit;
}

.primary-button,
.secondary-button,
.option-card {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.primary-button {
  margin-top: 30px;
  background: linear-gradient(135deg, var(--accent), #edf986);
  color: #0d1016;
  box-shadow: 0 16px 36px rgba(214, 240, 0, 0.28);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border: 1px solid rgba(24, 33, 38, 0.08);
}

.primary-button:hover,
.secondary-button:hover,
.option-card:hover {
  transform: translateY(-2px);
}

.option-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.option-card {
  text-align: left;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 245, 241, 0.88));
  border: 1px solid rgba(24, 33, 38, 0.08);
  min-height: 240px;
  box-shadow: 0 18px 42px rgba(47, 38, 24, 0.08);
  position: relative;
  overflow: hidden;
}

.option-card::after {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 240, 0, 0.36), rgba(214, 240, 0, 0));
}

.option-card__title {
  display: block;
  margin-bottom: 14px;
  font-family: "Stark", "Avenir Next", Avenir, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.option-card__body {
  display: block;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--muted);
}

.content-panel--split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.feature-list {
  margin: 22px 0 0;
  padding-left: 1.2rem;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.55;
}

.action-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.qr-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 55, 68, 0.98), rgba(25, 31, 39, 0.98));
  border: 1px solid var(--line);
  text-align: center;
}

.qr-panel img {
  width: min(280px, 100%);
  height: auto;
  border-radius: 24px;
  background: white;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(31, 31, 31, 0.08);
}

.qr-panel--membership img {
  width: min(420px, 100%);
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.qr-caption {
  margin: 16px 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.contact-form label:last-of-type {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 33, 38, 0.12);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(232, 111, 42, 0.26);
  border-color: var(--accent);
}

.form-success {
  margin-top: 28px;
  padding: 28px;
  background: rgba(248, 247, 243, 0.92);
  border-radius: 24px;
  border: 1px solid var(--line);
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-card__image {
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: 28px;
  min-height: 480px;
  background:
    linear-gradient(180deg, rgba(12, 16, 19, 0.18), rgba(12, 16, 19, 0.32)),
    url("assets/images/group-class-studio.webp") center / cover no-repeat;
}

.hero-card__copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.idle-indicator {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(16, 17, 25, 0.88);
  color: white;
  backdrop-filter: blur(12px);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .kiosk-shell {
    padding: 20px;
  }

  .screen-splash,
  .content-panel--split,
  .option-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 360px;
  }

  .brand-panel,
  .content-panel {
    padding: 30px;
  }

  .option-card {
    min-height: auto;
  }

  .idle-indicator {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
