/* ===== TOKENS ===== */
:root {
  --ink: #12161B;
  --panel: #1B2129;
  --panel-alt: #171C22;
  --line: #2E3946;
  --fog: #B8C4CE;
  --paper: #ECEFF1;
  --brass: #C79A4B;
  --brass-soft: rgba(199, 154, 75, 0.14);
  --teal: #4FA8A0;
  --teal-soft: rgba(79, 168, 160, 0.14);
  --f1-red: #E10600;
  --f1-red-soft: rgba(225, 6, 0, 0.16);
  --amber: #FFB020;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 12px;
  --radius-sm: 8px;
  --max: 1180px;
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Buttons, tiles, nav, and icons should never be "selectable" text — a quick
   click-drag on any of these was triggering the browser's own selection
   toolbar (Edge's Copilot/search/copy popup) to appear over the UI. */
button, .btn, .qa-tile, .card-clickable, .ky-tile, .app-back-btn, .app-bar,
.nav, .nav-toggle, .brand, .dash-light, .odo-group, .mini-gauge,
.diag-modal, svg {
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(18, 22, 27, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}

/* ===== SCREEN NAVIGATION (kiosk-style) ===== */
.app-screen[hidden] { display: none; }
.app-bar {
  position: sticky; top: 61px; z-index: 90;
  background: var(--panel-alt); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  padding: 12px 24px;
}
.app-back-btn {
  font-family: var(--font-mono); font-size: 0.92rem; color: var(--teal);
  background: none; border: 1px solid var(--line); border-radius: 20px;
  padding: 6px 16px; cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.app-back-btn:hover { border-color: var(--teal); background: var(--teal-soft); }
.app-bar-title {
  font-family: var(--font-display); font-weight: 600; color: var(--paper); font-size: 1.05rem;
}

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.brand em { font-style: normal; color: var(--brass); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--fog); font-size: 1.02rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--paper); }
.nav-cta { display: inline-flex; }
.nav-phone { color: var(--brass); font-family: var(--font-mono); font-size: 0.92rem; font-weight: 600; margin-right: 4px; }
.nav-phone:hover { color: #d7a95c; }
.nav-phone-mobile {
  display: block; margin-top: 10px; padding: 12px 0; text-align: center;
  color: var(--brass); font-family: var(--font-mono); font-weight: 600; border-top: 1px solid var(--line);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--paper); }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 8px 24px 20px; }
.nav-mobile a { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--fog); }
.nav-mobile .btn { margin-top: 12px; text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  cursor: pointer; border: 1px solid transparent; transition: all 0.2s ease;
}
.btn-primary { background: var(--brass); color: #14181D; box-shadow: 0 4px 16px rgba(199,154,75,0.25); }
.btn-primary:hover { background: #d7a95c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(199,154,75,0.35); }
.btn-ghost { border-color: var(--line); color: var(--paper); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ===== HERO ===== */
.hero {
  max-width: var(--max); margin: 0 auto;
  padding: 88px 24px 40px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.eyebrow {
  font-family: var(--font-mono); font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fog); margin: 0 0 18px; font-weight: 600;
}
.eyebrow-brass { color: var(--brass); }
.eyebrow-teal { color: var(--teal); }
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.12; }
.accent-line { color: var(--teal); }
.hero-sub { color: var(--fog); font-size: 1.15rem; max-width: 46ch; margin: 22px 0 28px; }
.hero-callout { color: var(--fog); font-size: 0.96rem; margin: 18px 0 0; }
.hero-callout a { color: var(--brass); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-graphic { display: flex; justify-content: center; }
.dial-svg {
  width: 100%; max-width: 340px; height: auto;
  user-select: none; -webkit-user-select: none; -ms-user-select: none;
}

.odo-group { cursor: pointer; }

.dial-orbit { transform-origin: 150px 150px; opacity: 0.6; }
.dial-orbit-cw { animation: dial-orbit-cw-spin 12s linear infinite; }
.dial-orbit-ccw { animation: dial-orbit-ccw-spin 17s linear infinite; }
@keyframes dial-orbit-cw-spin { to { transform: rotate(360deg); } }
@keyframes dial-orbit-ccw-spin { to { transform: rotate(-360deg); } }

.dial-pulse {
  transform-origin: 150px 150px;
  animation: dial-pulse-ring 3s ease-out infinite;
  opacity: 0;
}
.dial-pulse-2 { animation-delay: 1.5s; }
@keyframes dial-pulse-ring {
  0% { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1.25); opacity: 0; }
}

.dash-light { cursor: pointer; transition: filter 0.15s; }
.dash-light:hover, .dash-light:focus-visible { filter: brightness(1.4); outline: none; }
.dash-light-face {
  fill: #1A0505; stroke: var(--f1-red); stroke-width: 1.4;
  filter: drop-shadow(0 0 4px rgba(225,6,0,0.65));
  animation: dash-light-pulse 2s ease-in-out infinite;
}
.dash-light-glyph, .dash-light-glyph-dot, .dash-light-text { stroke: var(--f1-red); color: var(--f1-red); }
.dash-light-text {
  font-family: var(--font-mono); font-weight: 700; font-size: 6.5px;
  fill: var(--f1-red); text-anchor: middle; stroke: none;
}
@keyframes dash-light-pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.55; }
}

