/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0B0B10;
  --surface:  #14141C;
  --surface2: #1C1C27;
  --amber:    #FBBF24;
  --amber-dim:#C4891A;
  --text:     #EDE9E0;
  --text-muted: rgba(237,233,224,0.45);
  --border:   rgba(251,191,36,0.12);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Navbar ──────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(11,11,16,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.wordmark-ko { color: var(--amber); }
.wordmark-nvex { color: var(--text); }
.navbar-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(251,191,36,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { display: flex; flex-direction: column; gap: 32px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--amber); }
  50% { opacity: 0.5; box-shadow: 0 0 2px var(--amber); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
  font-weight: 700;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 8px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-pct { font-size: 1rem; font-weight: 400; }
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
  max-width: 100px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── Hero Grid (CSS Neural Network) ─────────────────────────────── */
.hero-grid {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(251,191,36,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,191,36,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  border-radius: 2px;
}

/* Nodes */
.node {
  position: absolute;
  border-radius: 50%;
  background: var(--amber);
}
.node-1  { width: 10px; height: 10px; top: 20%;  left: 30%; box-shadow: 0 0 16px var(--amber); animation: node-glow 3s ease-in-out infinite; }
.node-2  { width: 6px;  height: 6px;  top: 35%;  left: 55%; animation: node-glow 3.5s ease-in-out infinite 0.4s; }
.node-3  { width: 14px; height: 14px; top: 15%;  left: 68%; box-shadow: 0 0 24px var(--amber); animation: node-glow 2.8s ease-in-out infinite 0.8s; }
.node-4  { width: 8px;  height: 8px;  top: 55%;  left: 20%; animation: node-glow 4s ease-in-out infinite 0.2s; }
.node-5  { width: 12px; height: 12px; top: 45%;  left: 45%; box-shadow: 0 0 18px var(--amber); animation: node-glow 3.2s ease-in-out infinite 1.1s; }
.node-6  { width: 7px;  height: 7px;  top: 65%;  left: 60%; animation: node-glow 3.8s ease-in-out infinite 0.6s; }
.node-7  { width: 9px;  height: 9px;  top: 75%;  left: 35%; animation: node-glow 3s ease-in-out infinite 0.3s; }
.node-8  { width: 5px;  height: 5px;  top: 28%;  left: 80%; animation: node-glow 4.2s ease-in-out infinite 0.9s; }
.node-9  { width: 11px; height: 11px; top: 80%;  left: 70%; box-shadow: 0 0 20px var(--amber); animation: node-glow 2.6s ease-in-out infinite 1.5s; }
.node-10 { width: 6px;  height: 6px;  top: 50%;  left: 75%; animation: node-glow 3.6s ease-in-out infinite 0.7s; }

@keyframes node-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Connection lines (using pseudo-divs) */
.conn {
  position: absolute;
  background: rgba(251,191,36,0.25);
  transform-origin: left center;
}
.conn-1 { width: 80px;  height: 1px; top: calc(20% + 5px); left: calc(30% + 5px); transform: rotate(25deg); }
.conn-2 { width: 60px;  height: 1px; top: calc(15% + 7px); left: calc(55% + 3px); transform: rotate(-15deg); }
.conn-3 { width: 50px;  height: 1px; top: calc(35% + 3px); left: calc(55% + 3px); transform: rotate(30deg); }
.conn-4 { width: 70px;  height: 1px; top: calc(45% + 6px); left: calc(30% + 5px); transform: rotate(-10deg); }
.conn-5 { width: 55px;  height: 1px; top: calc(55% + 4px); left: calc(45% + 6px); transform: rotate(20deg); }
.conn-6 { width: 65px;  height: 1px; top: calc(65% + 4px); left: calc(45% + 6px); transform: rotate(-8deg); }

/* Pulse rings */
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(251,191,36,0.3);
  animation: pulse-expand 4s ease-out infinite;
}
.pulse-1 { width: 120px; height: 120px; top: 25%; left: 50%; transform: translate(-50%,-50%); }
.pulse-2 { width: 200px; height: 200px; top: 25%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.5s; }
.pulse-3 { width: 300px; height: 300px; top: 25%; left: 50%; transform: translate(-50%,-50%); animation-delay: 3s; }
@keyframes pulse-expand {
  0%   { opacity: 0.6; transform: translate(-50%,-50%) scale(0.8); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(1.4); }
}

/* Flow lines */
.flow-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  animation: flow-move 4s linear infinite;
}
.flow-1 { width: 140px; top: 38%; left: 25%; animation-duration: 3s; }
.flow-2 { width: 100px; top: 58%; left: 45%; animation-duration: 5s; animation-delay: 1s; }
@keyframes flow-move {
  0%   { opacity: 0; background-position: -100% 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; background-position: 100% 0; }
}

/* ─── Manifesto ────────────────────────────────────────────────────── */
.manifesto {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.manifesto-label, .section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.manifesto-statement { display: flex; flex-direction: column; gap: 20px; }
.manifesto-statement p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.manifesto-statement strong { color: var(--text); }
.manifesto-pivot {
  font-size: 1.2rem !important;
  color: var(--text) !important;
}
.manifesto-division {
  display: flex;
  align-items: center;
  gap: 20px;
}
.div-line { flex: 1; height: 1px; background: var(--border); }
.div-label { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; letter-spacing: 0.06em; }

/* ─── Plays ────────────────────────────────────────────────────────── */
.plays { padding: 100px 48px; }
.plays-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.play-card {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.play-card:hover { border-color: rgba(251,191,36,0.35); }
.play-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  opacity: 0.6;
}
.play-body { display: flex; flex-direction: column; gap: 12px; }
.play-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.play-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Outcomes ─────────────────────────────────────────────────────── */
.outcomes { padding: 100px 48px; background: var(--surface); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 64px;
}
.outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.outcomes-sub { font-size: 1rem; color: var(--text-muted); max-width: 500px; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.outcome-card {
  background: var(--bg);
  padding: 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}
.outcome-card:hover { border-color: rgba(251,191,36,0.3); }
.outcome-icon svg { display: block; }
.outcome-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.outcome-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.pricing-note {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.pricing-badge {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
}
.pricing-detail { font-size: 0.85rem; color: var(--text-muted); }

/* ─── Niches ───────────────────────────────────────────────────────── */
.niches { padding: 100px 48px; }
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.niches-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 64px;
}
.niches-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.niches-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.niche-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}
.niche-item:hover {
  background: var(--surface2);
  border-color: rgba(251,191,36,0.3);
}
.niche-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ─── Playbook ─────────────────────────────────────────────────────── */
.playbook { padding: 100px 48px; background: var(--surface); }
.playbook-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.playbook-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 64px;
}
.playbook-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
}
.step:last-child { border-right: 1px solid var(--border); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.7;
  line-height: 1;
}
.step-content { display: flex; flex-direction: column; gap: 10px; }
.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.step-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.step-arrow {
  width: 40px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  position: relative;
  align-self: center;
  margin-top: -40px;
}
.step-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--border);
}

