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

:root {
  --cyan: #22d3ee;
  --cyan-dim: rgba(34, 211, 238, 0.15);
  --green: #4ade80;
  --red: #f87171;
  --bg: #0a0e17;
  --bg-card: #111827;
  --bg-input: #0f1729;
  --border: #1e293b;
  --border-focus: #22d3ee;
  --text: #e2e8f0;
  --text-dim: #64748b;
  --text-muted: #475569;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Subtle noise texture */
.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow */
body::before {
  content: '';
  position: fixed;
  top: -40%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -30%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* Top bar (legacy) */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

/* Site navigation — shared across all pages */
.site-nav {
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--cyan);
}

/* Blog variant — dark nav background on light pages */
.site-nav--blog {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

/* Landing page layout — page-home body class */
.page-home main {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.page-home .site-nav {
  position: relative;
  z-index: 1;
}

.page-home .site-footer {
  position: relative;
  z-index: 1;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: rgba(34, 211, 238, 0.05);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 6vh, 6rem) 0;
}

.hero-content {
  max-width: 520px;
}

.overline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #fff;
}

.subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 2rem;
  max-width: 440px;
}

.social-proof {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.01em;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.share-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-right: 0.25rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.share-btn:hover {
  background: rgba(34, 211, 238, 0.08);
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.25);
}

/* Form */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-fields:empty {
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.email-group {
  flex-direction: row;
  gap: 0.5rem;
}

input,
textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-input);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

input::placeholder {
  color: var(--text-muted);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

textarea::placeholder {
  color: var(--text-muted);
}

/* Custom select dropdown */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-input);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: left;
}

.custom-select-trigger.has-value {
  color: var(--text);
}

.custom-select-trigger:hover {
  border-color: #334155;
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.custom-select-trigger svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.custom-select.is-open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.5);
  max-height: 240px;
  overflow-y: auto;
}

.custom-select.is-open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}

.custom-select-option:hover {
  background: rgba(34, 211, 238, 0.08);
  color: var(--text);
}

.custom-select-option.is-selected {
  color: var(--cyan);
}

.custom-select-option.is-placeholder {
  color: var(--text-muted);
  font-size: 0.85rem;
}

button[type="submit"] {
  padding: 0.8rem 1.5rem;
  background: var(--cyan);
  color: #0a0e17;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.01em;
}

button[type="submit"]:hover {
  background: #06b6d4;
  transform: translateY(-1px);
}

button[type="submit"]:active {
  transform: translateY(0);
}

button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.form-privacy {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  opacity: 0.7;
}