/* SAE/ISO telltale standard: amber = needs attention, not immediately hazardous
   (check engine, ABS, transmission). Red is reserved for safety-critical (airbag). */
.dash-light.is-amber .dash-light-face {
  fill: #1A1205; stroke: var(--amber);
  filter: drop-shadow(0 0 4px rgba(255,176,32,0.65));
}
.dash-light.is-amber .dash-light-glyph,
.dash-light.is-amber .dash-light-glyph-dot,
.dash-light.is-amber .dash-light-text { stroke: var(--amber); color: var(--amber); }
.dash-light.is-amber .dash-light-text { fill: var(--amber); }

.dash-light.is-fixed .dash-light-face {
  fill: #0B1410; stroke: var(--teal); animation: none; opacity: 0.85;
  filter: drop-shadow(0 0 3px rgba(79,168,160,0.5));
}
.dash-light.is-fixed .dash-light-glyph,
.dash-light.is-fixed .dash-light-glyph-dot,
.dash-light.is-fixed .dash-light-text { stroke: var(--teal); color: var(--teal); fill: var(--teal); }

.dial-needle-group {
  transform-origin: 150px 150px;
  animation: dial-spin 8s linear infinite;
}
.dial-needle {
  stroke: var(--teal); stroke-width: 3; stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(79,168,160,0.55));
}
.dial-needle-tip {
  stroke: var(--f1-red); stroke-width: 3; stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(225,6,0,0.75));
}
@keyframes dial-spin { to { transform: rotate(360deg); } }

.dial-tick-redline { stroke: var(--f1-red) !important; stroke-width: 2.6 !important; }
.dial-stripe { stroke: var(--f1-red); opacity: 0.55; }
.dial-num-mph { font-family: var(--font-mono); font-size: 9px; font-weight: 700; fill: var(--brass); text-anchor: middle; dominant-baseline: middle; }
.dial-num-mph-red { fill: var(--f1-red); }
.dial-num-kmh { font-family: var(--font-mono); font-size: 6.5px; fill: var(--fog); opacity: 0.7; text-anchor: middle; dominant-baseline: middle; }

.mini-gauge circle.mini-face { fill: var(--ink); stroke: var(--line); stroke-width: 1.1; }
.mini-gauge .mini-tick { stroke: var(--line); stroke-width: 1.1; stroke-linecap: round; }
.mini-gauge .mini-tick-red { stroke: var(--f1-red); }
.mini-gauge .mini-needle { stroke: var(--brass); stroke-width: 1.2; stroke-linecap: round; }
.mini-gauge .mini-label {
  font-family: var(--font-mono); font-size: 4.6px; letter-spacing: 0.08em;
  fill: var(--fog); text-anchor: middle; opacity: 0.75;
}

