:root {
  --bg-1: #16231c;
  --bg-2: #0b120e;
  --surface: #16211b;
  --surface-2: #1b2922;
  --surface-3: #22332b;
  --border: #33453b;
  --border-light: #46594d;

  /* Brand orange — primary actions / required */
  --accent: #f1562e;
  --accent-hover: #ff6a3d;
  --accent-dim: rgba(241,86,46,0.12);
  --accent-dim2: rgba(241,86,46,0.06);

  /* Mint — secondary accent: steps, numbers, selection */
  --mint: #9ed6b8;
  --mint-strong: #b6e3cb;
  --mint-deep: #0c1712;
  --mint-dim: rgba(158,214,184,0.14);
  --mint-dim2: rgba(158,214,184,0.07);
  --mint-line: rgba(158,214,184,0.45);

  --text: #eef2ee;
  --text-2: #aebdb3;
  --text-3: #7d8c82;
  --error: #f87171;
  --error-dim: rgba(248,113,113,0.1);

  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 60%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(158,214,184,0.06), transparent 60%),
    radial-gradient(700px 500px at 5% 110%, rgba(241,86,46,0.05), transparent 60%);
}
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,15,12,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}

.step-pills { display: flex; align-items: center; gap: 8px; }
.step-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  color: var(--text-3); border: 1px solid transparent; transition: all 0.3s ease;
}
.step-pill.active {
  color: var(--mint); border-color: var(--mint-line); background: var(--mint-dim);
  animation: pill-pulse 2.4s ease-in-out infinite;
}
@keyframes pill-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(158,214,184,0); border-color: var(--mint-line); }
  50%      { box-shadow: 0 0 0 4px rgba(158,214,184,0.12); border-color: var(--mint); }
}
.step-pill.done { color: var(--mint); border-color: rgba(158,214,184,0.25); background: var(--mint-dim2); }
.step-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.step-sep { color: var(--text-3); font-size: 12px; }

.lang-switcher { display: flex; align-items: center; gap: 6px; }
.lang-btn { background: none; border: none; color: var(--text-3); font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; cursor: pointer; padding: 4px 6px; border-radius: 4px; transition: color 0.15s; }
.lang-btn:hover { color: var(--text-2); }
.lang-btn.active { color: var(--mint); }
.lang-sep { color: var(--border-light); font-size: 12px; }

/* ── Page & Views ── */
.page { position: relative; z-index: 1; }
.view { display: none; animation: fadeUp 0.4s ease; }
.view.active { display: block; }
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* ── Legal consent feedback ── */
@keyframes legalShake {
  0%,100% { transform:translateX(0); }
  15%     { transform:translateX(-7px); }
  30%     { transform:translateX(7px); }
  45%     { transform:translateX(-5px); }
  60%     { transform:translateX(5px); }
  75%     { transform:translateX(-3px); }
  90%     { transform:translateX(3px); }
}
.btn-shake { animation: legalShake 0.5s ease !important; }
@keyframes legalFlash { 0%{opacity:0;} 15%{opacity:1;} 65%{opacity:1;} 100%{opacity:0;} }
#legal-overlay { position: fixed; inset: 0; z-index: 90; pointer-events: none; background: rgba(220,38,38,0.30); opacity: 0; }
#legal-overlay.flash { animation: legalFlash 0.7s ease forwards; }

/* ── Form wrap & hero ── */
.form-wrap { max-width: 1320px; margin: 0 auto; padding: 52px 40px 60px; }
.form-hero { margin-bottom: 44px; }
.form-hero h1 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.0; color: var(--accent); }
.form-hero p { margin-top: 14px; color: var(--text-2); font-size: 16px; font-weight: 300; line-height: 1.6; max-width: 760px; }
@keyframes heroSubFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.hero-sub { animation: heroSubFadeIn 1.2s cubic-bezier(0.4,0,0.2,1) 0.2s both; }

/* ── Outer grid: sidebar + form ── */
.form-outer { display: grid; grid-template-columns: 320px 1fr; gap: 22px; align-items: start; }
.form-guide-panel { position: sticky; top: 88px; }
.form-main-panel { display: flex; flex-direction: column; gap: 20px; }

