:root {
  --black: #0a0a0a;
  --dark: #111111;
  --panel: #1a1a1a;
  --border: #2a2a2a;
  --orange: #E87722;
  --blue: #1e90e0;
  --white: #f5f5f5;
  --grey: #888888;
  --light: #cccccc;
  --yellow: #F5C518;
  --radius: 36px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header {
  padding: 48px 24px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}

h1 span {
  color: var(--orange);
}

.tagline {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
}

/* ── STICKY TAB BAR ── */
.tab-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.tab {
  background: none;
  border: none;
  padding: 16px 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.tab:hover {
  color: var(--white);
}

.tab.active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}

/* ── TAB PANELS ── */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── CAROUSEL SECTION ── */
.carousel-section {
  padding: 48px 0 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 600;
  text-align: center;
  color: var(--white);
  margin-bottom: 32px;
  padding: 0 24px;
}

/* ── CAROUSEL TRACK ── */
.carousel-outer {
  position: relative;
  overflow: hidden;
  padding: 20px 0 28px;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

/* ── SLIDE ── */
.slide {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.slide.active {
  position: relative;
  z-index: 10;
  transform: scale(1);
  opacity: 1;
}

.slide.prev1 {
  transform: translateX(-220px) scale(0.70);
  opacity: 0.45;
  z-index: 5;
}

.slide.prev2 {
  transform: translateX(-380px) scale(0.50);
  opacity: 0.2;
  z-index: 3;
}

.slide.next1 {
  transform: translateX(220px) scale(0.70); 
  opacity: 0.45;
  z-index: 5;
}

.slide.next2 {
  transform: translateX(380px) scale(0.50);
  opacity: 0.2;
  z-index: 3;
}

.slide.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── WATCH IMAGE WRAPPER ── */
.watch-wrap {
  position: relative;
  display: inline-block;
}

.watch-wrap img {
  display: block;
  width: 214px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
  user-select: none;
  -webkit-user-drag: none;
}

.watch-wrap.rotated img {
  transform: rotate(-90deg);
  width: 180px;
  border-radius: var(--radius);
}

/* ── SLIDE LABEL ── */
.slide-label {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
}

.slide.active .slide-label {
  color: var(--orange);
}

/* ── SCORE LINE ── */
.score-line {
  margin-top: 10px;
  font-size: 13px;
  color: var(--light);
  text-align: center;
  font-weight: 500;
  min-height: 18px;
}

/* ── DOTS ── */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background: var(--orange);
  transform: scale(1.4);
}

/* ── ARROWS ── */
.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.arrow-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.arrow-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

/* ── NARRATIVE LIST ── */
.narrative-list {
  max-width: 560px;
  margin: 24px auto 0;
  padding: 0 20px;
}

.narrative-list-inner {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--border);
}

.narrative-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.narrative-item:last-child {
  border-bottom: none;
}

.narrative-item-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.narrative-item-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--light);
}

.narrative-list-inner::-webkit-scrollbar {
  width: 4px;
}

.narrative-list-inner::-webkit-scrollbar-track {
  background: var(--border);
}

.narrative-list-inner::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 2px;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 56px auto;
  max-width: 480px;
}

/* ── GEAR SECTION ── */
.gear-section {
  padding: 0 20px 56px;
  max-width: 800px;
  margin: 48px auto;
}

.gear-section .section-label {
  text-align: center;
}

.gear-section .section-title {
  text-align: center;
  padding: 0;
  margin-bottom: 24px;
}

/* ── FOOTER ── */
footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--grey);
  line-height: 1.8;
}

footer a {
  color: var(--orange);
  text-decoration: none;
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .slide.prev1 {
    transform: translateX(-160px) scale(0.65);
    opacity: 0.35;
  }

  .slide.prev2 {
    transform: translateX(-290px) scale(0.55);
    opacity: 0.1;
  }

  .slide.next1 {
    transform: translateX(160px) scale(0.65);
    opacity: 0.35;
  }

  .slide.next2 {
    transform: translateX(290px) scale(0.55);
    opacity: 0.1;
  }

  .watch-wrap img {
    width: 184px;
  }

  .watch-wrap.rotated img {
    width: 253px;
  }

  header {
    padding: 32px 20px 24px;
  }

  .tab {
    padding: 14px 4px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide {
    transition: none;
  }
}

/* ── GAME TYPES SECTION ── */
.game-types-section {
  padding: 48px 24px 80px;
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.game-types-note {
  font-size: 14px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
  line-height: 1.5;
}

.gt-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.gt-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.gt-code {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ff6e01;
  background: black;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.gt-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}

.gt-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  background: var(--border);
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: auto;
}

.gt-field {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  line-height: 1.55;
}

.gt-field:last-child {
  margin-bottom: 0;
}

.gt-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  min-width: 76px;
  padding-top: 2px;
  flex-shrink: 0;
}

