﻿/* ==========================================================================
   Veld Studio — Client Onboarding Questionnaire Styles
   ========================================================================== */

@import url('variables.css');

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--bark);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- Background Texture ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(196,113,74,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(125,155,118,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(196,113,74,0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Header ---------- */
header {
  padding: 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bark);
  text-decoration: none;
}

.logo span {
  color: var(--terra);
  font-style: italic;
}

.header-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s ease;
}

.header-links a:hover { color: var(--bark); }

.step-indicator {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* ---------- Progress Bar ---------- */
.progress-track {
  margin-top: 24px;
  height: 2px;
  background: var(--sand-dark);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--terra));
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Main Content ---------- */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.question-block {
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 12px;
}

.question-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--bark);
  margin-bottom: 8px;
}

.question-sub {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ---------- Option Buttons ---------- */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.options-grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.option-btn {
  background: white;
  border: 1.5px solid var(--sand-dark);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--bark);
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.option-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--terra);
  transform: scaleY(0);
  transition: transform 0.2s ease;
  border-radius: 0 2px 2px 0;
}

.option-btn:hover {
  border-color: var(--sage-light);
  background: var(--cream);
  transform: translateX(2px);
}

.option-btn.selected {
  border-color: var(--terra);
  background: rgba(196,113,74,0.04);
}

.option-btn.selected::before {
  transform: scaleY(1);
}