/* ── Sidebar (order process) ── */
.orderhelp { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px; }
.oh-head { margin-bottom: 18px; }
.oh-head-label { display: flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
.oh-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); flex-shrink: 0; box-shadow: 0 0 0 3px var(--mint-dim2); }
.oh-head-sub { margin-top: 8px; font-size: 12px; color: var(--text-3); line-height: 1.5; }
.oh-steps { display: flex; flex-direction: column; }
.oh-step { display: flex; gap: 12px; position: relative; padding: 12px; border-radius: var(--radius); border: 1px solid transparent; transition: all 0.25s ease; }
.oh-step:not(:last-child)::after { content: ''; position: absolute; left: 25px; top: 46px; bottom: -1px; width: 1px; background: var(--border); }
.oh-step.active { background: var(--mint-dim2); border-color: var(--mint-line); }
.oh-badge {
  width: 27px; height: 27px; border-radius: 50%; flex-shrink: 0; position: relative; z-index: 1;
  background: var(--surface-3); border: 1px solid var(--border); color: var(--text-2);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; transition: all 0.25s ease;
}
.oh-step.active .oh-badge { background: var(--mint); border-color: var(--mint); color: var(--mint-deep); }
.oh-badge-final { background: var(--mint-dim); border-color: var(--mint-line); color: var(--mint); }
.oh-text { flex: 1; padding-top: 2px; }
.oh-step-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.oh-text p { font-size: 12px; color: var(--text-2); line-height: 1.5; margin: 0; }
.oh-divider { height: 1px; background: var(--border); margin: 18px 0; }
.oh-help-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.oh-help-contact { display: inline-flex; align-items: center; gap: 8px; color: var(--mint); text-decoration: none; font-size: 13px; font-weight: 500; }
.oh-help-contact:hover { color: var(--mint-strong); }
.oh-help-contact svg { flex-shrink: 0; }

/* ── Card ── */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; transition: border-color 0.2s; }
.card:hover { border-color: var(--border-light); }
.card-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2);
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.card-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); flex-shrink: 0; box-shadow: 0 0 0 3px var(--mint-dim2); }
.card-num {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--mint); color: var(--mint-deep); font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

.stack-16 { display: flex; flex-direction: column; gap: 16px; }

/* ── Fields ── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2);
}
.field label .req { color: var(--accent); margin-left: 2px; }

input[type="text"], input[type="email"], input[type="number"], input[type="date"], select, textarea {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; color: var(--text); font-family: 'Manrope', sans-serif; font-size: 14px;
  font-weight: 400; width: 100%; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(241,86,46,0.55); box-shadow: 0 0 0 3px var(--accent-dim2); background: var(--surface-3);
}
input[type="date"] { color-scheme: dark; cursor: pointer; min-height: 45px; font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.02em; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(48%) sepia(89%) saturate(2476%) hue-rotate(346deg) brightness(101%) contrast(95%); cursor: pointer; opacity: 0.85; }
input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
input.error, textarea.error { border-color: var(--error); box-shadow: 0 0 0 3px var(--error-dim); }
textarea { resize: vertical; min-height: 80px; line-height: 1.5; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 36px; cursor: pointer; }
.select-wrap::after { content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid var(--text-2); pointer-events: none; }
select:disabled { opacity: 0.55; cursor: not-allowed; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error { font-size: 11px; color: var(--error); margin-top: 2px; display: none; }
.field-error.show { display: block; }

/* ── Brand tiles ── */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.brand-tile {
  display: flex; align-items: center; gap: 10px; text-align: left;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; cursor: pointer; transition: all 0.18s; font-family: inherit; color: var(--text);
}
.brand-tile:hover { border-color: var(--mint-line); background: var(--mint-dim2); }
.brand-radio { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--border-light); flex-shrink: 0; position: relative; transition: all 0.18s; }
.brand-tile.selected { border-color: var(--mint); background: var(--mint-dim); }
.brand-tile.selected .brand-radio { border-color: var(--mint); }
.brand-tile.selected .brand-radio::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--mint); }
.brand-name { font-size: 14px; font-weight: 600; }
.brand-tile.unknown .brand-name { font-style: italic; color: var(--text-2); font-weight: 500; }

/* ── Segmented chips (size) ── */
.seg-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text-2); font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.16s;
}
.size-chip:hover { border-color: var(--mint-line); color: var(--text); }
.size-chip.selected { background: var(--mint-dim); border-color: var(--mint); color: var(--mint-strong); }

/* ── Segmented toggle (region / label type — brand orange) ── */
.segmented { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px; }
.seg-btn { padding: 11px 12px; border: none; border-radius: 7px; background: transparent; color: var(--text-2); font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.16s; }
.seg-btn:hover { color: var(--text); }
.seg-btn.selected { background: var(--accent); color: #fff; box-shadow: 0 2px 10px rgba(241,86,46,0.3); }

/* ── Input + attach ── */
.input-attach { display: flex; gap: 8px; align-items: stretch; }
.input-attach input { flex: 1; }
.attach-icon-btn { flex-shrink: 0; width: 45px; display: flex; align-items: center; justify-content: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); color: var(--mint); cursor: pointer; transition: all 0.18s; }
.attach-icon-btn:hover { border-color: var(--mint-line); background: var(--mint-dim2); }

