:root {
  --bg: #09111e;
  --bg-soft: #101b2e;
  --panel: rgba(14, 26, 43, 0.82);
  --panel-strong: #132239;
  --panel-muted: rgba(24, 41, 67, 0.88);
  --text: #f7f6f1;
  --muted: #a8b7c9;
  --line: rgba(255, 255, 255, 0.1);
  --warm: #ff845c;
  --mint: #30d1a7;
  --gold: #f6c453;
  --shadow: 0 24px 80px rgba(1, 8, 19, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: min(1120px, calc(100vw - 32px));
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 132, 92, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(48, 209, 167, 0.18), transparent 22%),
    linear-gradient(180deg, #09111e 0%, #0d1626 56%, #09111e 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 88%);
  pointer-events: none;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.topline {
  padding: 10px 16px;
  text-align: center;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbe4ef;
  background: rgba(6, 12, 22, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(9, 17, 30, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark,
.gate-mark,
.team-avatar {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
}

.brand-mark {
  width: 48px;
  height: 48px;
  font-size: 1rem;
  color: #08111d;
  background: linear-gradient(135deg, var(--warm), var(--gold));
  box-shadow: 0 10px 26px rgba(246, 196, 83, 0.24);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.footer-kicker,
h1,
h2,
h3 {
  font-family: var(--font-display);
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 320px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 11px 14px;
}

main {
  padding: 34px 0 72px;
}

section {
  margin-bottom: 28px;
}

.hero-section,
.split-section,
.page-hero,
.cta-panel,
.contact-card,
.metric-card,
.studio-panel,
.planner-panel,
.planner-form,
.team-card,
.responsible-card,
.faq-item,
.legal-section,
.gate-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-section {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.split-section,
.page-hero,
.cta-panel,
.legal-section {
  background: linear-gradient(180deg, rgba(19, 34, 57, 0.78), rgba(10, 20, 34, 0.92));
  border-radius: var(--radius-xl);
  padding: 34px;
}

.hero-copy h1,
.page-hero h1,
.gate-card h1,
.legal-section h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.hero-summary,
.page-hero__copy p,
.legal-copy p,
.legal-copy li {
  color: #d7e1ec;
  font-size: 1.02rem;
  line-height: 1.7;
}

.eyebrow,
.studio-kicker,
.reel-label,
.footer-label {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-actions,
.gate-actions,
.cookie-banner__actions,
.cookie-modal__actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--warm), #ff9b52);
  color: #09111e;
}

.button-ghost,
.button-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.signal-list,
.gate-points,
.compact-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: #d9e4ef;
  line-height: 1.75;
}

.hero-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 132, 92, 0.22), transparent 24%),
    radial-gradient(circle at 75% 16%, rgba(48, 209, 167, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(18, 32, 53, 0.98), rgba(9, 17, 30, 0.96));
}

.signal-stage {
  height: 100%;
  min-height: 500px;
  padding: 34px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  position: relative;
}

.signal-stage::before,
.signal-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.64;
}

.signal-stage::before {
  width: 160px;
  height: 160px;
  top: 22px;
  right: 38px;
  background: rgba(255, 132, 92, 0.28);
}

.signal-stage::after {
  width: 120px;
  height: 120px;
  bottom: 48px;
  left: 48px;
  background: rgba(48, 209, 167, 0.26);
}

.signal-chip {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.signal-chip--warm {
  background: rgba(255, 132, 92, 0.18);
  color: #ffc7b3;
}

.signal-chip--mint {
  justify-self: end;
  background: rgba(48, 209, 167, 0.18);
  color: #c7fff0;
}

.reel-stack {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.reel-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.reel-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.reel-card p,
.studio-panel p,
.metric-card p,
.planner-note,
.team-card p,
.responsible-card p,
.faq-answer p,
.footer-copy,
.footer-grid p {
  margin: 0;
  color: #d0dceb;
  line-height: 1.7;
}

.reel-card--highlight {
  background: linear-gradient(135deg, rgba(255, 132, 92, 0.18), rgba(16, 27, 46, 0.92));
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.mini-stats div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(9, 17, 30, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-stats strong,
.planner-stats strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.mini-stats span,
.planner-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.split-section,
.page-hero,
.cta-panel {
  display: grid;
  gap: 24px;
}

.split-section {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-section h2,
.section-heading h2,
.cta-panel h2,
.contact-card h2,
.responsible-card h2,
.studio-panel h3,
.legal-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  line-height: 1.14;
}

.band-section {
  padding: 8px 0;
}

.band-grid,
.team-grid,
.contact-grid,
.responsible-grid,
.timeline-grid {
  display: grid;
  gap: 18px;
}

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

.metric-card,
.contact-card,
.team-card,
.responsible-card,
.faq-item,
.planner-panel,
.planner-form,
.studio-panel {
  background: linear-gradient(180deg, rgba(17, 29, 47, 0.9), rgba(10, 18, 31, 0.96));
  border-radius: var(--radius-lg);
  padding: 24px;
}

.metric-card span {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.metric-card h3,
.team-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.interactive-section .section-heading,
.planner-section .section-heading,
.process-section .section-heading,
.team-preview .section-heading,
.faq-section .section-heading,
.form-section .section-heading {
  margin-bottom: 18px;
}

.section-heading p:last-child {
  color: var(--muted);
  max-width: 760px;
  line-height: 1.7;
}

.studio-grid,
.planner-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.studio-grid {
  grid-template-columns: 0.38fr 0.62fr;
}

.studio-tabs {
  display: grid;
  gap: 10px;
}

.studio-tab {
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.studio-tab:hover,
.studio-tab.is-active {
  transform: translateX(4px);
  background: rgba(255, 132, 92, 0.12);
  border-color: rgba(255, 132, 92, 0.34);
}

.studio-meta {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
}

.studio-meta dt {
  margin-bottom: 6px;
  color: #f0bb74;
  font-weight: 700;
}

.studio-meta dd {
  margin: 0;
  color: #d6e0eb;
  line-height: 1.65;
}

.planner-grid {
  grid-template-columns: 0.46fr 0.54fr;
}

.planner-form label,
.contact-form label {
  display: grid;
  gap: 10px;
}

.planner-form small,
.helper-row,
.form-status {
  color: var(--muted);
}

.planner-form input[type="range"] {
  width: 100%;
  accent-color: var(--warm);
}

.planner-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 15px 16px;
}

.planner-form select option,
.contact-form select option {
  color: #08111d;
}

.planner-meter {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.planner-meter span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--warm), var(--mint));
  transition: width 0.25s ease;
}

.planner-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 20px;
}

.planner-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.timeline-grid article {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 29, 47, 0.9), rgba(10, 18, 31, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.timeline-grid p {
  margin: 0;
  color: #cfdae8;
  line-height: 1.68;
}

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

.team-avatar {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: #08111d;
  background: linear-gradient(135deg, var(--mint), #7de7cb);
  box-shadow: 0 14px 28px rgba(48, 209, 167, 0.22);
}

.team-role {
  margin-bottom: 10px !important;
  color: #ffcfbe !important;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding-top: 16px;
}

.faq-answer.is-open {
  display: block;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.cta-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cta-meta {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.page-hero {
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
}

.compact-hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

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

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 29, 47, 0.9), rgba(10, 18, 31, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.helper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.5;
}

.checkline {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
}

.checkline input {
  width: auto;
  margin-top: 3px;
}

.legal-section {
  padding: 36px;
}

.legal-copy {
  display: grid;
  gap: 8px;
}

.legal-copy h2 {
  margin-top: 24px;
}

.site-footer {
  padding: 0 0 36px;
}

.footer-grid {
  grid-template-columns: 1.05fr 1fr 0.8fr 0.8fr;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(17, 29, 47, 0.84), rgba(10, 18, 31, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.footer-copy,
.footer-grid p {
  font-size: 0.96rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(8, 15, 27, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.cookie-banner__text p {
  margin: 6px 0 0;
  color: #d4dfec;
  line-height: 1.6;
}

.cookie-modal[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 15, 0.68);
}

.cookie-modal__panel {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(19, 34, 57, 0.98), rgba(10, 20, 34, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.cookie-modal__panel h2 {
  margin-top: 0;
}

.gate-body {
  display: grid;
  place-items: center;
}

.gate-shell {
  width: min(760px, calc(100vw - 32px));
  margin: 36px auto;
}

.gate-shell--contained {
  margin-top: 24px;
}

.gate-card {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(19, 34, 57, 0.92), rgba(10, 20, 34, 0.98));
}

.gate-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  color: #08111d;
  background: linear-gradient(135deg, var(--gold), var(--warm));
  font-size: 1.1rem;
}

.gate-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
}

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

.home-body::before,
.contact-body::before,
.responsible-body::before,
.legal-body::before,
.gate-body::before {
  display: none;
}

.home-body,
.contact-body,
.responsible-body,
.legal-body,
.gate-body {
  background:
    radial-gradient(circle at top left, rgba(255, 132, 92, 0.12), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(48, 209, 167, 0.1), transparent 16%),
    linear-gradient(180deg, #08111b 0%, #0b1420 48%, #0d1724 100%);
}

.site-header {
  backdrop-filter: blur(14px);
  background: rgba(8, 14, 24, 0.9);
}

.brand-mark,
.gate-mark,
.team-avatar {
  border-radius: 14px;
}

.brand-mark,
.team-avatar {
  box-shadow: none;
}

.site-nav {
  gap: 22px;
}

.site-nav a {
  padding: 10px 0 12px;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  color: #b8c6d6;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 132, 92, 0.8);
}

.menu-toggle {
  border-radius: 8px;
  padding: 11px 16px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.button-primary {
  background: linear-gradient(135deg, #ff9464, #f4b15f);
}

.button-ghost,
.button-outline {
  background: rgba(255, 255, 255, 0.02);
}

.hero-section,
.split-section,
.page-hero,
.cta-panel,
.contact-card,
.metric-card,
.studio-panel,
.planner-panel,
.planner-form,
.team-card,
.responsible-card,
.faq-item,
.legal-section,
.gate-card,
.contact-form {
  box-shadow: none;
}

.hero-section {
  gap: 42px;
  margin-bottom: 44px;
}

.hero-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 18px 0 24px;
}

.hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 132, 92, 0.16), transparent 18%),
    radial-gradient(circle at 78% 20%, rgba(48, 209, 167, 0.14), transparent 18%),
    linear-gradient(160deg, rgba(16, 27, 44, 0.98), rgba(8, 14, 24, 0.98));
}

.signal-stage {
  padding: 30px;
}

.signal-stage::before,
.signal-stage::after {
  filter: blur(30px);
  opacity: 0.42;
}

.signal-chip {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.76rem;
}

.reel-card {
  border-radius: 10px;
  background: rgba(7, 14, 24, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.reel-card--highlight {
  background: linear-gradient(135deg, rgba(255, 132, 92, 0.14), rgba(9, 17, 30, 0.96));
}

.mini-stats div {
  border-radius: 8px;
  background: rgba(8, 14, 24, 0.5);
}

.split-section,
.page-hero,
.cta-panel,
.legal-section {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 28px 0 0;
}

.band-section {
  padding: 22px 0 6px;
}

.band-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-card {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 28px 22px;
}

.metric-card:last-child {
  border-right: 0;
}

.metric-card span {
  margin-bottom: 14px;
}

.studio-panel,
.planner-panel,
.planner-form,
.team-card,
.contact-card,
.responsible-card,
.faq-item,
.contact-form {
  background: rgba(11, 18, 30, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.studio-tab {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.studio-tab:hover,
.studio-tab.is-active {
  transform: none;
  background: rgba(255, 132, 92, 0.08);
}

.planner-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.planner-meter,
.planner-meter span {
  border-radius: 3px;
}

.planner-stats div,
.timeline-grid article {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.timeline-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  padding: 20px 22px;
}

.cta-meta .button {
  margin-top: 8px;
}

.footer-grid {
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  padding: 30px 0 0;
}

.cookie-banner {
  border-radius: 10px;
}

.cookie-modal__panel,
.gate-card {
  border-radius: 12px;
}

.gate-mark--logo {
  width: 104px;
  height: auto;
  padding: 0;
  background: transparent;
}

.gate-mark--logo img,
.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

/* Editorial premium pass */
.topline {
  padding: 12px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

main {
  padding: 56px 0 108px;
}

section {
  margin-bottom: 76px;
}

.header-inner {
  align-items: flex-start;
  padding: 24px 0 20px;
}

.brand-mark {
  width: 88px;
  height: auto;
  padding: 0;
  background: transparent;
}

.brand-copy {
  gap: 6px;
  padding-top: 4px;
}

.brand-copy strong {
  font-size: 1.18rem;
  line-height: 1;
}

.brand-copy small {
  max-width: 390px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-nav {
  padding-top: 6px;
}

.hero-section {
  border: 0;
  margin-bottom: 36px;
  align-items: start;
}

.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3.7rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-summary {
  max-width: 720px;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 32px;
}

.signal-list {
  margin-top: 34px;
  max-width: 720px;
}

.hero-visual--editorial {
  padding: 22px;
  display: grid;
  gap: 18px;
  align-content: end;
}

.hero-photo-frame,
.feature-media {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 24, 0.72);
}

.hero-photo-frame {
  min-height: 420px;
}

.hero-photo-frame img,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 10px;
  background: rgba(8, 14, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-note-label {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-note-panel strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 0.98;
}

.hero-note-panel p:last-child {
  margin: 0;
  color: #d0dceb;
  line-height: 1.7;
}

.mini-stats--overlay {
  padding-top: 2px;
}

.editorial-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: stretch;
}

.feature-media {
  min-height: 540px;
}

.feature-copy {
  padding: 38px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(11, 18, 30, 0.42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.feature-copy h2 {
  margin: 0 0 18px;
  max-width: 720px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.feature-copy p {
  margin: 0;
  color: #d0dceb;
  line-height: 1.75;
}

.feature-list {
  margin-top: 24px;
}
.split-section,
.page-hero,
.cta-panel,
.legal-section {
  padding-top: 40px;
}

.section-heading h2 {
  max-width: 880px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.metric-card {
  padding-top: 36px;
  padding-bottom: 34px;
}

.metric-card h3 {
  font-size: 1.84rem;
  line-height: 1;
}

.studio-panel,
.planner-panel,
.planner-form,
.team-card,
.contact-card,
.responsible-card,
.faq-item,
.contact-form {
  background: rgba(11, 18, 30, 0.42);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.studio-tab {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.planner-panel {
  padding: 30px;
}

.timeline-grid article {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0 0;
}

.team-card,
.contact-card,
.responsible-card {
  padding: 30px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-card h3 {
  font-size: 1.55rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.game-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(11, 18, 30, 0.42);
}

.game-card--live {
  grid-column: span 2;
}

.game-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.game-card h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.game-link {
  flex-shrink: 0;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f2b06b;
}

.game-card__summary {
  margin: 0 0 18px;
  max-width: 780px;
  color: #d0dceb;
  line-height: 1.7;
}

.game-frame {
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 132, 92, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(7, 14, 24, 0.96), rgba(10, 18, 31, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.game-card--live .game-frame {
  min-height: 520px;
}

.game-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.game-placeholder {
  min-height: inherit;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
}

.game-placeholder p {
  margin: 0;
  max-width: 320px;
  color: #d0dceb;
  line-height: 1.7;
}

.faq-question {
  font-size: 1.2rem;
}

.footer-grid {
  padding-top: 36px;
}

.is-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-section,
  .split-section,
  .editorial-feature,
  .studio-grid,
  .planner-grid,
  .games-grid,
  .page-hero,
  .cta-panel,
  .band-grid,
  .contact-grid,
  .responsible-grid,
  .footer-grid,
  .timeline-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual,
  .split-section,
  .page-hero,
  .cta-panel,
  .legal-section {
    padding: 26px 0 0;
  }

  .mini-stats,
  .planner-stats,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual--editorial {
    padding: 18px;
  }

  .hero-photo-frame,
  .feature-media {
    min-height: 320px;
  }

  .footer-grid {
    gap: 18px;
  }

  .metric-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
  }

  .metric-card:last-child {
    border-bottom: 0;
  }

  .game-card--live {
    grid-column: span 1;
  }

  .game-card--live .game-frame {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 10px;
    background: rgba(9, 17, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-radius: 0;
  }

  .brand-mark {
    width: 70px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .gate-card,
  .contact-form,
  .planner-form,
  .planner-panel,
  .metric-card,
  .feature-copy,
  .team-card,
  .responsible-card,
  .faq-item,
  .studio-panel,
  .contact-card {
    padding: 20px;
  }

  .hero-copy h1,
  .page-hero h1,
  .gate-card h1,
  .legal-section h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  section {
    margin-bottom: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