.odo-housing { fill: #0A0D11; stroke: var(--brass); stroke-width: 1.4; transition: filter 0.2s; }
.odo-group:hover .odo-housing, .odo-group:focus-visible .odo-housing {
  filter: drop-shadow(0 0 4px rgba(199,154,75,0.6));
}
.odo-screen { fill: #232C38; }
.odo-digits {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  fill: #FAFBFC; letter-spacing: 1.5px; text-anchor: middle; dominant-baseline: middle;
}
.odo-tenth {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  fill: #FF4438; text-anchor: middle; dominant-baseline: middle;
}
.odo-digits.odo-rolling { fill: var(--brass); }
.odo-tenth.odo-rolling { fill: var(--brass); }

.dial-icon { opacity: 0.55; animation: dial-glow 8s linear infinite; }
.dial-brass { color: var(--brass); }
.dial-teal { color: var(--teal); }
.dial-icon-0 { animation-delay: -8s; }
.dial-icon-90 { animation-delay: -6s; }
.dial-icon-180 { animation-delay: -4s; }
.dial-icon-270 { animation-delay: -2s; }
@keyframes dial-glow {
  0% { opacity: 1; filter: drop-shadow(0 0 6px currentColor); }
  8% { opacity: 0.55; filter: none; }
  100% { opacity: 0.55; filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  .dial-needle-group, .dial-icon, .dial-orbit, .dial-pulse, .dash-light-face { animation: none; }
  .dial-icon { opacity: 0.85; }
  .dial-pulse { opacity: 0; }
}

/* ===== QUICK ACCESS TILES ===== */
.quick-access {
  max-width: var(--max); margin: 0 auto; padding: 8px 24px 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.qa-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 26px 16px; min-height: 120px;
  background: var(--panel); border: 2px solid var(--line); border-radius: var(--radius);
  text-align: center; transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.qa-tile:hover, .qa-tile:active { transform: translateY(-2px); background: #202832; }
.qa-tile span { font-weight: 700; font-size: 1.02rem; color: var(--paper); line-height: 1.3; }
.qa-icon { width: 34px; height: 34px; }
.qa-brass { border-color: rgba(199,154,75,0.35); }
.qa-brass:hover { border-color: var(--brass); }
.qa-brass .qa-icon { color: var(--brass); }
.qa-teal { border-color: rgba(79,168,160,0.35); }
.qa-teal:hover { border-color: var(--teal); }
.qa-teal .qa-icon { color: var(--teal); }
.qa-call { background: var(--brass); border-color: var(--brass); }
.qa-call span { color: #14181D; }
.qa-call .qa-icon { color: #14181D; }
.qa-call:hover { background: #d7a95c; }

@media (max-width: 700px) {
  .quick-access { grid-template-columns: repeat(2, 1fr); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  max-width: var(--max); margin: 20px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-item {
  padding: 22px 20px; display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-num { font-family: var(--font-mono); color: var(--brass); font-size: 0.95rem; }
.trust-item span:last-child { color: var(--fog); font-size: 0.85rem; }

/* ===== SECTIONS ===== */
.section { max-width: var(--max); margin: 0 auto; padding: 90px 24px; }
.section-alt { background: var(--panel-alt); max-width: none; padding-left: 0; padding-right: 0; }
.section-alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.section-sub { color: var(--fog); font-size: 1.08rem; }

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.card { background: var(--panel); padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.card:hover { background: #202832; transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.card-tag { font-family: var(--font-mono); font-size: 0.82rem; color: var(--fog); display: block; margin-bottom: 16px; }
.card-tag.mono { letter-spacing: 0.05em; }
.card-brass .card-tag { color: var(--brass); }
.card-teal .card-tag { color: var(--teal); }
.card h3 { font-size: 1.14rem; margin-bottom: 10px; }
.card p { color: var(--fog); font-size: 1rem; margin: 0; }
.card-brass { border-top: 2px solid var(--line); }
.card-brass:hover { border-top-color: var(--brass); }
.card-teal { border-top: 2px solid var(--line); }
.card-teal:hover { border-top-color: var(--teal); }

/* ===== STEPS ===== */
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.step { display: flex; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-mono); font-size: 1.4rem; color: var(--teal);
  min-width: 42px;
}
.step h4 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--fog); margin: 0; font-size: 0.95rem; max-width: 60ch; }

.pickup-note {
  margin-top: 40px; padding: 26px 28px; background: var(--panel); border: 1px solid var(--teal);
  border-radius: var(--radius); max-width: 640px;
}
.pickup-note-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--teal); background: var(--teal-soft); padding: 4px 10px; border-radius: 20px; margin-bottom: 12px;
}
.pickup-note h4 { font-size: 1.08rem; margin-bottom: 8px; }
.pickup-note p { color: var(--fog); font-size: 0.94rem; margin: 0; }
.pickup-note strong { color: var(--brass); }

/* ===== AREA ===== */
.area-section { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.area-text p { color: var(--fog); margin-top: 16px; max-width: 50ch; }
.area-badges { display: flex; flex-direction: column; gap: 14px; }
.badge {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: var(--panel); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.88rem;
}
.badge-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.dot-brass { background: var(--brass); }
.dot-teal { background: var(--teal); }

/* ===== QUOTE FORM ===== */
.quote-section { background: var(--panel); border-top: 1px solid var(--line); }
.quote-form { display: flex; flex-direction: column; gap: 20px; max-width: 720px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { grid-template-columns: 1fr 1fr 1.4fr; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field[hidden] { display: none; }
.form-field label { font-size: 0.96rem; color: var(--paper); font-family: var(--font-body); font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  background: var(--ink); border: 1px solid var(--line); color: var(--paper);
  padding: 13px 15px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal);
}
.field-hint { color: var(--fog); font-size: 0.85rem; margin: 4px 0 0; }
.hidden-field { position: absolute; left: -9999px; }
.ownership-check {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px;
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--fog); cursor: pointer;
}
.ownership-check input { margin-top: 3px; accent-color: var(--brass); flex: none; }
.odo-disclosure {
  padding: 16px 18px; background: var(--brass-soft); border: 1px solid var(--brass);
  border-radius: var(--radius-sm);
}
.odo-disclosure-title {
  font-family: var(--font-display); font-weight: 600; color: var(--brass);
  margin: 0 0 6px; font-size: 0.98rem;
}
.odo-disclosure .field-hint { margin-bottom: 14px; }
.odo-disclosure .ownership-check { background: var(--ink); margin-top: 4px; }
.btn-submit { align-self: flex-start; margin-top: 6px; }
.form-note { color: var(--fog); font-size: 0.88rem; margin: -8px 0 0; }
.form-note-link { color: var(--brass); font-weight: 600; }
.form-success { max-width: 720px; padding: 30px; background: var(--teal-soft); border: 1px solid var(--teal); border-radius: var(--radius); }
.form-success h3 { color: var(--teal); margin-bottom: 8px; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--line); padding: 50px 24px 26px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-brand span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.footer-brand em { font-style: normal; color: var(--brass); }
.footer-brand p { color: var(--fog); font-size: 0.88rem; margin-top: 6px; }
.footer-phone { display: inline-block; margin-top: 8px; color: var(--brass); font-family: var(--font-mono); font-weight: 600; font-size: 0.95rem; }
.footer-links { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.footer-links a { color: var(--fog); font-size: 1rem; }
.footer-links a:hover { color: var(--paper); }
.footer-fb { display: inline-flex; align-items: center; gap: 7px; }
.footer-fb:hover { color: #4267B2; }
.footer-copy { max-width: var(--max); margin: 36px auto 0; color: var(--fog); font-size: 0.8rem; font-family: var(--font-mono); }

/* ===== BRAND STRIP (keys page) ===== */
.brand-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel-alt); }
.brand-strip-inner { max-width: var(--max); margin: 0 auto; padding: 24px 24px; }
.brand-strip-eyebrow {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 12px; font-weight: 600;
}
.brand-strip-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 14px; }
.brand-item { display: flex; flex-direction: column; gap: 2px; }
.brand-name { font-family: var(--font-display); font-weight: 700; color: var(--brass); letter-spacing: 0.04em; font-size: 1.05rem; }
.brand-desc { color: var(--fog); font-size: 0.82rem; }
.brand-name-plain { color: var(--fog); font-size: 0.88rem; }
.brand-divider { width: 1px; height: 32px; background: var(--line); }
.brand-strip-note { color: var(--fog); font-size: 0.9rem; line-height: 1.6; max-width: 62ch; margin: 0; }

/* ===== BUY A KEY PAGE ===== */
.keys-hero { padding-bottom: 20px; }

.hero-showcase {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 26px;
}
.showcase-stat { text-align: center; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.showcase-num {
  display: block; font-family: var(--font-display); font-weight: 700; color: var(--brass);
  font-size: 2.6rem; line-height: 1;
}
.showcase-label { color: var(--fog); font-size: 0.92rem; margin-top: 6px; display: block; }

.kc-scene {
  width: 100%; height: auto; overflow: visible;
  user-select: none; -webkit-user-select: none; -ms-user-select: none;
}
.kc-base { fill: var(--panel-alt); stroke: var(--line); stroke-width: 1.5; }
.kc-post { fill: var(--line); }
.kc-clamp { fill: var(--panel-alt); stroke: var(--brass); stroke-width: 1.5; }
.kc-key-cut, .kc-key-blank { stroke: var(--fog); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; opacity: 0.85; }
.kc-key-ring { fill: none; stroke: var(--fog); stroke-width: 2; opacity: 0.6; }
.kc-rail { stroke: var(--line); stroke-width: 2; }
.kc-arm { stroke: var(--line); stroke-width: 2; }
.kc-stylus { fill: var(--teal); }
.kc-cutter-housing { fill: var(--panel-alt); stroke: var(--brass); stroke-width: 1.6; }
.kc-cutter-wheel line { stroke: var(--brass); stroke-width: 1.4; }
.kc-cutter-wheel { transform-box: fill-box; transform-origin: center; animation: kc-spin 0.25s linear infinite; }
@keyframes kc-spin { to { transform: rotate(360deg); } }

.kc-carriage {
  animation: kc-trace 3.6s ease-in-out infinite;
}
@keyframes kc-trace {
  0%   { transform: translate(-8px, -6px); }
  12%  { transform: translate(-3px, -5px); }
  25%  { transform: translate(-14px, -2px); }
  37%  { transform: translate(13px, 5px); }
  50%  { transform: translate(8px, -4px); }
  62%  { transform: translate(1px, -4px); }
  75%  { transform: translate(-10px, -6px); }
  87%  { transform: translate(-9px, 7px); }
  100% { transform: translate(-8px, -6px); }
}

.kc-spark {
  fill: var(--brass);
  animation: kc-spark-fly 0.5s ease-out infinite;
}
.kc-spark-2 { animation-delay: 0.15s; }
.kc-spark-3 { animation-delay: 0.3s; }
@keyframes kc-spark-fly {
  0%   { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(3px, 9px) scale(0.3); }
}

.kc-caption { color: var(--fog); font-size: 0.85rem; text-align: center; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .kc-carriage, .kc-cutter-wheel, .kc-spark { animation: none; }
}

.keys-lookup { padding-top: 50px; }

.ky-crumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.ky-crumb {
  display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.85rem;
  background: var(--teal-soft); border: 1px solid var(--teal); color: var(--teal);
  padding: 6px 12px; border-radius: 20px; cursor: pointer;
}
.ky-crumb:hover { background: var(--teal); color: var(--ink); }
.ky-crumb span { opacity: 0.7; }

.ky-panel { max-width: 640px; margin-bottom: 28px; }
.ky-panel-label { font-family: var(--font-display); font-size: 1.15rem; color: var(--paper); margin-bottom: 14px; }
.ky-year-select {
  background: var(--panel); border: 1px solid var(--line); color: var(--paper);
  padding: 14px 16px; border-radius: var(--radius); font-family: var(--font-body); font-size: 1.05rem;
  width: 100%; max-width: 260px;
}
.ky-filter {
  background: var(--panel); border: 1px solid var(--line); color: var(--paper);
  padding: 11px 14px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
  width: 100%; margin-bottom: 14px;
}
.ky-filter:focus { outline: none; border-color: var(--teal); }

.ky-tile-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px;
  max-height: 360px; overflow-y: auto; padding-right: 4px;
}
.ky-tile {
  background: var(--panel); border: 1px solid var(--line); color: var(--paper);
  padding: 14px 10px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.92rem;
  cursor: pointer; text-align: center; transition: border-color 0.15s, background 0.15s;
  min-height: 52px; display: flex; align-items: center; justify-content: center;
}
.ky-tile:hover, .ky-tile:focus-visible { border-color: var(--brass); background: var(--brass-soft); outline: none; }
.ky-no-tiles { color: var(--fog); font-size: 0.9rem; grid-column: 1 / -1; }
.ky-model-loading { color: var(--fog); font-family: var(--font-mono); font-size: 0.9rem; }
.ky-model-manual { max-width: 360px; }
.ky-model-manual input { margin-bottom: 10px; }

.ky-results { max-width: 520px; }
.ky-result-card {
  background: var(--panel); border: 1px solid var(--teal);
  padding: 30px; border-radius: var(--radius);
}
.ky-card-top { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.ky-icon { width: 44px; height: 44px; color: var(--teal); flex: none; }
.ky-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--teal); background: var(--teal-soft); padding: 4px 10px; border-radius: 2px; margin-bottom: 8px;
}
.ky-result-card h3 { font-size: 1.15rem; }
.ky-spec { color: var(--fog); font-size: 0.92rem; margin: 0 0 18px; line-height: 1.55; }
.ky-brand-row { margin-bottom: 20px; }
.ky-brand-pill {
  display: inline-block; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--brass); border: 1px solid var(--brass); padding: 5px 12px; border-radius: 20px;
}
.ky-price-row { margin-bottom: 20px; }
.ky-price { font-family: var(--font-display); font-size: 2.4rem; color: var(--brass); line-height: 1; }
.ky-price-note { color: var(--fog); font-size: 0.85rem; margin: 8px 0 0; }
.ky-tier-toggle { display: flex; gap: 8px; margin-bottom: 14px; }
.ky-tier-btn {
  flex: 1; padding: 10px 14px; background: var(--ink); border: 1px solid var(--line);
  color: var(--fog); font-family: var(--font-mono); font-size: 0.82rem; border-radius: var(--radius);
  cursor: pointer; transition: all 0.15s;
}
.ky-tier-btn.active { border-color: var(--brass); color: var(--brass); background: var(--brass-soft); }
.ky-tier-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.ky-oem-note { color: var(--fog); font-size: 0.8rem; font-style: italic; margin: -6px 0 14px; }

.ky-disambig h3 { margin-bottom: 12px; }
.ky-disambig-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.ky-back-btn {
  display: block; width: 100%; margin-top: 10px; text-align: center;
  background: none; border: 1px dashed var(--line); font-size: 0.9rem;
}
.ky-back-btn:hover { border-color: var(--teal); color: var(--teal); border-style: solid; }

.ky-nomatch {
  padding: 26px; border: 1px dashed var(--line); border-radius: var(--radius); max-width: 480px;
}
.ky-nomatch p { color: var(--fog); margin-bottom: 16px; }

.fulfillment-toggle { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.fulfillment-option {
  display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}
.fulfillment-option:has(input:checked) { border-color: var(--brass); background: var(--brass-soft); }
.fulfillment-option input { margin-top: 4px; accent-color: var(--brass); }
.fulfillment-note { color: var(--fog); font-size: 0.86rem; font-weight: 400; }

@media (max-width: 700px) {
  .ky-tile-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); max-height: 300px; }
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-graphic { order: -1; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .area-section { grid-template-columns: 1fr; }
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
}

/* ===== CHAT WIDGET ===== */
.concierge-launcher {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--brass); color: #14181D; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(199,154,75,0.4); transition: transform 0.2s;
}
.concierge-launcher:hover { transform: scale(1.06); }

.concierge-panel {
  position: fixed; bottom: 96px; right: 24px; z-index: 200;
  width: 360px; max-width: calc(100vw - 32px); height: 480px; max-height: 70vh;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column; overflow: hidden;
}
.concierge-panel[hidden] { display: none; }
.concierge-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 18px; border-bottom: 1px solid var(--line); background: var(--panel-alt);
}
.concierge-header strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.concierge-header span { display: block; color: var(--fog); font-size: 0.8rem; margin-top: 3px; }
.concierge-close { background: none; border: none; color: var(--fog); font-size: 1.4rem; cursor: pointer; line-height: 1; }

.concierge-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.concierge-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 0.92rem; line-height: 1.45; }
.concierge-msg a { color: inherit; text-decoration: underline; }
.concierge-msg-bot { align-self: flex-start; background: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.concierge-msg-user { align-self: flex-end; background: var(--brass-soft); border: 1px solid var(--brass); color: var(--paper); border-bottom-right-radius: 4px; }
.concierge-typing { opacity: 0.6; font-style: italic; }

.concierge-input-row { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--line); }
.concierge-input-row input {
  flex: 1; background: var(--ink); border: 1px solid var(--line); color: var(--paper);
  padding: 11px 14px; border-radius: 20px; font-family: var(--font-body); font-size: 0.92rem;
}
.concierge-input-row input:focus { outline: 2px solid var(--teal); }
.concierge-input-row button {
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: var(--brass); color: #14181D; font-size: 1.1rem; cursor: pointer; flex: none;
}

@media (max-width: 500px) {
  .concierge-panel { right: 16px; bottom: 88px; }
  .concierge-launcher { right: 16px; bottom: 16px; }
}

/* ===== PHONE MODAL (desktop) ===== */
.phone-modal-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(10,13,17,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.phone-modal-overlay.show { opacity: 1; }
.phone-modal {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; max-width: 360px; width: calc(100% - 40px);
  box-shadow: var(--shadow-soft); position: relative;
  transform: translateY(10px); transition: transform 0.2s;
}
.phone-modal-overlay.show .phone-modal { transform: translateY(0); }
.phone-modal-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  color: var(--fog); font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.phone-modal-eyebrow { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin: 0 0 8px; }
.phone-modal-number {
  display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--brass);
  margin-bottom: 12px; text-decoration: none; cursor: pointer; width: fit-content;
}
.phone-modal-number:hover, .phone-modal-number:focus-visible { text-decoration: underline; }
.phone-modal-note { color: var(--fog); font-size: 0.95rem; margin-bottom: 22px; }
.phone-modal-btn { display: block; width: 100%; text-align: center; margin-bottom: 10px; box-sizing: border-box; }
/* ===== DIAGNOSTIC MODAL (dashboard warning light demo) ===== */
.diag-modal-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(10,13,17,0.65);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity 0.2s;
}
.diag-modal-overlay.show { opacity: 1; }
.diag-modal {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; max-width: 420px; width: 100%;
  box-shadow: var(--shadow-soft); position: relative;
  transform: translateY(10px); transition: transform 0.2s;
  font-family: var(--font-body);
}
.diag-modal-overlay.show .diag-modal { transform: translateY(0); }
.diag-modal-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  color: var(--fog); font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.diag-eyebrow {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--f1-red); margin: 0 0 8px; display: flex; align-items: center; gap: 8px;
}
.diag-eyebrow.is-complete { color: var(--teal); }
.diag-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--f1-red); animation: dash-light-pulse 1.4s ease-in-out infinite; }
.diag-eyebrow.is-complete .diag-eyebrow-dot { background: var(--teal); animation: none; }
.diag-modal h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--paper); margin-bottom: 10px; }
.diag-dtc {
  display: inline-block; font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem;
  color: var(--f1-red); background: rgba(225,6,0,0.12); border: 1px solid var(--f1-red);
  border-radius: 6px; padding: 3px 10px; margin-bottom: 14px; letter-spacing: 0.03em;
}
.diag-modal-note { color: var(--fog); font-size: 0.92rem; margin-bottom: 18px; line-height: 1.5; }
.diag-terminal {
  background: #060809; border: 1px solid var(--line); border-radius: 8px;
  padding: 12px 14px; height: 140px; overflow-y: auto; margin-bottom: 16px;
  font-family: var(--font-mono); font-size: 0.76rem; line-height: 1.6; color: var(--teal);
}
.diag-terminal-line { opacity: 0; animation: diag-line-in 0.25s ease forwards; }
.diag-terminal-line.is-ok { color: #5FD68A; }
@keyframes diag-line-in { to { opacity: 1; } }
.diag-progress-track { height: 6px; background: var(--ink); border-radius: 3px; overflow: hidden; margin-bottom: 18px; }
.diag-progress-fill { height: 100%; background: var(--brass); width: 0%; transition: width 0.2s linear; }
.diag-complete-icon {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  color: var(--teal);
}
.diag-btn-row { display: flex; flex-direction: column; gap: 10px; }

.concierge-highlight {
  animation: concierge-pulse 1.3s ease-in-out 2;
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
@keyframes concierge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,168,160,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(79,168,160,0); }
}