.message {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.message.success {
  color: var(--green);
}

.message.error {
  color: var(--red);
}

/* Hero media */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-media {
  width: 100%;
  max-width: 540px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.04),
    0 20px 60px -15px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

iframe.hero-media {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* Featured On */
.featured-on {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.featured-on[hidden] {
  display: none;
}

.featured-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}

.featured-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.featured-logo {
  display: flex;
  align-items: center;
}

.featured-logo img {
  height: 28px;
  width: auto;
  filter: grayscale(1) brightness(0.6) invert(1);
  opacity: 0.5;
  transition: opacity 0.2s, filter 0.2s;
}

.featured-logo:hover img {
  opacity: 0.8;
  filter: grayscale(0) brightness(1);
}

/* Value Props */
.value-props {
  padding: clamp(2rem, 5vh, 4rem) 0;
  border-top: 1px solid var(--border);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.prop-card {
  background: var(--bg);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}

.prop-card:hover {
  background: rgba(17, 24, 39, 0.6);
}

.prop-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.15);
  color: var(--cyan);
  flex-shrink: 0;
}

.prop-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.prop-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Video Section — lazy-loaded facade */
.video-section {
  padding: clamp(2rem, 5vh, 4rem) 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.video-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 960px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.04),
    0 20px 60px -15px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #000;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.video-facade:hover .video-thumb {
  opacity: 1;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.video-facade:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-info {
  padding: 0.75rem 0.25rem 0;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.video-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.3rem 0 0;
  line-height: 1.5;
}

/* Bottom CTA */
.bottom-cta {
  padding: clamp(2.5rem, 5vh, 4rem) 0;
  border-top: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.bottom-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.btn-scroll {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  background: var(--cyan);
  color: #0a0e17;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.01em;
}

.btn-scroll:hover {
  background: #06b6d4;
  transform: translateY(-1px);
}

.btn-scroll:active {
  transform: translateY(0);
}

/* Footer */
.bottombar {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

.features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

.footer-contact {
  margin-top: 0.75rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

.footer-link {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--cyan);
}

.legal {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Deposit offer (post-signup) */
.deposit-offer {
  animation: depositReveal 0.4s ease-out;
}

.deposit-offer[hidden] {
  display: none;
}

@keyframes depositReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.deposit-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.4rem;
}

.deposit-subheading {
  font-size: 1.15rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.deposit-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  max-width: 460px;
}

.deposit-card {
  background: var(--bg-card);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 40px -10px rgba(34, 211, 238, 0.08);
}

.deposit-card-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.deposit-card-sub {
  font-size: 0.82rem;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.deposit-perks {
  list-style: none;
  margin-bottom: 1.25rem;
}

.deposit-perks li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.deposit-perks li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.75rem;
}

.deposit-counter {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.deposit-counter span {
  color: var(--cyan);
}

.deposit-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  background: var(--cyan);
  color: #0a0e17;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  letter-spacing: -0.01em;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.15);
}

.deposit-cta:hover {
  background: #06b6d4;
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.25);
}

.deposit-cta:active {
  transform: translateY(0);
}

.deposit-refund {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.deposit-fallback {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.deposit-terms a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.deposit-terms a:hover {
  color: var(--cyan);
}

/* Prop card links */
.prop-desc a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.15s;
}

.prop-desc a:hover {
  text-decoration: underline;
}

/* Standalone pages (/reserved, /reservation-terms) */
a.logo {
  text-decoration: none;
  color: inherit;
}

.page-content {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) 0;
}

.page-content h1 {
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.15rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 2rem;
}

.page-body {
  margin-bottom: 2.5rem;
}

.page-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.page-steps {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
}

.page-steps li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
  padding: 0.25rem 0;
}

.page-steps li::marker {
  color: var(--cyan);
  font-weight: 600;
}

.page-share {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.page-share p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.page-footer-line {
  margin-top: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cyan);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.terms-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.terms-body p:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* CTA alternatives (Discord + Reserve) */
.cta-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.cta-divider span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.cta-alternatives {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.cta-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, border-color 0.15s;
  letter-spacing: -0.01em;
  flex: 1;
  white-space: nowrap;
}

.cta-discord {
  background: #5865F2;
  color: #fff;
  border: 1px solid #5865F2;
}

.cta-discord:hover {
  background: #4752C4;
  border-color: #4752C4;
  transform: translateY(-1px);
}

.cta-reserve {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.cta-reserve:hover {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-1px);
}

/* Bottom CTA buttons row */
.bottom-cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Returning visitor link */
.returning-visitor {
  margin-top: 1rem;
}

.returning-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.returning-link:hover {
  color: var(--cyan);
}

.returning-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.returning-form {
  margin-top: 0.5rem;
  animation: depositReveal 0.3s ease-out;
}

.returning-submit {
  padding: 0.8rem 1.2rem;
  background: var(--cyan);
  color: #0a0e17;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.returning-submit:hover {
  background: #06b6d4;
}

/* Responsive */
@media (max-width: 960px) {
  .props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .subtitle {
    max-width: 100%;
  }

  .hero-visual {
    order: 2;
  }

  .email-group {
    justify-content: center;
  }

  .form-note,
  .form-privacy {
    text-align: center;
  }

  .social-proof {
    text-align: center;
  }

  .deposit-body {
    max-width: 100%;
  }

  .deposit-perks {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 560px) {
  .props-grid {
    grid-template-columns: 1fr;
  }

  .email-group {
    flex-direction: column;
  }

  .cta-alternatives {
    flex-direction: column;
  }

  .bottom-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .bottom-cta-buttons .btn-scroll,
  .bottom-cta-buttons .cta-alt {
    width: 100%;
  }

  .features {
    gap: 0.6rem;
  }

  .dot {
    display: none;
  }

  .feature {
    font-size: 0.65rem;
  }
}