/* ── Pantmærke card ── */
.pantmaerke-card { margin-top: 16px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.pantmaerke-card.hidden { display: none; }
.check-row { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.check-row > span { display: flex; flex-direction: column; gap: 2px; }
.check-title { font-size: 14px; font-weight: 600; color: var(--text); }
.check-note { font-size: 12px; color: var(--text-3); }

/* ── Inline attach (ingredients) ── */
.attach-inline { display: flex; align-items: center; gap: 12px; }
.attach-or { font-size: 12px; color: var(--text-3); }
.brief-attach-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-2); font-family: inherit; font-size: 12px; cursor: pointer; transition: all 0.2s; }
.brief-attach-btn:hover { border-color: var(--mint-line); color: var(--text); }
.brief-attach-btn svg { color: var(--mint); }

/* ── Toggle pill (legal / artwork / smash) ── */
.toggle-pill { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface-2); cursor: pointer; user-select: none; transition: all 0.2s; }
.toggle-pill:hover { border-color: rgba(241,86,46,0.3); background: var(--accent-dim2); }
.toggle-pill.active { border-color: rgba(241,86,46,0.4); background: var(--accent-dim); }
.toggle-switch { width: 36px; height: 20px; border-radius: 999px; background: var(--surface-3); border: 1px solid var(--border-light); position: relative; flex-shrink: 0; transition: all 0.2s; }
.toggle-switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--text-3); transition: all 0.2s; }
.toggle-pill.active .toggle-switch { background: var(--accent); border-color: var(--accent); }
.toggle-pill.active .toggle-switch::after { left: 18px; background: #fff; }
.toggle-label { font-size: 13px; color: var(--text-2); }
.toggle-pill.active .toggle-label { color: var(--text); }

/* ── Legal consent ── */
.legal-expand { display: none; flex-direction: column; margin-top: 0; padding: 14px 16px; background: var(--surface-2); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); font-size: 13px; color: var(--text-2); line-height: 1.6; }
.legal-expand.show { display: flex; animation: fadeUp 0.25s ease; }
.legal-expand strong { color: var(--text); font-weight: 600; }
.consent-error { display: none; font-size: 12px; color: var(--error); margin-top: 6px; }
.consent-error.visible { display: block; }

/* ── Artwork / attachments ── */
.produkt-section-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin: 20px 0 10px; }
.artwork-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.artwork-card .toggle-pill { background: var(--surface-3); }
.artwork-note { font-size: 13px; color: var(--text-2); line-height: 1.55; }
.upload-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; background: var(--surface-3); border: 1px dashed var(--border-light); border-radius: var(--radius); color: var(--text-2); cursor: pointer; font-size: 13px; width: fit-content; transition: all 0.2s; }
.upload-btn:hover { border-color: var(--mint-line); color: var(--text); }
.upload-btn svg { color: var(--mint); }
.upload-list { display: flex; flex-direction: column; gap: 6px; }
.upload-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--surface-3); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 13px; color: var(--text); }
.upload-remove { background: none; border: none; color: var(--text-3); font-size: 18px; line-height: 1; cursor: pointer; padding: 0 4px; }
.upload-remove:hover { color: var(--error); }

/* ── Help box ── */
.help-box { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-2); line-height: 1.6; }
.help-box b { color: var(--text); font-weight: 600; }
.help-box a { color: var(--mint); text-decoration: none; }
.help-box a:hover { text-decoration: underline; }