/* ─── Closing ──────────────────────────────────────────────────────── */
.closing-section { padding: 120px 48px; }
.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.closing-accent { width: 120px; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
}
.closing-signature {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}

/* ─── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.footer-ko { color: var(--amber); }
.footer-nvex { color: var(--text-muted); }
.footer-location {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.footer-meta { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-grid { display: none; }
  .plays-inner { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .step { border-right: 1px solid var(--border); border-bottom: none; }
  .step:last-child { border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .manifesto, .plays, .outcomes, .niches, .playbook, .closing-section { padding: 60px 24px; }
  .niches-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .pricing-note { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 16px; }
}

/* ─── Strategy Call / Contact Form (shared) ───────────────────── */
.contact-section {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(251,191,36,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.contact-header { display: flex; flex-direction: column; gap: 14px; }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.contact-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(251,191,36,0.06);
}

/* Form layout */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.required { color: var(--amber); }

/* Inputs */
.form-input {
  background: rgba(20,20,28,0.6);
  border: 1px solid rgba(251,191,36,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
}
.form-input:hover {
  border-color: rgba(251,191,36,0.25);
  background: rgba(20,20,28,0.8);
}
.form-input:focus {
  border-color: rgba(251,191,36,0.55);
  box-shadow: 0 0 0 3px rgba(251,191,36,0.08);
  background: rgba(20,20,28,0.9);
}
.form-input::placeholder { color: rgba(237,233,224,0.3); }
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(251,191,36,0.5)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select option { background: #14141C; color: var(--text); }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

/* Time slot pills */
.time-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.time-option {
  display: flex; align-items: center; gap: 0;
  background: rgba(20,20,28,0.5); border: 1px solid rgba(251,191,36,0.1);
  border-radius: 12px; padding: 14px 18px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.15s;
  position: relative;
}
.time-option:hover {
  border-color: rgba(251,191,36,0.3);
  background: rgba(251,191,36,0.03);
  transform: translateY(-1px);
}
.time-option input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.time-option:has(input:checked) {
  border-color: rgba(251,191,36,0.55);
  background: rgba(251,191,36,0.07);
  box-shadow: 0 0 0 3px rgba(251,191,36,0.08);
}
.time-option::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(251,191,36,0.25);
  flex-shrink: 0;
  margin-right: 12px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.time-option:has(input:checked)::before {
  border-color: var(--amber);
  background: var(--amber);
  box-shadow: inset 0 0 0 3px var(--bg);
}
.time-label { font-size: 0.88rem; font-weight: 500; color: var(--text); line-height: 1.4; }
.time-sub { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* Submit CTA */
.contact-submit {
  background: linear-gradient(135deg, var(--amber) 0%, #E6A817 100%);
  color: #0B0B10;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.06em;
  border: none; border-radius: 12px;
  padding: 18px 36px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  align-self: stretch;
  text-align: center;
  box-shadow: 0 4px 16px rgba(251,191,36,0.2);
  margin-top: 8px;
}
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(251,191,36,0.3);
}
.contact-submit:active { transform: translateY(0); }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

/* Error */
.form-error {
  background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.25);
  border-radius: 10px; padding: 12px 16px;
  font-size: 0.85rem; color: #F87171;
}

/* Thank-you cards */
.contact-thankyou { display: flex; flex-direction: column; gap: 16px; padding: 8px 0; }
.ty-card { border-radius: 14px; padding: 28px; border: 1px solid var(--border); }
.ty-card--confirm {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(52,211,153,0.06);
  border-color: rgba(52,211,153,0.25);
}
.ty-card-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3);
  display: flex; align-items: center; justify-content: center;
}
.ty-card-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--text); margin-bottom: 6px;
}
.ty-card-sub { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.ty-card--deposit {
  background: rgba(251,191,36,0.04);
  border-color: rgba(251,191,36,0.25);
  display: flex; flex-direction: column; gap: 14px;
}
.ty-deposit-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ty-deposit-badge {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--amber); border: 1px solid rgba(251,191,36,0.35);
  border-radius: 4px; padding: 2px 8px;
  text-transform: uppercase;
}
.ty-deposit-btn {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--amber) 0%, #E6A817 100%); color: #0B0B10;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em;
  border: none; border-radius: 10px;
  padding: 15px 24px;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(251,191,36,0.2);
}
.ty-deposit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(251,191,36,0.3); }
.ty-deposit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.ty-refund-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Form responsive */
@media (max-width: 600px) {
  .contact-section { padding: 60px 24px; }
  .contact-card { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .time-options { grid-template-columns: 1fr; }
}

/* ─── Navbar CTA (shared) ─────────────────────────────────────── */
.navbar-actions { display: flex; align-items: center; gap: 16px; }
.navbar-cta-btn {
  background: var(--amber); color: #0B0B10;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 20px;
  transition: background 0.2s;
}
.navbar-cta-btn:hover { background: var(--amber-dim); }

/* ─── Footer verticals row ────────────────────────────────────── */
.footer-verticals {
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 48px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-verticals-label { margin-right: 6px; }
.footer-vert-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-vert-link:hover { color: var(--amber); }