/* Legal pages (terms.html, privacy.html) */
.legal-page {
  padding: 140px 24px 100px;
  min-height: 60vh;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--paper);
  margin: 8px 0 4px;
}
.legal-effective {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--brass);
  margin-bottom: 32px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--paper);
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.legal-page h2:first-of-type { border-top: none; padding-top: 0; }
.legal-page h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--brass);
  margin: 22px 0 8px;
}
.legal-page p, .legal-page li {
  font-family: var(--font-body);
  color: var(--paper);
  opacity: 0.88;
  line-height: 1.65;
  font-size: 0.98rem;
}
.legal-page ul { margin: 8px 0 16px 20px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--brass); }
.legal-page strong { color: var(--paper); opacity: 1; }
.legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* SMS consent disclosure on quote forms — required for A2P 10DLC CTA
   verification: opt-in language must be visibly present at point of
   collection, not just described elsewhere. */
.sms-consent-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--fog);
  line-height: 1.5;
  margin: -6px 0 4px;
}
.sms-consent-note a { color: var(--brass); }

/* WhatsApp "Text Us" nav button */
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25D366;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  margin-right: 8px;
  text-decoration: none;
}
.nav-whatsapp:hover { color: #33e07a; }
.nav-whatsapp-mobile {
  display: block;
  color: #25D366;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 0;
  text-decoration: none;
}
@media (max-width: 900px) {
  .nav-whatsapp { display: none; }
}

/* Live open/closed status badge in hero */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 10px 0 18px;
  width: fit-content;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.status-open {
  color: #6fcf97;
  background: rgba(111, 207, 151, 0.12);
  border: 1px solid rgba(111, 207, 151, 0.3);
}
.status-open .status-dot { background: #6fcf97; box-shadow: 0 0 6px #6fcf97; }
.status-closed {
  color: var(--fog);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.status-closed .status-dot { background: var(--fog); }

/* Authority-building FAQ section on homepage */
.faq-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}
.faq-section h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--paper);
  margin: 6px 0 28px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq-item summary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brass);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  font-family: var(--font-body);
  color: var(--paper);
  opacity: 0.85;
  line-height: 1.6;
  margin-top: 12px;
  font-size: 0.95rem;
}