.option-label {
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.option-desc {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.option-check {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.option-btn.selected .option-check {
  background: var(--terra);
  border-color: var(--terra);
}

.option-check svg {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.option-btn.selected .option-check svg {
  opacity: 1;
}

/* ---------- Text Input ---------- */
.text-input {
  width: 100%;
  background: white;
  border: 1.5px solid var(--sand-dark);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--bark);
  outline: none;
  transition: border-color 0.2s ease;
  margin-bottom: 32px;
  resize: none;
}

.text-input:focus {
  border-color: var(--sage);
}

.text-input::placeholder {
  color: var(--muted);
  font-weight: 300;
}

/* ---------- Multi Select Hint ---------- */
.multi-hint {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  font-style: italic;
}

/* ---------- Navigation ---------- */
.nav-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.btn-next {
  background: var(--bark);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.btn-next:hover {
  background: var(--terra);
  transform: translateY(-1px);
}

.btn-next:disabled {
  background: var(--sand-dark);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
}

.btn-back {
  background: transparent;
  color: var(--muted);
  border: none;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-back:hover { color: var(--bark); }

.btn-skip {
  margin-left: auto;
  background: transparent;
  color: var(--muted);
  border: none;
  padding: 14px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Welcome Screen ---------- */
.welcome-screen {
  text-align: center;
  padding: 60px 0;
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--terra);
  opacity: 0.3;
  margin-bottom: 24px;
  font-style: italic;
}

.welcome-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.welcome-title em {
  font-style: italic;
  color: var(--terra);
}

.welcome-body {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 40px;
}

.welcome-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--sand-dark);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}

.time-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.btn-start {
  background: var(--terra);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 18px 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  display: block;
  margin: 0 auto;
}

.btn-start:hover {
  background: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,46,30,0.15);
}

/* ---------- Complete Screen ---------- */
.complete-screen {
  text-align: center;
  padding: 60px 0;
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.complete-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.complete-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 16px;
}

.complete-body {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 40px;
}

.summary-card {
  background: white;
  border: 1px solid var(--sand-dark);
  border-radius: 14px;
  padding: 28px;
  text-align: left;
  margin-bottom: 32px;
}

.summary-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
  font-weight: 500;
}

.summary-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.summary-key {
  color: var(--muted);
  font-weight: 300;
  min-width: 140px;
  flex-shrink: 0;
}

.summary-val {
  color: var(--bark);
  font-weight: 400;
}

/* ---------- Footer ---------- */
footer {
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  border-top: 1px solid var(--sand-dark);
}

footer span {
  color: var(--terra);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ---------- Complete Screen Actions ---------- */
.complete-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.complete-actions a {
  font-size: 13px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.complete-actions .btn-secondary {
  color: var(--muted);
  border: 1.5px solid var(--sand-dark);
}

.complete-actions .btn-secondary:hover {
  border-color: var(--terra);
  color: var(--bark);
}

.complete-actions .btn-operator {
  color: white;
  background: var(--bark);
  font-weight: 500;
}

.complete-actions .btn-operator:hover {
  background: var(--terra);
}

/* ---------- Auth Screens ---------- */
.auth-screen {
  padding: 48px 0;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-form {
  max-width: 400px;
}

.auth-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.auth-error {
  display: none;
  font-size: 13px;
  color: var(--danger);
  padding: 10px 14px;
  background: rgba(192, 57, 43, 0.06);
  border-radius: 8px;
  margin-top: 8px;
  font-weight: 400;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.auth-switch a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-switch a:hover {
  color: var(--bark);
}

/* ---------- Build Button ---------- */
.btn-build {
  background: var(--terra);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 18px 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  display: block;
  margin: 0 auto;
}

.btn-build:hover {
  background: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 46, 30, 0.15);
}

.build-estimate {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  text-align: center;
  margin-bottom: 28px;
}

/* ---------- Build Progress Screen ---------- */
.build-screen {
  text-align: center;
  padding: 60px 0;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.build-spinner-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.build-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--sand-dark);
  border-top-color: var(--terra);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.build-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 8px;
}

.build-sub {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 40px;
}

.build-progress {
  max-width: 320px;
  margin: 0 auto;
  text-align: left;
}

.build-page-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  border-bottom: 1px solid var(--sand-light);
  transition: color 0.3s ease;
}

.build-page-item.active {
  color: var(--bark);
  font-weight: 400;
}

.build-page-item.done {
  color: var(--sage-dark);
}

.build-page-item.error {
  color: var(--danger);
}

.build-page-status {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  font-size: 14px;
  transition: color 0.3s ease;
}

.build-page-status.generating {
  color: var(--terra);
  animation: pulse 1s ease-in-out infinite;
}

.build-page-status.done {
  color: var(--sage);
  font-weight: 600;
}

.build-page-status.error {
  color: var(--danger);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---------- Preview Info ---------- */
.preview-info {
  max-width: 400px;
  margin: 32px auto 0;
  text-align: left;
  background: white;
  border: 1px solid var(--sand-dark);
  border-radius: 12px;
  padding: 24px;
}

.preview-info-item {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  padding: 6px 0;
}

.preview-info-item strong {
  color: var(--bark);
  font-weight: 500;
}

/* ---------- Preview Container ---------- */
.preview-container {
  position: relative;
  margin: -48px -24px;
  min-height: 100vh;
}

.preview-toolbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--bark);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  gap: 12px;
}

.preview-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-toolbar-center {
  flex: 1;
  text-align: center;
}

.preview-toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-site-name {
  font-weight: 500;
  font-size: 13px;
}

.preview-timer {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.preview-timer.warning {
  color: #F39C12;
  font-weight: 500;
}

.preview-timer.expired {
  color: #E74C3C;
  font-weight: 500;
}

.preview-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preview-btn:hover {
  background: rgba(255,255,255,0.1);
}

.preview-btn.signup-btn {
  background: var(--terra);
  border-color: var(--terra);
  font-weight: 500;
}

.preview-btn.signup-btn:hover {
  background: var(--terra-dark);
}

.preview-frame {
  transition: filter 0.5s ease;
}

.preview-frame.blurred {
  filter: blur(6px);
  pointer-events: none;
}

.preview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 31, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.overlay-card {
  background: white;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.overlay-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 12px;
}

.overlay-card p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
}

.overlay-subtle {
  font-size: 12px !important;
  margin-top: 12px;
}

/* ---------- Website Preview (simulated site) ---------- */
.preview-website {
  background: white;
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  color: var(--bark);
}

.pw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: white;
  border-bottom: 1px solid var(--sand-dark);
  position: sticky;
  top: 44px;
  z-index: 50;
}