.gt-value {
  font-size: 14px;
  color: var(--light);
  line-height: 1.55;
}

.gt-card-unavailable {
  opacity: 0.5;
  border-style: dashed;
}

/* ── From index.html ── */
html { scroll-behavior: smooth; }

/* ── HERO ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 20px;
  text-align: center;
  overflow: hidden;
  gap: 36px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
              rgba(232,119,34,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .brand {
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* ── WATCH FRAME ── */
.watch-frame {
  position: relative;
  z-index: 1;
  width: 220px;
}

.watch-video {
  width: 185px;
  height: 230px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow:
    0 0 0 2px rgba(232,119,34,0.25),
    0 24px 80px rgba(0,0,0,0.85),
    0 0 60px rgba(232,119,34,0.08);
  display: block;
  margin: 0 auto;
}

/* ── TAP RIPPLE OVERLAY CONTAINER ── */
.tap-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 121.74%;
  pointer-events: none;
  border-radius: 52px;
  overflow: hidden;
}

.ripple {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: none;
}

@keyframes tapRipple {
  0%   { width: 20px; height: 20px;
         border-color: rgba(255,255,255,0.6);
         opacity: 1; }
  100% { width: 40px; height: 40px;
         border-color: rgba(255,255,255,0);
         opacity: 0; }
}

.ripple.active {
  animation: tapRipple 0.4s ease-out forwards;
}

/* ── TAGLINE ── */
.tagline-block {
  position: relative;
  z-index: 1;
}

.hero .tagline {
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--orange);
  line-height: 1.05;
  margin-bottom: 16px;
  margin-top: 0;
}

.tagline-sub {
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 14px 28px;
  background: var(--panel);
  transition: all 0.2s ease;
}

.guide-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,119,34,0.06);
}

.guide-link .arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.guide-link:hover .arrow {
  transform: translateX(4px);
}

/* ── SCROLL HINT ── */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── FEATURES ── */
.features {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  /* text-align: center; */
  margin: 16px 0;
}

.section-heading {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 700;
  /* text-align: center; */
  color: var(--white);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(232,119,34,0.4); }
.feature-card.highlight { border-left: 3px solid var(--orange); }

.feature-icon { font-size: 22px; margin-bottom: 14px; }

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact {
  border-top: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}

.contact-inner { max-width: 480px; margin: 0 auto; }

.contact h2 {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact p {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-email {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,119,34,0.3);
  padding-bottom: 2px;
}

.contact-email:hover { border-color: var(--orange); }

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .watch-video { width: 180px; }
  .watch-frame { width: 180px; }
}

/* ── PRIVACY PAGE ── */
.privacy-page-body {
  line-height: 1.65;
}

.privacy-page-body .brand {
  color: var(--grey);
}

.privacy-page-body h1 {
  font-size: clamp(24px, 5vw, 40px);
}

.updated {
  margin-top: 10px;
  font-size: 13px;
  color: var(--grey);
}

.privacy-main {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.privacy-main section {
  margin-bottom: 48px;
}

.privacy-main h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.privacy-main p {
  font-size: 15px;
  color: var(--light);
  margin-bottom: 14px;
}

.privacy-main p:last-child { margin-bottom: 0; }

.privacy-main ul { list-style: none; }
.privacy-main ul li {
  font-size: 15px; color: var(--light); padding: 6px 0 6px 20px;
  position: relative; border-bottom: 1px solid var(--border);
}
.privacy-main ul li:last-child { border-bottom: none; }
.privacy-main ul li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }

.contact-block {
  background: var(--panel); border: 1px solid var(--border);
  border-left: 3px solid var(--orange); border-radius: 12px; padding: 20px 24px;
}
.contact-block p { margin-bottom: 6px; }

/* ── ANNOUNCEMENT BANNER ── */
.announcement-bar {
  background: var(--orange);
  color: var(--black);
  text-align: center;
  padding: 12px 48px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
}

.announcement-bar a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.announcement-bar a:hover {
  opacity: 0.75;
}

.banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--black);
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
  padding: 4px 8px;
  line-height: 1;
}

.banner-close:hover {
  opacity: 1;
}

/* ── BETA PAGE ── */
.beta-page-body {
  line-height: 1.65;
}

.beta-page-body .brand {
  letter-spacing: 0.22em;
  color: var(--white);
}

.beta-page-body h1 {
  font-size: clamp(26px, 5vw, 40px);
  margin-bottom: 12px;
}

.beta-page-body .tagline {
  color: var(--grey);
  max-width: 480px;
  margin: 0 auto;
}

.beta-page-body main {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.beta-page-body .section {
  border-bottom: 1px solid var(--border);
}

.beta-page-body .section:last-of-type { border-bottom: none; }

.beta-page-body .section-heading {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 20px;
}

.beta-page-body p {
  font-size: 15px;
  color: var(--light);
  margin-bottom: 14px;
  line-height: 1.7;
}

.beta-page-body p:last-child { margin-bottom: 0; }

.req-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.req-list li {
  font-size: 15px;
  color: var(--light);
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.55;
}

.req-list li:last-child { border-bottom: none; }

.req-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.note-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
}

.note-box p { font-size: 14px; color: var(--light); margin: 0; }
.note-box strong { color: var(--orange); }

.info-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 20px;
}

.info-box p { font-size: 14px; color: var(--light); margin-bottom: 10px; }
.info-box p:last-child { margin-bottom: 0; }
.info-box a { color: var(--orange); text-decoration: none; }
.info-box a:hover { text-decoration: underline; }

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-number {
  width: 32px; height: 32px; border-radius: 50%; background: var(--orange);
  color: var(--black); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

.step-content { flex: 1; }
.step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--light); line-height: 1.65; }
.step-desc a { color: var(--orange); text-decoration: none; }

.feedback-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px;
}

.feedback-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}

.feedback-card-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}

.feedback-card p { font-size: 13px; color: var(--grey); line-height: 1.65; margin-bottom: 0; }

.form-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; margin-top: 8px;
}

.form-group { margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 0; }

.beta-page-body label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 8px;
}

.label-hint {
  font-size: 11px; font-weight: 400; letter-spacing: 0;
  text-transform: none; color: var(--grey); font-style: italic; margin-top: 6px;
}

.beta-page-body input[type="text"],
.beta-page-body input[type="email"],
.beta-page-body textarea {
  width: 100%; background: var(--black); border: 1px solid var(--border);
  border-radius: 8px; color: var(--white); font-size: 15px;
  font-family: inherit; padding: 12px 14px; transition: border-color 0.2s;
  outline: none;
}

.beta-page-body input[type="text"]:focus,
.beta-page-body input[type="email"]:focus,
.beta-page-body textarea:focus { border-color: var(--orange); }

.beta-page-body textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }

.radio-option {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  background: var(--black); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; transition: border-color 0.2s;
}

.radio-option:hover { border-color: rgba(232,119,34,0.4); }

.radio-option input[type="radio"] { margin-top: 3px; accent-color: var(--orange); flex-shrink: 0; }

.radio-label { font-size: 14px; color: var(--light); line-height: 1.5; }
.radio-label strong { color: var(--white); display: block; margin-bottom: 2px; }

.beta-page-body input[type="file"] {
  width: 100%; background: var(--black); border: 1px solid var(--border);
  border-radius: 8px; color: var(--grey); font-size: 14px;
  font-family: inherit; padding: 10px 14px; cursor: pointer;
}

.checkbox-group {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  background: var(--black); border: 1px solid var(--border);
  border-radius: 8px; margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px; accent-color: var(--orange); flex-shrink: 0;
  width: 16px; height: 16px;
}

.checkbox-label { font-size: 14px; color: var(--light); line-height: 1.55; }

.honeypot { display: none; }

.submit-btn {
  display: block; width: 100%; margin-top: 24px; padding: 16px 24px;
  background: var(--orange); color: var(--black); font-size: 14px;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 32px; cursor: pointer; transition: opacity 0.2s;
}

.submit-btn:hover { opacity: 0.9; }

.beta-page-body footer a { text-decoration: none; }

@media (max-width: 600px) {
  .beta-page-body .feedback-grid { grid-template-columns: 1fr; }
  .beta-page-body .form-card { padding: 20px; }
  .beta-page-body header { padding: 32px 20px 24px; }
}