/* Two-tier ship/cut fulfillment options shown directly on the key result
   card, so customers see both real prices immediately, not just at
   order-confirmation time. */
.ky-fulfillment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.ky-fulfillment-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "price title" "price desc";
  column-gap: 12px;
  row-gap: 2px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.ky-fulfillment-card:hover { border-color: var(--brass); }
.ky-fulfillment-card.selected {
  border-color: var(--brass);
  background: rgba(196, 137, 58, 0.06);
}
.ky-fulfillment-card input[type="radio"] { display: none; }
.ky-fulfillment-price {
  grid-area: price;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brass);
}
.ky-fulfillment-title {
  grid-area: title;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--paper);
  font-size: 0.98rem;
}
.ky-fulfillment-desc {
  grid-area: desc;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--paper);
  opacity: 0.75;
  line-height: 1.4;
}

/* Photo capture: file row + preview */
.photo-capture-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.photo-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.photo-preview-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.photo-preview-wrap[hidden] { display: none; }
.photo-preview-wrap img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

/* Camera capture modal */
.camera-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.camera-modal[hidden] { display: none; }
.camera-modal-inner {
  position: relative;
  max-width: 520px;
  width: 100%;
}
.camera-modal-inner video {
  width: 100%;
  border-radius: 12px;
  background: #000;
  display: block;
}
.camera-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 68px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.camera-guide-box {
  width: 78%;
  height: 42%;
  border: 2px dashed var(--brass);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.camera-guide-label {
  margin-top: -28px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--brass);
  background: rgba(10, 12, 16, 0.8);
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
}
.camera-error {
  color: #e8a86a;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 12px;
}
.camera-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

/* Live AI photo analysis feedback */
.photo-analysis-result {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
}
.photo-analysis-result.checking {
  color: var(--fog);
  background: rgba(255, 255, 255, 0.04);
}
.photo-analysis-result.ok {
  color: #6fcf97;
  background: rgba(111, 207, 151, 0.1);
}
.photo-analysis-result.retake {
  color: #e8a86a;
  background: rgba(232, 168, 106, 0.1);
}

/* Coin placement circle inside the camera guide box */
.camera-guide-box {
  position: relative;
}
.camera-guide-coin {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px dashed var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 12, 16, 0.5);
}
.camera-guide-coin-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--brass);
  text-align: center;
  line-height: 1.1;
}

/* Oval face-guide variant for the selfie capture modal */
.camera-guide-oval {
  width: 55%;
  height: 65%;
  border-radius: 50%;
  border: 2px dashed var(--brass);
}