.pw-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--bark);
}

.pw-nav-links {
  display: flex;
  gap: 24px;
}

.pw-nav-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.pw-nav-link:hover {
  color: var(--bark);
}

.pw-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand-light) 100%);
  padding: 100px 40px 80px;
  text-align: center;
}

.pw-hero-content {
  max-width: 640px;
  margin: 0 auto;
}

.pw-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.pw-hero-sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
}

.pw-hero-cta {
  display: inline-block;
  background: var(--terra);
  color: white;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pw-hero-cta:hover {
  background: var(--bark);
  transform: translateY(-1px);
}

.pw-section {
  padding: 60px 40px;
  border-bottom: 1px solid var(--sand-light);
}

.pw-section:nth-child(even) {
  background: var(--sand-light);
}

.pw-container {
  max-width: 640px;
  margin: 0 auto;
}

.pw-container h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 12px;
  margin-top: 28px;
}

.pw-container h3:first-child {
  margin-top: 0;
}

.pw-container p {
  font-size: 15px;
  color: var(--bark-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 8px;
}

.pw-footer {
  background: var(--bark);
  color: rgba(255,255,255,0.6);
  padding: 40px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
}

.pw-footer-credit {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.pw-footer-credit em {
  color: var(--terra-light);
  font-family: 'Cormorant Garamond', serif;
}

/* ---------- Signup Benefits ---------- */
.signup-benefits {
  text-align: left;
  max-width: 440px;
  margin: 0 auto 32px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sand-light);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terra);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-size: 14px;
  color: var(--bark);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Go Live Roadmap ---------- */
.golive-roadmap {
  margin: 40px 0 32px;
}

.golive-step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.golive-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--sand-dark);
}

.golive-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--terra);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.golive-step-body {
  flex: 1;
  padding-top: 4px;
}

.golive-step-body h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
}

.golive-step-body > p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 12px;
}

.golive-action-box {
  background: white;
  border: 1px solid var(--sand-dark);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 8px;
}

.golive-action-box p {
  font-size: 13px;
  color: var(--bark);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 8px;
}

.golive-action-box p strong {
  font-weight: 500;
}

.golive-action-box ol {
  margin: 8px 0 12px 20px;
  font-size: 13px;
  color: var(--bark);
  font-weight: 300;
  line-height: 1.8;
}

.golive-action-box ol li {
  padding-left: 4px;
}

.golive-action-box a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.golive-action-box a:hover {
  color: var(--bark);
}

.golive-tip {
  font-size: 12px !important;
  color: var(--sage-dark) !important;
  font-style: italic;
  margin-top: 4px;
  margin-bottom: 0 !important;
}

/* ---------- Domain Picker ---------- */
.domain-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.domain-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: inherit;
  width: 100%;
  text-align: left;
}

.domain-option:hover {
  border-color: var(--sage);
  transform: translateY(-1px);
}

.domain-option.selected {
  border-color: var(--sage);
  background: rgba(110, 143, 104, 0.06);
}

.domain-option.taken {
  opacity: 0.5;
  cursor: default;
}

.domain-option.taken:hover {
  border-color: var(--sand-dark);
  transform: none;
}

.domain-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--bark);
  font-family: 'DM Sans', sans-serif;
}

.domain-status {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

.domain-status.available {
  background: rgba(39, 174, 96, 0.1);
  color: var(--success);
}

.domain-status.taken {
  background: rgba(192, 57, 43, 0.1);
  color: var(--danger);
}

.golive-help-box {
  background: rgba(110, 143, 104, 0.06);
  border: 1.5px solid var(--sage-light);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}

.golive-help-box h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 8px;
}