/* ── Buttons ── */
.btn-primary { padding: 14px 30px; background: var(--accent); color: #fff; border: none; border-radius: 999px; font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.2s; white-space: nowrap; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(241,86,46,0.3); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }

.btn-accent { padding: 15px 30px; background: var(--mint); color: var(--mint-deep); border: none; border-radius: 999px; font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; white-space: nowrap; }
.btn-accent:hover { background: var(--mint-strong); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(158,214,184,0.25); }
.btn-accent:active { transform: translateY(0); }
.review-order-btn { width: 100%; }

.btn-secondary { padding: 12px 22px; background: var(--surface-2); color: var(--text); border: 1px solid var(--border); border-radius: 999px; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-secondary:hover { background: var(--surface-3); border-color: var(--border-light); }
.btn-secondary.btn-grey { background: var(--surface-2); color: var(--text-2); }
.btn-secondary.btn-grey:hover { background: var(--surface-3); color: var(--text); }

/* ── Review popup (modal) ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(5,9,7,0.72); backdrop-filter: blur(6px); padding: 32px 20px; overflow-y: auto; }
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; animation: fadeUp 0.25s ease; }
.modal { width: 100%; max-width: 720px; margin: auto; background: var(--surface); border: 1px solid var(--border-light); border-radius: var(--radius-xl); box-shadow: 0 30px 80px rgba(0,0,0,0.55); overflow: hidden; animation: modalIn 0.3s cubic-bezier(0.2,0.8,0.2,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 26px 28px 18px; border-bottom: 1px solid var(--border); }
.modal-title { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.modal-sub { margin-top: 6px; color: var(--text-2); font-size: 14px; }
.modal-close { background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2); width: 34px; height: 34px; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; flex-shrink: 0; transition: all 0.18s; }
.modal-close:hover { color: var(--text); border-color: var(--border-light); }
.modal-body { padding: 22px 28px; max-height: 60vh; overflow-y: auto; }
.modal-foot { display: flex; justify-content: flex-end; gap: 12px; padding: 18px 28px; border-top: 1px solid var(--border); background: var(--surface-2); }

.rv-section { margin-bottom: 24px; }
.rv-section:last-child { margin-bottom: 0; }
.rv-section-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.rv-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.rv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.rv-row { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 11px 14px; }
.rv-row.full { grid-column: 1/-1; }
.rv-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.rv-val { font-size: 14px; color: var(--text); font-weight: 500; word-break: break-word; }
.rv-val.mono { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--mint); }
.rv-val.pre { white-space: pre-wrap; font-weight: 400; color: var(--text-2); line-height: 1.5; }

/* Attached file cards in review */
.rv-files-grid { display: flex; flex-direction: column; gap: 8px; }
.rv-file-card { display: flex; align-items: center; gap: 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; overflow: hidden; }
.rv-file-thumb { width: 44px; height: 44px; border-radius: 6px; flex-shrink: 0; object-fit: cover; background: var(--surface-3); border: 1px solid var(--border); }
.rv-file-badge { width: 44px; height: 44px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono', monospace; font-size: 9px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.rv-file-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.rv-file-name { font-size: 13px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-file-size { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-3); }

/* ── Confirm (Sent) ── */
.confirm-wrap { max-width: 560px; margin: 0 auto; padding: 80px 40px 120px; text-align: center; }
.confirm-icon { width: 80px; height: 80px; border-radius: 24px; background: var(--mint-dim); border: 1px solid var(--mint-line); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; color: var(--mint); }
.confirm-title { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.confirm-text { color: var(--text-2); font-size: 16px; line-height: 1.6; margin-bottom: 8px; }
.confirm-email { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--mint); background: var(--mint-dim); border: 1px solid var(--mint-line); border-radius: 6px; padding: 4px 12px; margin: 4px 0 24px; }
.confirm-steps { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px; margin: 28px 0; text-align: left; }
.cs-title { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.cs-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cs-item:last-child { border-bottom: none; padding-bottom: 0; }
.cs-num { width: 24px; height: 24px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-3); flex-shrink: 0; margin-top: 1px; }
.cs-body .cs-h { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.cs-body .cs-d { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── Footer (centered) ── */
.site-footer { position: relative; z-index: 1; text-align: center; padding: 40px 20px 60px; color: var(--text-3); font-size: 13px; line-height: 1.7; }
.site-footer a { color: var(--accent); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ── Toast ── */
.toast { position: fixed; top: 80px; right: 24px; z-index: 400; background: var(--surface-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px 18px; font-size: 14px; color: var(--text); box-shadow: 0 8px 32px rgba(0,0,0,0.5); transform: translateX(120%); transition: transform 0.3s ease; max-width: 300px; }
.toast.show { transform: translateX(0); }
.toast.success { border-color: var(--mint-line); }
.toast.error-t { border-color: rgba(248,113,113,0.3); }

/* ── Responsive ── */
@media (max-width: 920px) {
  .form-outer { grid-template-columns: 1fr; }
  .form-guide-panel { position: static; }
  header { padding: 0 20px; }
  .step-pills { display: none; }
  .form-wrap { padding: 32px 20px 60px; }
  .confirm-wrap { padding: 48px 20px 100px; }
  .row-2 { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .rv-grid { grid-template-columns: 1fr; }
  .modal-foot { flex-direction: column-reverse; }
  .modal-foot .btn-primary, .modal-foot .btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 460px) {
  .brand-grid { grid-template-columns: 1fr; }
}