.golive-help-box p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .question-text { font-size: 28px; }
  .welcome-title { font-size: 38px; }
  .options-grid.two-col { grid-template-columns: 1fr; }
  .pw-hero-headline { font-size: 36px; }
  .pw-nav { padding: 16px 20px; }
  .pw-nav-links { display: none; }
  .pw-section { padding: 40px 20px; }
  .pw-hero { padding: 60px 20px 50px; }
  .preview-toolbar { flex-wrap: wrap; padding: 8px 12px; }
  .preview-toolbar-center { order: 3; flex-basis: 100%; }
  .golive-step { gap: 14px; }
  .golive-action-box { padding: 14px 16px; }
  .golive-help-box { padding: 18px; }
}

@media (max-width: 480px) {
  .question-text { font-size: 26px; }
  .options-grid.two-col { grid-template-columns: 1fr; }
  .welcome-title { font-size: 34px; }
  .pw-hero-headline { font-size: 28px; }
  .overlay-card { padding: 32px 24px; margin: 16px; }
  .golive-step-num { width: 30px; height: 30px; font-size: 12px; }
  .golive-step:not(:last-child)::before { left: 14px; }
}

/* ==========================================================================
   Visual Selectors — Palette, Font, Layout, Hero
   ========================================================================== */

/* ---------- Colour Palette Picker ---------- */
.palette-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.palette-btn {
  background: white;
  border: 2px solid var(--sand-dark);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.palette-btn:hover {
  border-color: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.palette-btn.selected {
  border-color: var(--terra);
  background: rgba(196,113,74,0.04);
  box-shadow: 0 0 0 3px rgba(184,98,62,0.15);
}

.palette-swatches {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  height: 40px;
}

.palette-swatch {
  flex: 1;
  display: block;
}

.palette-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--bark);
}

.palette-desc {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

/* ---------- Font Pairing Previewer ---------- */
.font-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.font-btn {
  background: white;
  border: 2px solid var(--sand-dark);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.font-btn:hover {
  border-color: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.font-btn.selected {
  border-color: var(--terra);
  background: rgba(196,113,74,0.04);
  box-shadow: 0 0 0 3px rgba(184,98,62,0.15);
}

.font-preview-heading {
  font-size: 22px;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.2;
}

.font-preview-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 400;
}

.font-meta {
  font-size: 11px;
  color: var(--sage);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-top: 4px;
}

/* ---------- Visual Selector (Layout & Hero) ---------- */
.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.visual-btn {
  background: white;
  border: 2px solid var(--sand-dark);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.visual-btn:hover {
  border-color: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.visual-btn.selected {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(184,98,62,0.15);
}

.visual-preview {
  width: 100%;
  height: 120px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.visual-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--bark);
  padding: 10px 14px 2px;
}

.visual-desc {
  display: block;
  font-size: 11px;
  color: var(--muted);
  padding: 0 14px 12px;
  font-weight: 300;
}

/* Mini layout mockups inside visual preview */
.mini-layout {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 4px;
}

.mini-bar { background: var(--sand-dark); border-radius: 2px; height: 6px; }
.mini-block { background: var(--sand); border-radius: 2px; flex: 1; }
.mini-row { display: flex; gap: 3px; flex: 1; }
.mini-col { background: var(--sand); border-radius: 2px; flex: 1; }
.mini-hero { background: var(--bark-light); border-radius: 2px; height: 35%; opacity: 0.3; }
.mini-text { background: var(--sand-dark); border-radius: 2px; height: 8px; width: 60%; margin: 4px auto 0; }
.mini-accent { background: var(--terra); border-radius: 2px; opacity: 0.5; }

@media (max-width: 600px) {
  .palette-grid { grid-template-columns: 1fr; }
  .visual-grid { grid-template-columns: 1fr; }
}
