:root {
  --bg: #080a0c;
  --bg-soft: #0d1013;
  --surface: #121518;
  --surface-2: #181c20;
  --surface-3: #20252a;
  --yellow: #ffd51e;
  --yellow-2: #ffe66f;
  --text: #f7f7f5;
  --muted: #9399a2;
  --muted-2: #686f78;
  --green: #4bc66a;
  --red: #ff4d44;
  --orange: #ff962f;
  --blue: #5ea7ff;
  --border: rgba(255, 255, 255, 0.08);
  --yellow-border: rgba(255, 213, 30, 0.3);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% -10%, rgba(255, 213, 30, 0.08), transparent 34rem),
    var(--bg);
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button,
a,
[role="button"] {
  touch-action: manipulation;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

#app {
  min-height: 100dvh;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.app-view {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
}

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

.app-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: calc(var(--safe-top) + 16px) clamp(20px, 4vw, 56px) 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 0;
  padding: 0;
  background: transparent;
  font-weight: 850;
  font-size: 20px;
  letter-spacing: -0.7px;
  cursor: pointer;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 213, 30, 0.16);
}

.brand-accent {
  color: var(--yellow);
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.header-action:hover {
  border-color: rgba(255, 213, 30, 0.38);
  background: rgba(255, 213, 30, 0.08);
}

.public-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: calc(100dvh - 76px);
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 18px clamp(22px, 5vw, 72px) calc(36px + var(--safe-bottom));
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-bottom: 20px;
  padding: 0 13px;
  border: 1px solid var(--yellow-border);
  border-radius: 999px;
  background: rgba(255, 213, 30, 0.06);
  color: var(--yellow-2);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(75, 198, 106, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(44px, 11vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero-subtitle {
  max-width: 480px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.55;
}

.capture-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(74vw, 286px);
  aspect-ratio: 1;
  margin: 4px auto 2px;
}

.capture-ring {
  position: absolute;
  border: 1px solid rgba(255, 213, 30, 0.13);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}

.capture-ring:nth-child(1) {
  inset: 1%;
}

.capture-ring:nth-child(2) {
  inset: 14%;
  animation-delay: -1s;
  border-color: rgba(255, 213, 30, 0.21);
}

.capture-ring:nth-child(3) {
  inset: 27%;
  animation-delay: -2s;
  border-color: rgba(255, 213, 30, 0.3);
}

@keyframes ringPulse {
  0%, 100% { transform: scale(0.97); opacity: 0.5; }
  50% { transform: scale(1.025); opacity: 1; }
}

.capture-button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: #0a0b0c;
  box-shadow: 0 18px 52px rgba(255, 213, 30, 0.22), inset 0 2px 0 rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.capture-button:hover {
  transform: scale(1.04);
  box-shadow: 0 22px 60px rgba(255, 213, 30, 0.28), inset 0 2px 0 rgba(255, 255, 255, 0.45);
}

.capture-button:active {
  transform: scale(0.96);
}

.capture-button .icon {
  width: 42px;
  height: 42px;
  stroke-width: 2.2;
}

.capture-label {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 760;
}

.privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 12px;
}

.privacy-note strong {
  color: var(--text);
}

.demo-link {
  margin-top: 18px;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 4px;
  cursor: pointer;
}

.hero-side {
  display: none;
}

.mini-flow {
  display: grid;
  gap: 14px;
}

.mini-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18, 21, 24, 0.78);
  backdrop-filter: blur(14px);
}

.mini-step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255, 213, 30, 0.1);
  color: var(--yellow);
  font-weight: 850;
}

.mini-step strong,
.mini-step span {
  display: block;
}

.mini-step strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.mini-step span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.screen {
  min-height: 100dvh;
  padding-bottom: calc(30px + var(--safe-bottom));
}

.screen.has-nav {
  padding-bottom: calc(100px + var(--safe-bottom));
}

.screen-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  min-height: calc(70px + var(--safe-top));
  padding: var(--safe-top) 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background: rgba(8, 10, 12, 0.82);
  backdrop-filter: blur(18px);
}

.screen-header-title {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 780;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
}

.icon-button.ghost {
  border-color: transparent;
  background: transparent;
}

.content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 54px);
}

.narrow {
  width: min(100%, 660px);
}

.step-heading {
  margin-bottom: 24px;
}

.step-heading h1 {
  margin-bottom: 10px;
  font-size: clamp(30px, 8vw, 47px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.step-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.progress-track {
  flex: 1;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-3);
}

.progress-bar {
  height: 100%;
  border-radius: inherit;
  background: var(--yellow);
  transition: width 260ms ease;
}

.progress-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.photo-badge .icon {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

.helper-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.helper-card .icon {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.actions {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.primary-button,
.secondary-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 17px;
  font-size: 15px;
  font-weight: 820;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.primary-button {
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: #080a0c;
  box-shadow: 0 14px 34px rgba(255, 213, 30, 0.12);
}

.primary-button:hover {
  background: var(--yellow-2);
}

.secondary-button {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--surface-2);
}

.danger-button {
  border: 1px solid rgba(255, 77, 68, 0.24);
  background: rgba(255, 77, 68, 0.08);
  color: #ff8b84;
}

.primary-button:active,
.secondary-button:active,
.danger-button:active {
  transform: scale(0.985);
}

.primary-button:disabled {
  border-color: var(--surface-3);
  background: var(--surface-3);
  color: var(--muted-2);
  box-shadow: none;
  cursor: not-allowed;
}

.scan-panel {
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: center;
}

.scan-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 213, 30, 0.08), transparent 80%);
  transform: translateX(-100%);
  animation: scanner 2.1s ease-in-out infinite;
}

@keyframes scanner {
  55%, 100% { transform: translateX(100%); }
}

.scan-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 22px;
  background: rgba(255, 213, 30, 0.1);
  color: var(--yellow);
}

.scan-icon .icon {
  width: 34px;
  height: 34px;
}

.scan-panel h2 {
  margin-bottom: 8px;
  font-size: 21px;
}

.scan-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.plate-card {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(75, 198, 106, 0.28);
  border-radius: var(--radius);
  background: rgba(75, 198, 106, 0.055);
}

.plate-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.confidence {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.plate-input {
  width: 100%;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #f4f5f2;
  color: #111416;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(24px, 8vw, 34px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.category-list {
  display: grid;
  gap: 10px;
}

.category-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 76px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.category-card:hover {
  border-color: rgba(255, 213, 30, 0.2);
  transform: translateY(-1px);
}

.category-card.selected {
  border-color: var(--yellow);
  background: rgba(255, 213, 30, 0.065);
}

.category-icon,
.alert-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(255, 213, 30, 0.1);
  color: var(--yellow);
}

.category-icon .icon,
.alert-icon .icon {
  width: 23px;
  height: 23px;
}

.category-card strong,
.category-card small {
  display: block;
}

.category-card strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.category-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.select-indicator {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--muted-2);
  border-radius: 50%;
  color: transparent;
}

.selected .select-indicator {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #080a0c;
}

.select-indicator .icon {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.review-list {
  display: grid;
  gap: 12px;
}

.review-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.review-card-label {
  padding: 14px 16px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.review-value {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  font-weight: 770;
}

.review-plate {
  font-size: 24px;
  letter-spacing: 0.05em;
}

.status-check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: auto;
  border-radius: 50%;
  background: rgba(75, 198, 106, 0.12);
  color: var(--green);
}

.status-check .icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.8;
}

.anonymity {
  display: flex;
  gap: 12px;
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius);
  background: rgba(255, 213, 30, 0.055);
  color: var(--yellow-2);
  font-size: 13px;
  line-height: 1.5;
}

.confirmation {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100dvh;
  padding: calc(30px + var(--safe-top)) 24px calc(30px + var(--safe-bottom));
  text-align: center;
}

.confirmation-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  border-radius: 36px;
  background: var(--yellow);
  color: #080a0c;
  box-shadow: 0 24px 80px rgba(255, 213, 30, 0.22);
  animation: confirmationIn 520ms cubic-bezier(.2, .9, .25, 1.3) both;
}

.confirmation-mark::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(255, 213, 30, 0.2);
  border-radius: 48px;
}

.confirmation-mark .icon {
  width: 55px;
  height: 55px;
  stroke-width: 2.5;
}

@keyframes confirmationIn {
  from { opacity: 0; transform: scale(0.7) rotate(-7deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.confirmation h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 9vw, 54px);
  letter-spacing: -0.05em;
}

.confirmation p {
  max-width: 460px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.confirmation .actions {
  width: min(100%, 420px);
  margin-top: 24px;
}

.owner-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: calc(var(--safe-top) + 18px) clamp(20px, 4vw, 54px) 10px;
}

.owner-greeting {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 213, 30, 0.18);
  border-radius: 15px;
  background: rgba(255, 213, 30, 0.08);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 850;
}

.owner-greeting small,
.owner-greeting strong {
  display: block;
}

.owner-greeting small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
}

.owner-greeting strong {
  font-size: 14px;
}

.owner-heading {
  margin-bottom: 24px;
}

.owner-heading h1 {
  margin-bottom: 8px;
  font-size: clamp(31px, 7vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.owner-heading p {
  color: var(--muted);
  font-size: 14px;
}

.dashboard-grid {
  display: grid;
  gap: 16px;
}

.vehicle-hero {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 80%, rgba(255, 213, 30, 0.11), transparent 46%),
    linear-gradient(145deg, #181c20, #101316);
  box-shadow: var(--shadow);
}

.vehicle-hero::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -36%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 213, 30, 0.12);
  border-radius: 50%;
}

.status-pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pill {
  background: rgba(75, 198, 106, 0.11);
  color: var(--green);
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(75, 198, 106, 0.09);
}

.vehicle-meta {
  position: relative;
  z-index: 2;
  margin-top: 26px;
}

.vehicle-meta h2 {
  margin-bottom: 6px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.vehicle-meta p {
  color: var(--muted);
  font-size: 13px;
}

.mini-plate {
  display: inline-block;
  margin-top: 13px;
  padding: 8px 14px;
  border-left: 6px solid #2879d3;
  border-radius: 7px;
  background: #f5f5f1;
  color: #151719;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.car-illustration {
  position: absolute;
  right: -12px;
  bottom: 4px;
  width: min(58%, 330px);
  color: #8d949b;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.42));
}

.car-illustration svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 22px;
  display: flex;
  gap: 22px;
}

.hero-stat strong,
.hero-stat small {
  display: block;
}

.hero-stat strong {
  margin-bottom: 3px;
  font-size: 18px;
}

.hero-stat small {
  color: var(--muted);
  font-size: 10px;
}

.quick-action {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 82px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 0;
  border-radius: var(--radius);
  background: var(--yellow);
  color: #080a0c;
  text-align: left;
  cursor: pointer;
}

.quick-action-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(8, 10, 12, 0.1);
}

.quick-action strong,
.quick-action small {
  display: block;
}

.quick-action strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.quick-action small {
  opacity: 0.66;
  font-size: 11px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 14px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.text-button {
  padding: 7px;
  border: 0;
  background: transparent;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.activity-list,
.alert-list,
.vehicle-list {
  display: grid;
  gap: 11px;
}

.activity-card,
.alert-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 76px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.activity-card:hover,
.alert-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--surface-2);
}

.alert-icon.red {
  background: rgba(255, 77, 68, 0.1);
  color: var(--red);
}

.alert-icon.orange {
  background: rgba(255, 150, 47, 0.1);
  color: var(--orange);
}

.alert-icon.blue {
  background: rgba(94, 167, 255, 0.1);
  color: var(--blue);
}

.alert-icon.green {
  background: rgba(75, 198, 106, 0.1);
  color: var(--green);
}

.activity-card strong,
.activity-card small,
.alert-card strong,
.alert-card small {
  display: block;
}

.activity-card strong,
.alert-card strong {
  overflow: hidden;
  margin-bottom: 4px;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-card small,
.alert-card small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.badge.new {
  min-height: 24px;
  padding: 0 8px;
  background: rgba(255, 77, 68, 0.1);
  color: var(--red);
  font-size: 8px;
}

.alert-thumb {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-3);
}

.alert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin: 0 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
}

.filter-chip.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #080a0c;
}

.empty-state {
  padding: 44px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  color: var(--muted);
  text-align: center;
}

.empty-state .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: var(--muted-2);
}

.bottom-nav {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: calc(74px + var(--safe-bottom));
  padding: 8px max(10px, env(safe-area-inset-right)) var(--safe-bottom) max(10px, env(safe-area-inset-left));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 12, 14, 0.93);
  backdrop-filter: blur(24px);
}

.nav-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  min-height: 58px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 720;
  cursor: pointer;
}

.nav-item.active {
  color: var(--yellow);
}

.nav-item.active .icon-wrap {
  background: rgba(255, 213, 30, 0.09);
}

.icon-wrap {
  display: grid;
  place-items: center;
  min-width: 45px;
  height: 30px;
  border-radius: 999px;
}

.nav-item .icon {
  width: 21px;
  height: 21px;
}

.alert-detail-photo {
  position: relative;
  overflow: hidden;
  height: min(52vh, 440px);
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.alert-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-status {
  position: absolute;
  top: 16px;
  right: 16px;
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.detail-title-row h1 {
  margin-bottom: 5px;
  font-size: clamp(25px, 7vw, 38px);
  letter-spacing: -0.04em;
}

.detail-title-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.detail-section {
  margin-top: 20px;
}

.detail-section h2 {
  margin-bottom: 12px;
  font-size: 14px;
}

.map-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 170px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: #14191d;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(255, 255, 255, 0.055) 49%, rgba(255, 255, 255, 0.055) 51%, transparent 52%),
    linear-gradient(120deg, transparent 48%, rgba(255, 255, 255, 0.045) 49%, rgba(255, 255, 255, 0.045) 51%, transparent 52%);
  background-size: 68px 58px;
}

.map-pin {
  position: absolute;
  top: 44%;
  left: 58%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 8px solid rgba(255, 77, 68, 0.16);
  border-radius: 50%;
  background: var(--red);
  background-clip: padding-box;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.map-card strong,
.map-card small {
  position: relative;
  z-index: 2;
  display: block;
}

.map-card strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.map-card small {
  color: var(--muted);
  font-size: 10px;
}

.info-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 15px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row .icon {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.vehicle-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.vehicle-card h2 {
  margin: 18px 0 4px;
  font-size: 23px;
}

.vehicle-card p {
  color: var(--muted);
  font-size: 12px;
}

.vehicle-card .car-illustration {
  right: -10px;
  bottom: -2px;
  width: min(52%, 270px);
}

.add-vehicle-card {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 22px;
  border: 1px dashed rgba(255, 213, 30, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(255, 213, 30, 0.025);
  color: var(--yellow);
  text-align: center;
  cursor: pointer;
}

.add-vehicle-card .plus {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 16px;
  background: rgba(255, 213, 30, 0.1);
  font-size: 28px;
}

.add-vehicle-card strong,
.add-vehicle-card small {
  display: block;
}

.add-vehicle-card strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.add-vehicle-card small {
  color: var(--muted);
  font-size: 10px;
}

.form-grid {
  display: grid;
  gap: 15px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
}

.field textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.profile-hero {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 26px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.profile-hero .avatar {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  font-size: 18px;
}

.profile-hero h2 {
  margin-bottom: 4px;
  font-size: 18px;
}

.profile-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.settings-section {
  margin-top: 24px;
}

.settings-section h2 {
  margin: 0 0 10px 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.settings-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.setting-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.setting-row:last-child {
  border-bottom: 0;
}

.setting-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.setting-icon .icon {
  width: 18px;
  height: 18px;
}

.setting-row strong,
.setting-row small {
  display: block;
}

.setting-row strong {
  margin-bottom: 2px;
  font-size: 12px;
}

.setting-row small {
  color: var(--muted);
  font-size: 9px;
}

.toggle {
  position: relative;
  width: 42px;
  height: 25px;
  border-radius: 999px;
  background: var(--surface-3);
  transition: background 160ms ease;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #d5d8da;
  transition: transform 160ms ease;
}

.toggle.on {
  background: var(--yellow);
}

.toggle.on::after {
  background: #080a0c;
  transform: translateX(17px);
}

.login-shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100dvh;
}

.login-visual {
  display: none;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 60%, rgba(255, 213, 30, 0.2), transparent 35%),
    linear-gradient(145deg, #171b1f, #080a0c);
}

.login-visual .car-illustration {
  right: -7%;
  bottom: 8%;
  width: 90%;
}

.login-form-wrap {
  display: grid;
  align-content: center;
  width: min(100%, 520px);
  min-height: 100dvh;
  margin: 0 auto;
  padding: calc(34px + var(--safe-top)) 24px calc(34px + var(--safe-bottom));
}

.login-form-wrap .brand {
  margin-bottom: 52px;
}

.login-form-wrap h1 {
  margin-bottom: 10px;
  font-size: clamp(36px, 10vw, 54px);
  letter-spacing: -0.055em;
}

.login-form-wrap > p {
  margin-bottom: 30px;
  color: var(--muted);
  line-height: 1.55;
}

.demo-account {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius);
  background: rgba(255, 213, 30, 0.045);
  color: var(--yellow-2);
  font-size: 11px;
  line-height: 1.45;
}

.login-back {
  position: fixed;
  top: calc(var(--safe-top) + 16px);
  right: 18px;
  z-index: 3;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: calc(92px + var(--safe-bottom));
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 440px;
  min-height: 52px;
  margin: 0 auto;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(28, 33, 37, 0.96);
  color: var(--text);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: 680;
  backdrop-filter: blur(18px);
  animation: toastIn 220ms ease both;
}

.toast .icon {
  width: 19px;
  height: 19px;
  color: var(--green);
}

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

.install-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius);
  background: rgba(255, 213, 30, 0.05);
}

.install-banner img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.install-banner strong,
.install-banner small {
  display: block;
}

.install-banner strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.install-banner small {
  color: var(--muted);
  font-size: 9px;
}

.install-banner .text-button {
  margin-left: auto;
}

@media (min-width: 760px) {
  .actions.inline {
    grid-template-columns: 1fr 1.4fr;
  }

  .category-list {
    grid-template-columns: 1fr 1fr;
  }

  .review-list {
    grid-template-columns: 1.25fr 1fr;
  }

  .review-card.photo-review {
    grid-row: span 2;
  }

  .review-photo {
    height: 100%;
    min-height: 256px;
  }

  .dashboard-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  }

  .dashboard-side .section-head {
    margin-top: 0;
  }

  .vehicle-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }

  .alert-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 24px;
  }

  .bottom-nav {
    right: 24px;
    bottom: 18px;
    left: 24px;
    width: min(620px, calc(100% - 48px));
    min-height: 68px;
    margin: 0 auto;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 23px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.42);
  }
}

@media (min-width: 980px) {
  .public-main {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
    gap: clamp(56px, 8vw, 130px);
  }

  .hero {
    justify-items: start;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(64px, 7vw, 92px);
  }

  .capture-stage {
    margin-right: 0;
    margin-left: 0;
  }

  .privacy-note {
    align-self: center;
  }

  .hero-side {
    display: grid;
    gap: 22px;
  }

  .hero-side-title {
    font-size: 13px;
    font-weight: 780;
  }

  .login-shell {
    grid-template-columns: minmax(380px, 0.9fr) minmax(500px, 1.1fr);
  }

  .login-visual {
    display: block;
  }

  .login-form-wrap {
    padding-right: 64px;
    padding-left: 64px;
  }
}

@media (max-width: 420px) {
  .header-action span {
    display: none;
  }

  .header-action {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(40px, 12.2vw, 54px);
  }

  .capture-stage {
    width: min(68vw, 250px);
  }

  .capture-button {
    width: 102px;
    height: 102px;
  }

  .photo-card,
  .photo-card img {
    min-height: 260px;
  }

  .car-illustration {
    opacity: 0.68;
  }
}

/* Gamechangers: parking, evidence, verified sources, insurers, circle and transfer */

.smart-services { margin-top: 32px; }
.smart-services .section-head { margin: 0 0 14px; }
.smart-services .section-head h2 { margin: 5px 0 0; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.04em; }
.smart-service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.smart-service-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; min-height: 92px; padding: 17px; border: 1px solid rgba(255, 255, 255, 0.075); border-radius: 22px; color: var(--text); background: linear-gradient(145deg, rgba(25, 29, 33, 0.96), rgba(12, 15, 18, 0.96)); text-align: left; cursor: pointer; }
.smart-service-card:hover { border-color: rgba(255, 213, 30, 0.24); transform: translateY(-1px); }
.smart-service-card > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 14px; color: var(--yellow); background: rgba(255, 213, 30, 0.09); }
.smart-service-card > span .icon { width: 20px; }
.smart-service-card strong, .smart-service-card small { display: block; }
.smart-service-card strong { margin-bottom: 5px; font-size: 12px; }
.smart-service-card small { color: var(--muted); font-size: 9px; line-height: 1.4; }
.smart-service-card > .icon { width: 16px; color: var(--muted); }
.smart-service-card em { color: var(--muted); font-size: 8px; font-style: normal; font-weight: 900; text-transform: uppercase; }
.smart-service-card em.live { color: var(--green); }
.smart-service-card.parking { border-color: rgba(75, 198, 106, 0.15); background: radial-gradient(circle at 15% 50%, rgba(75, 198, 106, 0.08), transparent 45%), linear-gradient(145deg, #171c1d, #0c0f12); }

.parking-hero { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(22px, 5vw, 54px); min-height: 270px; margin-bottom: 18px; padding: clamp(26px, 5vw, 54px); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 32px; background: radial-gradient(circle at 12% 50%, rgba(255, 213, 30, 0.12), transparent 28%), linear-gradient(145deg, #191d21, #0c0f12); }
.parking-hero.is-active { border-color: rgba(75, 198, 106, 0.18); background: radial-gradient(circle at 12% 50%, rgba(75, 198, 106, 0.15), transparent 30%), linear-gradient(145deg, #17201b, #0b0f10); }
.parking-hero h1 { max-width: 680px; margin: 8px 0 12px; font-size: clamp(34px, 5vw, 64px); line-height: .98; letter-spacing: -0.055em; }
.parking-hero p { max-width: 680px; margin: 0; color: var(--muted); line-height: 1.65; }
.parking-radar { position: relative; display: grid; width: 142px; height: 142px; flex: 0 0 auto; place-items: center; }
.parking-radar > i { position: absolute; inset: 0; border: 1px solid rgba(255, 213, 30, 0.22); border-radius: 50%; animation: parking-pulse 2.8s ease-out infinite; }
.parking-radar > i:nth-child(2) { inset: 22px; animation-delay: .7s; }
.is-active .parking-radar > i { border-color: rgba(75, 198, 106, 0.3); }
.parking-radar > span { position: relative; z-index: 2; display: grid; width: 64px; height: 64px; place-items: center; border-radius: 22px; color: #111; background: var(--yellow); box-shadow: 0 0 45px rgba(255, 213, 30, 0.2); }
.is-active .parking-radar > span { background: var(--green); box-shadow: 0 0 45px rgba(75, 198, 106, 0.22); }
.parking-radar .icon { width: 29px; height: 29px; }
.parking-live-badge { align-self: start; display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: 999px; color: #bdf2c8; background: rgba(75, 198, 106, 0.1); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.parking-live-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(75, 198, 106, 0.09); }
.parking-live-badge.muted { color: var(--muted); background: rgba(255, 255, 255, 0.05); }
.parking-live-badge.muted i { background: var(--muted); box-shadow: none; }
@keyframes parking-pulse { 0% { transform: scale(.72); opacity: 0; } 35% { opacity: 1; } 100% { transform: scale(1.08); opacity: 0; } }
.parking-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 18px; }
.parking-map-card { position: relative; min-height: 430px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 28px; background: #11171a; }
.parking-map-grid { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(32deg, transparent 47%, rgba(255,213,30,.12) 48%, rgba(255,213,30,.12) 51%, transparent 52%); background-size: 48px 48px, 48px 48px, 220px 180px; transform: rotate(-8deg) scale(1.12); }
.parking-radius { position: absolute; top: 50%; left: 50%; width: 230px; height: 230px; border: 1px solid rgba(75, 198, 106, 0.3); border-radius: 50%; background: rgba(75, 198, 106, 0.06); transform: translate(-50%, -57%); box-shadow: inset 0 0 50px rgba(75, 198, 106, 0.05); }
.parking-car-pin { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; width: 52px; height: 52px; place-items: center; border: 5px solid #11171a; border-radius: 18px; color: #111; background: var(--yellow); transform: translate(-50%, -65%); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.parking-map-copy { position: absolute; right: 18px; bottom: 18px; left: 18px; z-index: 3; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(8,10,12,.82); backdrop-filter: blur(16px); }
.parking-map-copy strong, .parking-map-copy small { display: block; }
.parking-map-copy small { margin-top: 5px; color: var(--muted); font-size: 9px; }
.parking-controls { padding: 24px; border: 1px solid rgba(255,255,255,.07); border-radius: 28px; background: linear-gradient(145deg, rgba(23,27,31,.98), rgba(12,15,18,.98)); }
.parking-vehicle { display: grid; grid-template-columns: 86px 1fr; align-items: center; gap: 14px; margin-bottom: 25px; }
.parking-vehicle img { width: 86px; height: 64px; border-radius: 15px; object-fit: cover; }
.parking-vehicle strong { display: block; margin-top: 7px; font-size: 11px; }
.parking-controls h2 { margin: 0 0 12px; font-size: 18px; }
.duration-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 22px; }
.duration-chips button { min-height: 42px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; color: var(--muted); background: rgba(255,255,255,.03); font-size: 10px; font-weight: 850; }
.duration-chips button.active { color: #111; border-color: var(--yellow); background: var(--yellow); }
.parking-rules { display: grid; gap: 7px; margin-bottom: 22px; }
.parking-rules span { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 13px; color: var(--muted); background: rgba(255,255,255,.025); font-size: 9px; }
.parking-rules .icon { width: 15px; color: var(--green); }

.simulation-note, .simulation-banner { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; padding: 14px 16px; border: 1px solid rgba(94,167,255,.15); border-radius: 17px; color: #c7ddf6; background: rgba(94,167,255,.045); font-size: 10px; line-height: 1.5; }
.simulation-note .icon, .simulation-banner .icon { flex: 0 0 auto; width: 17px; color: var(--blue); }
.simulation-note strong { display: block; margin-bottom: 2px; }
.simulation-banner { margin: 0 0 18px; color: var(--muted); }

.vault-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; min-height: 300px; margin-bottom: 18px; padding: clamp(30px, 6vw, 64px); border: 1px solid rgba(255,213,30,.13); border-radius: 32px; background: radial-gradient(circle at 85% 20%, rgba(255,213,30,.13), transparent 28%), linear-gradient(145deg, #1a1d20, #0b0e11); }
.vault-hero h1 { max-width: 760px; margin: 8px 0 15px; font-size: clamp(42px, 6vw, 78px); line-height: .96; letter-spacing: -.06em; }
.vault-hero p { max-width: 650px; margin: 0; color: var(--muted); line-height: 1.6; }
.vault-count { display: grid; flex: 0 0 auto; width: 150px; height: 150px; place-items: center; align-content: center; border: 1px solid rgba(255,213,30,.18); border-radius: 50%; background: rgba(255,213,30,.06); text-align: center; }
.vault-count strong { color: var(--yellow); font-size: 48px; line-height: 1; }
.vault-count small { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.vault-list { display: grid; gap: 10px; }
.vault-card { display: grid; grid-template-columns: 104px minmax(0,1fr) auto auto; align-items: center; gap: 16px; width: 100%; padding: 13px; border: 1px solid rgba(255,255,255,.075); border-radius: 23px; color: var(--text); background: rgba(255,255,255,.025); text-align: left; }
.vault-card:hover { border-color: rgba(255,213,30,.24); }
.vault-thumb { display: block; width: 104px; height: 76px; overflow: hidden; border-radius: 16px; background: var(--surface-2); }
.vault-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vault-card em, .vault-card strong, .vault-card small { display: block; }
.vault-card em { margin-bottom: 5px; color: var(--yellow); font-size: 8px; font-style: normal; font-weight: 900; letter-spacing: .08em; }
.vault-card small { margin-top: 5px; color: var(--muted); font-size: 9px; }
.vault-card b { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-size: 9px; }
.vault-card b .icon, .vault-card > .icon { width: 14px; }
.vault-principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.vault-principles article { padding: 20px; border: 1px solid rgba(255,255,255,.06); border-radius: 20px; background: rgba(255,255,255,.022); }
.vault-principles article > .icon { margin-bottom: 14px; color: var(--yellow); }
.vault-principles strong, .vault-principles small { display: block; }
.vault-principles small { margin-top: 5px; color: var(--muted); font-size: 9px; }
.evidence-seal { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 28px; border: 1px solid rgba(75,198,106,.18); border-radius: 28px; background: radial-gradient(circle at 8% 50%, rgba(75,198,106,.11), transparent 24%), rgba(255,255,255,.025); }
.evidence-seal > span { display: grid; width: 60px; height: 60px; place-items: center; border-radius: 20px; color: #08120a; background: var(--green); }
.evidence-seal small, .evidence-seal h1, .evidence-seal p { display: block; margin: 0; }
.evidence-seal small { color: var(--green); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.evidence-seal h1 { margin: 6px 0; font-size: 28px; letter-spacing: -.04em; }
.evidence-seal p { color: var(--muted); font-size: 10px; }
.evidence-seal b { display: flex; align-items: center; gap: 6px; color: var(--green); font-size: 9px; }
.evidence-seal b .icon { width: 14px; }
.evidence-incident { display: grid; grid-template-columns: minmax(250px,.8fr) 1.2fr; align-items: center; gap: 28px; margin-top: 16px; padding: 18px; border: 1px solid rgba(255,255,255,.07); border-radius: 28px; background: rgba(255,255,255,.025); }
.evidence-photo { overflow: hidden; aspect-ratio: 16/10; border-radius: 20px; }
.evidence-photo img { width: 100%; height: 100%; object-fit: cover; }
.evidence-incident h2 { margin: 7px 0; font-size: 30px; letter-spacing: -.04em; }
.evidence-incident p { color: var(--muted); }
.evidence-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.evidence-pills span { display: inline-flex; align-items: center; gap: 5px; padding: 7px 9px; border-radius: 999px; color: #d8dde2; background: rgba(255,255,255,.05); font-size: 8px; font-weight: 800; }
.evidence-pills .icon { width: 12px; color: var(--yellow); }
.evidence-manifest { margin-top: 16px; padding: 22px; border: 1px solid rgba(255,255,255,.07); border-radius: 24px; background: rgba(255,255,255,.022); }
.evidence-manifest .section-head { margin: 0 0 12px; }
.evidence-manifest code { display: block; margin-top: 13px; padding: 11px; overflow: hidden; border-radius: 12px; color: var(--muted); background: #090b0d; font-size: 9px; text-overflow: ellipsis; }
.share-active, .anonymous-reply-received { display: flex; align-items: center; gap: 11px; margin-top: 14px; padding: 14px; border: 1px solid rgba(75,198,106,.16); border-radius: 17px; color: var(--green); background: rgba(75,198,106,.05); }
.share-active strong, .share-active small, .anonymous-reply-received strong, .anonymous-reply-received small { display: block; }
.share-active small, .anonymous-reply-received small { margin-top: 3px; color: var(--muted); font-size: 9px; }

.insurer-hero { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 24px; min-height: 250px; padding: clamp(28px,5vw,54px); border: 1px solid rgba(94,167,255,.16); border-radius: 32px; background: radial-gradient(circle at 10% 50%, rgba(94,167,255,.13), transparent 27%), linear-gradient(145deg,#17202a,#0b0e12); }
.insurer-mark { display: grid; width: 82px; height: 82px; place-items: center; border-radius: 25px; color: #07111d; background: var(--blue); font-size: 39px; font-weight: 950; box-shadow: 0 18px 45px rgba(94,167,255,.16); }
.insurer-hero h1 { max-width: 750px; margin: 8px 0 12px; font-size: clamp(34px,4.7vw,62px); line-height: .98; letter-spacing: -.055em; }
.insurer-hero p { margin: 0; color: var(--muted); }
.insurer-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin-top: 16px; }
.insurer-benefits article { min-height: 180px; padding: 23px; border: 1px solid rgba(255,255,255,.07); border-radius: 23px; background: rgba(255,255,255,.025); }
.insurer-benefits article > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 14px; color: var(--blue); background: rgba(94,167,255,.08); }
.insurer-benefits h2 { margin: 18px 0 8px; font-size: 18px; }
.insurer-benefits p { color: var(--muted); font-size: 10px; line-height: 1.55; }
.insurer-consent { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 16px; padding: 25px; border: 1px solid rgba(75,198,106,.14); border-radius: 24px; background: rgba(75,198,106,.035); }
.insurer-consent h2 { margin: 6px 0; }
.insurer-consent p { margin: 0; color: var(--muted); font-size: 10px; }
.insurer-consent .secondary-button { width: auto; min-width: 190px; }

.verified-event-card { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 18px; margin-bottom: 18px; padding: 20px; border: 1px solid rgba(75,198,106,.19); border-radius: 24px; background: radial-gradient(circle at 5% 50%, rgba(75,198,106,.1), transparent 18%), rgba(255,255,255,.025); }
.verified-source-mark { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 18px; color: #071008; background: var(--green); }
.verified-label, .verified-badge { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-size: 8px; font-style: normal; font-weight: 900; text-transform: uppercase; }
.verified-label .icon, .verified-badge .icon { width: 11px; }
.verified-event-card h2 { margin: 6px 0; font-size: 19px; }
.verified-event-card p { margin: 0; color: var(--muted); font-size: 9px; }
.verified-event-card .primary-button { width: auto; }
.verified-badge { padding: 4px 7px; border-radius: 999px; background: rgba(75,198,106,.08); }
.verified-source-card { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 12px; margin-bottom: 14px; padding: 16px; border: 1px solid rgba(75,198,106,.16); border-radius: 20px; background: rgba(75,198,106,.045); }
.verified-source-card > span { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 13px; color: #071008; background: var(--green); }
.verified-source-card em, .verified-source-card strong, .verified-source-card small { display: block; }
.verified-source-card em { color: var(--green); font-size: 8px; font-style: normal; font-weight: 900; text-transform: uppercase; }
.verified-source-card strong { margin-top: 5px; }
.verified-source-card small { margin-top: 3px; color: var(--muted); font-size: 9px; }

.owner-reply-card { margin-bottom: 14px; padding: 18px; border: 1px solid rgba(255,213,30,.15); border-radius: 22px; background: rgba(255,213,30,.035); }
.owner-reply-card h2 { margin: 6px 0; font-size: 19px; }
.owner-reply-card p { color: var(--muted); font-size: 9px; line-height: 1.5; }
.reply-options { display: grid; gap: 7px; margin-top: 13px; }
.reply-options button { display: flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; color: var(--text); background: rgba(255,255,255,.03); text-align: left; font-size: 10px; }
.reply-options button.selected { color: #111; border-color: var(--yellow); background: var(--yellow); font-weight: 850; }
.reply-options .icon { width: 14px; }
.reply-sent { display: flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--green); font-size: 8px; }
.reply-sent .icon { width: 13px; }
.anonymous-reply-received { margin: 12px 0 0; }

.circle-summary { display: grid; grid-template-columns: auto 1fr 1fr; align-items: center; gap: 12px; margin-bottom: 13px; padding: 15px; border: 1px solid rgba(255,213,30,.13); border-radius: 20px; background: rgba(255,213,30,.035); }
.circle-summary > div { display: flex; align-items: baseline; gap: 6px; padding-right: 14px; border-right: 1px solid rgba(255,255,255,.08); }
.circle-summary > div strong { color: var(--yellow); font-size: 27px; }
.circle-summary small { color: var(--muted); }
.circle-summary > span { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 9px; }
.circle-summary .icon { width: 14px; color: var(--yellow); }
.circle-card em { display: flex; align-items: center; gap: 5px; margin-top: 5px; color: var(--blue); font-size: 8px; font-style: normal; font-weight: 800; }
.circle-card em .icon { width: 11px; }
.circle-toggle { border: 0; cursor: pointer; }
.circle-schedule { margin-top: 14px; padding: 20px; border: 1px solid rgba(255,255,255,.07); border-radius: 22px; background: rgba(255,255,255,.025); }
.circle-schedule h2 { margin: 5px 0 15px; font-size: 20px; }
.schedule-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.schedule-track span { position: relative; display: grid; gap: 3px; padding: 13px; border-radius: 14px; color: var(--muted); background: rgba(255,255,255,.03); }
.schedule-track span.active { color: var(--text); background: rgba(255,213,30,.07); }
.schedule-track i { width: 8px; height: 8px; margin-bottom: 5px; border-radius: 50%; background: var(--muted); }
.schedule-track .active i { background: var(--green); box-shadow: 0 0 0 5px rgba(75,198,106,.08); }
.schedule-track b { font-size: 10px; }
.schedule-track small { font-size: 8px; }

.release-icon.secure { color: #111; background: var(--yellow); }
.transfer-choice { display: grid; gap: 8px; margin: 14px 0; }
.transfer-choice article { display: grid; grid-template-columns: auto 1fr; gap: 11px; padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 17px; background: rgba(255,255,255,.025); }
.transfer-choice article > .icon { color: var(--yellow); }
.transfer-choice strong, .transfer-choice small { display: block; }
.transfer-choice small { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.transfer-token { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 16px 0; padding: 20px; border: 1px solid rgba(255,213,30,.2); border-radius: 20px; background: rgba(255,213,30,.045); }
.transfer-token small, .transfer-token strong { display: block; }
.transfer-token small { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.transfer-token strong { margin-top: 5px; color: var(--yellow); font-size: 25px; letter-spacing: .08em; }
.transfer-token b { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 9px; }
.transfer-token b .icon { width: 14px; }
.transfer-steps { display: grid; gap: 7px; margin-bottom: 15px; }
.transfer-steps span { display: flex; align-items: center; gap: 8px; padding: 10px; border-radius: 13px; color: var(--muted); background: rgba(255,255,255,.025); font-size: 9px; }
.transfer-steps span.done { color: var(--green); }
.transfer-steps .icon { width: 14px; }

@media (max-width: 1000px) {
  .smart-service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .parking-layout { grid-template-columns: 1fr; }
  .insurer-hero { grid-template-columns: auto 1fr; }
  .insurer-hero > .status-pill { grid-column: 2; justify-self: start; }
}

@media (max-width: 700px) {
  .smart-service-grid, .insurer-benefits, .vault-principles { grid-template-columns: 1fr; }
  .parking-hero { grid-template-columns: 1fr; }
  .parking-radar { width: 110px; height: 110px; }
  .parking-hero h1 { font-size: 40px; }
  .parking-live-badge { position: absolute; top: 18px; right: 18px; }
  .parking-map-card { min-height: 340px; }
  .vault-hero { align-items: flex-start; flex-direction: column; }
  .vault-count { width: 110px; height: 110px; }
  .vault-count strong { font-size: 38px; }
  .vault-card { grid-template-columns: 76px minmax(0,1fr) auto; }
  .vault-thumb { width: 76px; height: 66px; }
  .vault-card b { grid-column: 2; justify-self: start; }
  .vault-card > .icon { grid-column: 3; grid-row: 1 / span 2; }
  .evidence-seal { grid-template-columns: auto 1fr; }
  .evidence-seal > b { grid-column: 2; justify-self: start; }
  .evidence-incident { grid-template-columns: 1fr; }
  .insurer-hero { grid-template-columns: 1fr; }
  .insurer-hero > .status-pill { grid-column: 1; }
  .verified-event-card { grid-template-columns: auto 1fr; }
  .verified-event-card .primary-button { grid-column: 1 / -1; width: 100%; }
  .insurer-consent { align-items: flex-start; flex-direction: column; }
  .insurer-consent .secondary-button { width: 100%; }
  .circle-summary { grid-template-columns: auto 1fr; }
  .circle-summary > span:last-child { grid-column: 2; }
  .schedule-track { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .smart-service-card { min-height: 82px; padding: 13px; border-radius: 19px; }
  .parking-hero { min-height: 0; padding: 25px 20px; border-radius: 27px; }
  .parking-controls { padding: 19px; border-radius: 24px; }
  .duration-chips { grid-template-columns: repeat(2,1fr); }
  .parking-radius { width: 190px; height: 190px; }
  .vault-hero { min-height: 0; padding: 28px 22px; border-radius: 27px; }
  .vault-hero h1 { font-size: 42px; }
  .evidence-seal { padding: 20px; }
  .evidence-seal h1 { font-size: 22px; }
  .evidence-seal > span { width: 50px; height: 50px; }
  .insurer-hero { padding: 25px 21px; border-radius: 27px; }
  .insurer-hero h1 { font-size: 39px; }
  .transfer-token { align-items: flex-start; flex-direction: column; }
  .transfer-token strong { font-size: 21px; }
}

/* Complete product scenarios, privacy and vehicle ownership */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.scenario-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(24, 28, 32, 0.98), rgba(13, 16, 19, 0.98));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  text-align: left;
  transition: 180ms ease;
}

.scenario-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 30, 0.34);
}

.scenario-card > .icon {
  width: 20px;
  color: var(--yellow);
}

.scenario-card > span:nth-child(2) {
  min-width: 0;
}

.scenario-card strong,
.scenario-card small {
  display: block;
}

.scenario-card strong {
  margin-bottom: 6px;
  font-size: 14px;
}

.scenario-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.scenario-photo {
  position: relative;
  display: block;
  height: 96px;
  overflow: hidden;
  border-radius: 17px;
  background: var(--surface-2);
}

.scenario-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  color: #0b0d0f;
  background: var(--yellow);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.scenario-icon.red { background: #ff6a62; }
.scenario-icon.blue { background: #70b7ff; }
.scenario-icon.orange { background: #ffab45; }
.scenario-icon .icon { width: 16px; }

.context-priority-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
}

.context-priority-card.active {
  border-color: rgba(255, 75, 67, 0.5);
  background: rgba(255, 75, 67, 0.08);
}

.context-priority-card strong,
.context-priority-card small {
  display: block;
}

.context-priority-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.context-priority-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #ff6a62;
  background: rgba(255, 75, 67, 0.12);
}

.privacy-result {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(75, 198, 106, 0.3);
  border-radius: 999px;
  color: #d7ffe0;
  background: rgba(8, 18, 12, 0.82);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
}

.privacy-result .icon { width: 14px; color: var(--green); }

.vehicle-hero-real {
  isolation: isolate;
  overflow: hidden;
}

.vehicle-hero-real::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 7, 9, 0.95) 0%, rgba(5, 7, 9, 0.63) 44%, rgba(5, 7, 9, 0.08) 80%);
}

.vehicle-hero-real::after {
  z-index: 1;
}

.vehicle-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-hero-real .vehicle-hero-head,
.vehicle-hero-real .vehicle-meta,
.vehicle-hero-real .hero-stats {
  position: relative;
  z-index: 2;
}

.owner-empty-vehicle {
  display: grid;
  min-height: 320px;
  place-items: center;
  align-content: center;
  gap: 10px;
  width: 100%;
  padding: 32px;
  border: 1px dashed rgba(255, 213, 30, 0.35);
  border-radius: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.owner-empty-vehicle > .icon { width: 34px; color: var(--yellow); }
.owner-empty-vehicle small { max-width: 330px; color: var(--muted); line-height: 1.5; }

.vehicle-card-real {
  overflow: hidden;
  padding-top: 12px;
}

.vehicle-card-photo {
  position: relative;
  height: 210px;
  margin: -2px -2px 20px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-2);
}

.vehicle-card-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(8, 10, 12, 0.66));
  content: '';
}

.vehicle-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card-photo .status-pill {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
}

.vehicle-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.vehicle-release-button {
  padding: 8px 0;
  color: #ff8d87;
  background: transparent;
  font-size: 11px;
  font-weight: 750;
}

.release-vehicle-card {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 75, 67, 0.18);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(29, 24, 25, 0.98), rgba(13, 15, 18, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.release-vehicle-card h1 {
  max-width: 580px;
  margin: 12px 0 10px;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.04em;
}

.release-vehicle-card > p { color: var(--muted); line-height: 1.6; }
.release-vehicle-card > img { width: 100%; max-height: 310px; margin-top: 24px; border-radius: 20px; object-fit: cover; }
.release-icon { display: grid; width: 48px; height: 48px; margin-bottom: 18px; place-items: center; border-radius: 16px; color: #ff8d87; background: rgba(255, 75, 67, 0.12); }
.release-vehicle-meta { display: flex; justify-content: space-between; gap: 12px; padding: 15px 2px 4px; }
.release-vehicle-meta span { color: var(--yellow); font-weight: 850; }

.expired-photo {
  display: grid;
  min-height: 180px;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  color: var(--muted);
  background: radial-gradient(circle at 50% 30%, rgba(255, 213, 30, 0.07), transparent 45%), #101317;
  text-align: center;
}

.expired-photo .icon { width: 25px; color: var(--yellow); }
.expired-photo strong { color: var(--white); }
.expired-photo small { font-size: 10px; }
.alert-thumb.expired { display: grid; place-items: center; color: var(--muted); background: #15191d; }

.resolution-proof {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(75, 198, 106, 0.16);
  border-radius: 24px;
  background: rgba(75, 198, 106, 0.035);
}

.resolution-proof .section-head span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.before-after-grid figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 17px; background: var(--surface-2); }
.before-after-grid img, .before-after-grid .expired-photo { width: 100%; height: 190px; object-fit: cover; }
.before-after-grid figcaption { position: absolute; right: 8px; bottom: 8px; padding: 6px 9px; border-radius: 999px; color: var(--white); background: rgba(6, 8, 10, 0.78); font-size: 9px; font-weight: 800; backdrop-filter: blur(9px); }
.resolution-demo-button { align-self: center; }

@media (max-width: 760px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-card { grid-template-columns: 118px minmax(0, 1fr) auto; }
  .scenario-photo { height: 84px; }
  .vehicle-card-photo { height: 190px; }
}

@media (max-width: 460px) {
  .scenario-card { grid-template-columns: 94px minmax(0, 1fr) auto; gap: 11px; border-radius: 20px; }
  .scenario-photo { height: 76px; border-radius: 14px; }
  .scenario-card small { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .privacy-result { right: 10px; bottom: 10px; }
  .before-after-grid { grid-template-columns: 1fr; }
  .before-after-grid img, .before-after-grid .expired-photo { height: 180px; }
  .release-vehicle-meta { flex-direction: column; }
}

/* Protection center, community trust and launch network */
.public-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.connection-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(75, 198, 106, 0.22);
  border-radius: 999px;
  color: #bff6cb;
  background: rgba(75, 198, 106, 0.07);
  font-size: 9px;
  font-weight: 800;
}

.connection-pill.offline {
  border-color: rgba(255, 138, 31, 0.3);
  color: #ffc27f;
  background: rgba(255, 138, 31, 0.08);
}

.connection-pill .icon { width: 14px; }

.public-network-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.public-network-strip strong,
.public-network-strip small { display: block; }
.public-network-strip strong { margin: 3px 0; color: var(--yellow); font-size: 15px; letter-spacing: -0.01em; }
.public-network-strip small { color: var(--muted); font-size: 10px; }
.public-network-strip .secondary-button { width: auto; min-height: 40px; }

.protection-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(75, 198, 106, 0.16);
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(110deg, rgba(75, 198, 106, 0.075), rgba(255, 255, 255, 0.025));
  text-align: left;
}

.protection-summary > .icon { width: 18px; color: var(--muted); }
.protection-summary strong, .protection-summary small { display: block; }
.protection-summary strong { margin-bottom: 3px; font-size: 12px; }
.protection-summary small { color: var(--muted); font-size: 9px; }
.summary-score { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 14px; color: #071008; background: var(--green); font-size: 14px; font-weight: 950; }

.protection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
}

.protection-score-card,
.protection-checks,
.protection-module {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(23, 27, 31, 0.98), rgba(12, 15, 18, 0.98));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.protection-score-card {
  display: flex;
  align-items: center;
  gap: clamp(22px, 5vw, 54px);
  min-height: 280px;
  padding: clamp(25px, 5vw, 52px);
  overflow: hidden;
  background: radial-gradient(circle at 18% 50%, rgba(75, 198, 106, 0.12), transparent 32%), linear-gradient(145deg, #171c1c, #0c0f12);
}

.protection-score-card h1 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 52px); line-height: 0.98; letter-spacing: -0.045em; }
.protection-score-card p { max-width: 520px; color: var(--muted); line-height: 1.6; }

.protection-ring {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 154px;
  height: 154px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) var(--score), rgba(255, 255, 255, 0.07) 0);
  box-shadow: 0 0 45px rgba(75, 198, 106, 0.16);
}

.protection-ring::before { position: absolute; width: 124px; height: 124px; border-radius: 50%; background: #101416; content: ''; }
.protection-ring span { position: relative; z-index: 1; text-align: center; }
.protection-ring strong { display: block; font-size: 42px; line-height: 0.9; letter-spacing: -0.06em; }
.protection-ring small { color: var(--muted); font-size: 10px; }

.protection-checks { display: grid; gap: 1px; overflow: hidden; padding: 10px; }
.protection-check { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; min-height: 58px; padding: 12px 14px; border-radius: 16px; background: rgba(255, 255, 255, 0.025); }
.protection-check > .icon:first-child { width: 19px; color: var(--muted); }
.protection-check > .icon:last-child { width: 16px; color: var(--green); }
.protection-check.warning > .icon:last-child { color: var(--orange); }
.protection-check strong, .protection-check small { display: block; }
.protection-check strong { font-size: 11px; }
.protection-check small { margin-top: 3px; color: var(--muted); font-size: 9px; }

.protection-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.protection-module {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

.protection-module h2 { margin: 6px 0 8px; font-size: 22px; letter-spacing: -0.03em; }
.protection-module p { margin-bottom: 16px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.protection-module .primary-button, .protection-module .secondary-button { min-height: 43px; }
.module-icon { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 15px; }
.module-icon .icon { width: 20px; }
.module-icon.yellow { color: var(--yellow); background: rgba(255, 213, 30, 0.1); }
.module-icon.red { color: #ff817a; background: rgba(255, 59, 48, 0.1); }
.module-icon.blue { color: #72baff; background: rgba(68, 157, 255, 0.1); }
.module-icon.green { color: var(--green); background: rgba(75, 198, 106, 0.1); }
.test-channel-list { display: grid; gap: 6px; margin-bottom: 14px; }
.test-channel-list span { display: flex; align-items: center; gap: 8px; padding: 9px 11px; border-radius: 12px; color: var(--muted); background: rgba(255, 255, 255, 0.025); font-size: 10px; }
.test-channel-list .icon { width: 14px; }
.test-channel-list b { margin-left: auto; color: var(--green); }
.last-test { display: block; margin-top: 9px; color: var(--muted); text-align: center; }
.mini-timeline { display: grid; gap: 11px; margin: 16px 0; }
.mini-timeline span { position: relative; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; }
.mini-timeline i { width: 9px; height: 9px; border: 2px solid #434950; border-radius: 50%; }
.mini-timeline .done i { border-color: var(--green); background: var(--green); box-shadow: 0 0 0 4px rgba(75, 198, 106, 0.08); }
.queue-count { display: block; margin-bottom: 14px; color: var(--yellow); }
.module-actions { display: flex; gap: 8px; }
.security-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.security-pills span { display: flex; align-items: center; gap: 5px; padding: 7px 9px; border-radius: 999px; color: #bff6cb; background: rgba(75, 198, 106, 0.08); font-size: 9px; font-weight: 800; }
.security-pills .icon { width: 12px; }

.trusted-contact-preview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}
.trusted-contact-preview strong, .trusted-contact-preview small { display: block; }
.trusted-contact-preview small { margin-top: 3px; color: var(--muted); }
.trusted-avatar, .driver-avatar { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 15px; color: #111; background: var(--yellow); font-weight: 950; }
.consent-check { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 12px; padding: 16px; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 18px; background: rgba(255, 255, 255, 0.025); cursor: pointer; }
.consent-check > input { position: absolute; opacity: 0; }
.consent-check > span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 9px; color: transparent; background: rgba(255, 255, 255, 0.04); }
.consent-check > input:checked + span { color: #111; border-color: var(--yellow); background: var(--yellow); }
.consent-check strong, .consent-check small { display: block; }
.consent-check small { margin-top: 4px; color: var(--muted); font-size: 10px; }

.driver-vehicle-head {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}
.driver-vehicle-head img { width: 210px; height: 132px; border-radius: 20px; object-fit: cover; }
.driver-vehicle-head h1 { margin: 5px 0; font-size: 34px; letter-spacing: -0.04em; }
.driver-vehicle-head p { color: var(--muted); line-height: 1.5; }
.driver-list { display: grid; gap: 10px; }
.driver-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; align-items: center; gap: 13px; padding: 15px; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 20px; background: rgba(255, 255, 255, 0.028); }
.driver-card strong, .driver-card small { display: block; }
.driver-card small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.driver-manage-button { display: flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 12px; color: var(--white); background: rgba(255, 255, 255, 0.05); font-size: 10px; font-weight: 750; }
.driver-manage-button .icon { width: 14px; color: var(--yellow); }
.add-driver-card { display: flex; align-items: center; gap: 14px; width: 100%; margin-top: 12px; padding: 17px; border: 1px dashed rgba(255, 213, 30, 0.28); border-radius: 20px; color: var(--white); background: rgba(255, 213, 30, 0.025); text-align: left; }
.add-driver-card > .icon { width: 22px; color: var(--yellow); }
.add-driver-card strong, .add-driver-card small { display: block; }
.add-driver-card small { margin-top: 3px; color: var(--muted); font-size: 9px; }

.activity-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 5px; }
.witness-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 7px; border-radius: 999px; color: #c8ecff; background: rgba(55, 156, 217, 0.1); font-size: 8px; font-style: normal; font-weight: 800; }
.witness-badge .icon { width: 10px; }
.community-proof { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 12px; margin-bottom: 14px; padding: 16px; border: 1px solid rgba(65, 175, 235, 0.17); border-radius: 20px; background: rgba(65, 175, 235, 0.055); }
.community-proof > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 13px; color: #8fd4ff; background: rgba(65, 175, 235, 0.1); }
.community-proof strong, .community-proof small { display: block; }
.community-proof small { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.community-proof .text-button { grid-column: 2; justify-self: start; }

.escalation-card { margin-bottom: 14px; padding: 17px; border: 1px solid rgba(255, 59, 48, 0.16); border-radius: 20px; background: rgba(255, 59, 48, 0.045); }
.escalation-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 13px; }
.escalation-steps span { padding: 10px; border-radius: 13px; background: rgba(255, 255, 255, 0.03); }
.escalation-steps i { display: grid; width: 26px; height: 26px; margin-bottom: 8px; place-items: center; border-radius: 9px; color: var(--green); background: rgba(75, 198, 106, 0.09); }
.escalation-steps .pending i { color: var(--orange); background: rgba(255, 138, 31, 0.09); }
.escalation-steps b, .escalation-steps small { display: block; }
.escalation-steps b { font-size: 9px; }
.escalation-steps small { margin-top: 3px; color: var(--muted); font-size: 8px; line-height: 1.35; }

.harassment-guard { display: flex; align-items: flex-start; gap: 11px; margin-top: 12px; padding: 14px; border: 1px solid rgba(75, 198, 106, 0.16); border-radius: 18px; color: #c7f4d0; background: rgba(75, 198, 106, 0.045); }
.harassment-guard > .icon { flex: 0 0 auto; width: 20px; }
.harassment-guard strong, .harassment-guard small { display: block; }
.harassment-guard small { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.45; }

.anonymous-tracking { width: min(100%, 560px); margin: 18px auto 0; padding: 18px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 22px; background: rgba(255, 255, 255, 0.035); text-align: left; }
.anonymous-tracking > div:first-child { display: grid; gap: 6px; }
.anonymous-tracking strong { display: flex; align-items: center; gap: 7px; font-size: 15px; }
.anonymous-tracking strong .icon { width: 17px; color: var(--yellow); }
.anonymous-tracking small { color: var(--muted); font-size: 10px; }
.tracking-reference { display: inline-flex; margin: 12px 0; padding: 6px 9px; border-radius: 9px; color: var(--yellow); background: rgba(255, 213, 30, 0.07); font-size: 10px; font-weight: 900; letter-spacing: 0.08em; }
.tracking-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-bottom: 13px; }
.tracking-progress i { height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.tracking-progress i.done { background: var(--green); }
.confirmation-mark.queued { color: var(--orange); background: rgba(255, 138, 31, 0.1); }

.partner-hero { max-width: 920px; padding: clamp(20px, 6vw, 70px) 0 34px; }
.partner-hero h1 { margin: 10px 0 16px; font-size: clamp(42px, 7vw, 82px); line-height: 0.96; letter-spacing: -0.055em; }
.partner-hero p { max-width: 680px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.partner-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; padding: 10px 13px; border-radius: 12px; color: var(--yellow); background: rgba(255, 213, 30, 0.075); font-size: 12px; font-weight: 850; }
.partner-link .icon { width: 15px; }
.partner-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.partner-grid article { min-height: 190px; padding: 22px; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 23px; background: linear-gradient(145deg, rgba(24, 28, 32, 0.98), rgba(13, 16, 19, 0.98)); }
.partner-grid article > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 14px; color: var(--yellow); background: rgba(255, 213, 30, 0.08); }
.partner-grid h2 { margin: 18px 0 7px; font-size: 17px; }
.partner-grid p { color: var(--muted); font-size: 10px; line-height: 1.5; }
.partner-grid b { display: inline-block; margin-top: 16px; color: var(--green); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.partner-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 16px; padding: 26px; border: 1px solid rgba(255, 213, 30, 0.14); border-radius: 25px; background: rgba(255, 213, 30, 0.035); }
.partner-cta h2 { margin: 6px 0; font-size: 24px; }
.partner-cta p { color: var(--muted); font-size: 11px; }
.partner-cta .primary-button { width: auto; min-width: 210px; }

.plaq-large-text { font-size: 112%; }
.plaq-large-text .setting-row small,
.plaq-large-text .activity-copy small,
.plaq-large-text .category-card small { font-size: 11px; }
.plaq-high-contrast { --muted: #c3c7cc; --surface: #14181c; }
.plaq-high-contrast button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.plaq-high-contrast .secondary-button, .plaq-high-contrast .setting-row { border-color: rgba(255, 255, 255, 0.24); }

@media (max-width: 900px) {
  .protection-layout { grid-template-columns: 1fr; }
  .protection-modules { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .connection-pill span { display: none; }
  .public-network-strip { grid-template-columns: 1fr auto; }
  .public-network-strip > .text-button { grid-column: 1 / -1; justify-self: start; }
  .protection-score-card { flex-direction: column; align-items: flex-start; }
  .protection-ring { width: 126px; height: 126px; }
  .protection-ring::before { width: 101px; height: 101px; }
  .protection-ring strong { font-size: 34px; }
  .driver-vehicle-head { grid-template-columns: 1fr; }
  .driver-vehicle-head img { width: 100%; height: 190px; }
  .driver-card { grid-template-columns: auto minmax(0, 1fr) auto; }
  .driver-card > .status-pill { grid-column: 2; justify-self: start; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-cta { align-items: flex-start; flex-direction: column; }
  .partner-cta .primary-button { width: 100%; }
}

@media (max-width: 430px) {
  .public-network-strip { grid-template-columns: 1fr; }
  .public-network-strip .secondary-button { width: 100%; }
  .protection-module { grid-template-columns: 1fr; }
  .module-actions { flex-direction: column; }
  .escalation-steps { grid-template-columns: 1fr; }
  .trusted-contact-preview { grid-template-columns: auto minmax(0, 1fr); }
  .trusted-contact-preview .status-pill { grid-column: 2; justify-self: start; }
}

/* Product depth: camera, intelligence, trust and moderation */

.photo-quality {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(75, 198, 106, 0.24);
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.78);
  color: #9ee5ae;
  font-size: 10px;
  font-weight: 740;
  backdrop-filter: blur(12px);
}

.photo-quality .icon {
  width: 15px;
  height: 15px;
}

.camera-guide-card,
.analysis-photo,
.verification-vehicle,
.abuse-alert-summary,
.network-invite-card {
  border: 1px solid rgba(255, 255, 255, 0.085);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.camera-guide-card {
  overflow: hidden;
  border-radius: 30px;
}

.camera-guide-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  background:
    radial-gradient(circle at center, rgba(246, 213, 59, 0.12), transparent 30%),
    linear-gradient(145deg, #1a1e21, #090b0d);
}

.camera-guide-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.camera-guide-visual > .icon {
  width: 66px;
  height: 66px;
  color: var(--yellow);
  filter: drop-shadow(0 12px 30px rgba(246, 213, 59, 0.2));
}

.camera-guide-visual > span:last-child {
  position: absolute;
  bottom: 46px;
  color: #898e94;
  font-size: 11px;
  font-weight: 700;
}

.camera-tips {
  display: grid;
  gap: 1px;
  padding: 8px 18px 14px;
}

.camera-tips > span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  color: #a8acb1;
  font-size: 11px;
}

.camera-tips .icon {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.analysis-photo {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 28px;
}

.analysis-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.analysis-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(5, 6, 7, 0.52), transparent 45%);
  pointer-events: none;
}

.analysis-scan-line {
  position: absolute;
  z-index: 2;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  box-shadow: 0 0 20px rgba(246, 213, 59, 0.7);
  animation: analysisScan 2.8s ease-in-out infinite;
}

@keyframes analysisScan {
  0%, 100% { top: 17%; opacity: 0.35; }
  50% { top: 78%; opacity: 1; }
}

.analysis-score {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(75, 198, 106, 0.22);
  border-radius: 999px;
  background: rgba(5, 7, 8, 0.78);
  color: #9de1ad;
  font-size: 10px;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.analysis-score .icon {
  width: 15px;
  height: 15px;
}

.analysis-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.analysis-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.022);
}

.analysis-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.analysis-icon.green { background: rgba(75, 198, 106, 0.09); color: var(--green); }
.analysis-icon.blue { background: rgba(94, 167, 255, 0.09); color: var(--blue); }
.analysis-icon.orange { background: rgba(255, 150, 47, 0.09); color: var(--orange); }

.analysis-grid strong,
.analysis-grid small {
  display: block;
}

.analysis-grid strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.analysis-grid small {
  color: var(--muted);
  font-size: 9px;
}

.analysis-grid b {
  color: #b7bbc0;
  font-size: 11px;
}

.analysis-grid b .icon {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.notification-review small,
.review-value strong,
.review-value small {
  display: block;
}

.review-value small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.severity-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.severity-dot.red { background: var(--red); }
.severity-dot.orange { background: var(--orange); }
.severity-dot.blue { background: var(--blue); }

.delivery-receipt {
  display: grid;
  gap: 9px;
  width: min(100%, 490px);
  margin-top: 24px;
}

.delivery-receipt > span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(75, 198, 106, 0.11);
  border-radius: 15px;
  background: rgba(75, 198, 106, 0.035);
  color: #abb0b4;
  font-size: 10px;
  font-weight: 680;
}

.delivery-receipt .icon {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.network-invite-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  width: min(100%, 560px);
  margin-top: 26px;
  padding: 18px;
  border-radius: 24px;
  text-align: left;
}

.network-invite-card h2 {
  margin-bottom: 6px;
  font-size: 18px;
}

.network-invite-card p {
  margin-bottom: 12px;
  font-size: 10px;
  line-height: 1.5;
}

.secondary-button.compact {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 13px;
  font-size: 10px;
}

.qr-preview {
  position: relative;
  display: block;
  width: 112px;
  height: 112px;
  border: 9px solid #f4f2e9;
  border-radius: 15px;
  background: #f4f2e9;
}

.qr-preview i {
  position: absolute;
  top: calc(var(--y) * 10.4px);
  left: calc(var(--x) * 10.4px);
  width: 9px;
  height: 9px;
  border-radius: 1px;
}

.qr-preview i.on {
  background: #111315;
}

.onboarding-list {
  display: grid;
  gap: 12px;
}

.onboarding-list article {
  display: grid;
  grid-template-columns: 30px 50px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 96px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent), var(--surface);
}

.onboarding-list article > span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.onboarding-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(246, 213, 59, 0.08);
  color: var(--yellow);
}

.onboarding-list h2 {
  margin-bottom: 5px;
  font-size: 14px;
}

.onboarding-list p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.product-guardrails {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(75, 198, 106, 0.12);
  border-radius: 18px;
  background: rgba(75, 198, 106, 0.035);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.product-guardrails .icon {
  color: var(--green);
}

.product-guardrails strong {
  color: var(--text);
}

.verification-vehicle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
}

.verification-vehicle strong,
.verification-vehicle small {
  display: block;
}

.verification-vehicle strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.verification-vehicle small {
  color: var(--muted);
  font-size: 9px;
}

.status-pill.pending {
  background: rgba(255, 150, 47, 0.1);
  color: var(--orange);
}

.verification-methods,
.reason-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.verification-methods > button {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 88px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 20px;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.verification-method-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(246, 213, 59, 0.08);
  color: var(--yellow);
}

.verification-methods strong,
.verification-methods small {
  display: block;
}

.verification-methods strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.verification-methods small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.vehicle-proof-label,
.verify-vehicle-button {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 720;
}

.vehicle-proof-label {
  color: var(--green);
  background: rgba(75, 198, 106, 0.08);
}

.verify-vehicle-button {
  border: 1px solid rgba(246, 213, 59, 0.22);
  background: rgba(246, 213, 59, 0.08);
  color: var(--yellow);
  cursor: pointer;
}

.abuse-alert-summary {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 20px;
}

.abuse-alert-summary strong,
.abuse-alert-summary small {
  display: block;
}

.abuse-alert-summary small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.reason-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 17px;
  background: var(--surface);
  color: var(--text);
  font-size: 11px;
  cursor: pointer;
}

.reason-chip .icon {
  color: transparent;
}

.reason-chip.selected {
  border-color: rgba(255, 77, 68, 0.45);
  background: rgba(255, 77, 68, 0.055);
}

.reason-chip.selected .icon {
  color: var(--red);
}

.alert-status,
.detail-severity {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.alert-status {
  top: 16px;
  left: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 10, 0.76);
}

.alert-status .icon {
  width: 14px;
  height: 14px;
}

.alert-status.green { color: var(--green); }
.alert-status.blue { color: var(--blue); }
.alert-status.orange { color: var(--orange); }
.alert-status.yellow { color: var(--yellow); }
.alert-status.red { color: var(--red); }

.detail-severity {
  top: 16px;
  right: 16px;
  color: white;
  background: rgba(7, 9, 10, 0.76);
}

.detail-severity.red { color: #ff8b84; }
.detail-severity.orange { color: #ffb261; }
.detail-severity.blue { color: #92c5ff; }

.status-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.status-timeline > span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #5f656c;
  text-align: center;
}

.status-timeline > span:not(:last-child)::after {
  position: absolute;
  top: 17px;
  left: calc(50% + 19px);
  width: calc(100% - 38px);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.status-timeline i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  background: var(--surface);
}

.status-timeline i .icon {
  width: 15px;
  height: 15px;
}

.status-timeline b {
  font-size: 8px;
}

.status-timeline small {
  color: #555b61;
  font-size: 7px;
}

.status-timeline > span.done {
  color: var(--green);
}

.status-timeline > span.done i {
  border-color: rgba(75, 198, 106, 0.2);
  background: rgba(75, 198, 106, 0.07);
}

.inline-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 7px;
  font-size: 8px;
  font-style: normal;
  font-weight: 760;
}

.inline-status .icon {
  width: 12px;
  height: 12px;
}

.inline-status.green { color: var(--green); }
.inline-status.blue { color: var(--blue); }
.inline-status.orange { color: var(--orange); }
.inline-status.yellow { color: var(--yellow); }
.inline-status.red { color: var(--red); }

@media (min-width: 760px) {
  .analysis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .delivery-receipt {
    grid-template-columns: repeat(3, 1fr);
  }

  .delivery-receipt > span {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .network-invite-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .verification-vehicle {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .status-timeline small {
    display: none;
  }

  .photo-quality {
    top: 16px;
    right: 16px;
    bottom: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium visual refresh */

:root {
  --bg: #050607;
  --bg-soft: #090b0d;
  --surface: #101316;
  --surface-2: #161a1e;
  --surface-3: #20252a;
  --yellow: #f6d53b;
  --yellow-2: #ffe570;
  --text: #f5f3ec;
  --muted: #999da3;
  --muted-2: #666c73;
  --border: rgba(255, 255, 255, 0.085);
  --yellow-border: rgba(246, 213, 59, 0.3);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --radius-sm: 16px;
  --radius: 22px;
  --radius-lg: 30px;
}

body {
  background:
    radial-gradient(circle at 12% -12%, rgba(246, 213, 59, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.035), transparent 25rem),
    linear-gradient(155deg, #07090a 0%, #050607 46%, #090b0c 100%);
}

.app-view::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(246, 213, 59, 0.035) 50%, transparent 50.15%) center bottom / 420px 58% no-repeat,
    linear-gradient(73deg, transparent 49.85%, rgba(255, 255, 255, 0.018) 50%, transparent 50.15%) center bottom / 100% 68% no-repeat,
    linear-gradient(107deg, transparent 49.85%, rgba(255, 255, 255, 0.018) 50%, transparent 50.15%) center bottom / 100% 68% no-repeat;
  mask-image: linear-gradient(to bottom, transparent 8%, #000 74%);
}

.noise {
  opacity: 0.11;
}

.app-header {
  min-height: 82px;
  padding: calc(var(--safe-top) + 18px) clamp(18px, 4vw, 56px) 10px;
}

.brand {
  gap: 12px;
  font-size: 21px;
  font-weight: 820;
  letter-spacing: -0.8px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(246, 213, 59, 0.2);
}

.header-action {
  min-height: 46px;
  padding: 0 17px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.public-main {
  align-items: center;
  min-height: calc(100dvh - 82px);
  padding: 24px clamp(20px, 5vw, 72px) calc(38px + var(--safe-bottom));
  gap: 36px;
}

.hero-copy {
  justify-items: start;
  text-align: left;
}

.eyebrow {
  min-height: 34px;
  margin-bottom: 24px;
  padding: 0 14px;
  border-color: rgba(246, 213, 59, 0.23);
  background: rgba(246, 213, 59, 0.055);
  color: #e9cf5b;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.11em;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(50px, 12.6vw, 94px);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.072em;
}

.hero h1 span {
  display: inline;
  color: var(--yellow);
  background: linear-gradient(110deg, #f2ce26 12%, #fff0a0 52%, #e8bd19 88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  max-width: 540px;
  margin-bottom: 26px;
  color: #a5a8ad;
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-proof > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.028);
  color: #b9bbc0;
  font-size: 10px;
  font-weight: 680;
}

.hero-proof .icon {
  width: 14px;
  height: 14px;
  color: var(--yellow);
}

.capture-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 32%),
    rgba(14, 17, 19, 0.92);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  isolation: isolate;
}

.capture-shell::before {
  position: absolute;
  top: -90px;
  right: -70px;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  background: rgba(246, 213, 59, 0.13);
  filter: blur(70px);
}

.capture-shell-head,
.capture-shell-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.capture-shell-head {
  height: 48px;
  padding: 0 10px;
  color: #777d84;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.capture-shell-head > span:first-child {
  display: inline-flex;
  align-items: center;
  color: #d9dbdc;
}

.capture-shell-head i {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(75, 198, 106, 0.1), 0 0 18px rgba(75, 198, 106, 0.45);
}

.capture-viewport {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 42%, rgba(246, 213, 59, 0.12), transparent 28%),
    linear-gradient(160deg, #171b1e 0%, #0a0c0e 66%, #121518 100%);
}

.capture-viewport::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.capture-viewport::after {
  position: absolute;
  right: 8%;
  bottom: 24%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(246, 213, 59, 0.24), transparent);
  box-shadow: 0 0 18px rgba(246, 213, 59, 0.16);
}

.viewfinder-corner {
  position: absolute;
  z-index: 3;
  width: 31px;
  height: 31px;
  color: rgba(246, 213, 59, 0.65);
}

.viewfinder-corner.top-left { top: 22px; left: 22px; border-top: 2px solid; border-left: 2px solid; border-radius: 8px 0 0; }
.viewfinder-corner.top-right { top: 22px; right: 22px; border-top: 2px solid; border-right: 2px solid; border-radius: 0 8px 0 0; }
.viewfinder-corner.bottom-left { bottom: 22px; left: 22px; border-bottom: 2px solid; border-left: 2px solid; border-radius: 0 0 0 8px; }
.viewfinder-corner.bottom-right { right: 22px; bottom: 22px; border-right: 2px solid; border-bottom: 2px solid; border-radius: 0 0 8px; }

.capture-shell .capture-stage {
  z-index: 2;
  width: 230px;
  margin: -30px auto 0;
}

.capture-shell .capture-ring:nth-child(1) { inset: 2%; border-color: rgba(246, 213, 59, 0.08); }
.capture-shell .capture-ring:nth-child(2) { inset: 17%; border-color: rgba(246, 213, 59, 0.14); }
.capture-shell .capture-ring:nth-child(3) { inset: 32%; border-color: rgba(246, 213, 59, 0.22); }

.capture-shell .capture-button {
  width: 96px;
  height: 96px;
  border: 8px solid rgba(7, 8, 9, 0.82);
  background: linear-gradient(145deg, #ffe65b, #e8bd1b);
  box-shadow: 0 0 0 1px rgba(246, 213, 59, 0.44), 0 22px 56px rgba(246, 213, 59, 0.24), inset 0 2px 0 rgba(255, 255, 255, 0.44);
}

.capture-shell .capture-button .icon {
  width: 34px;
  height: 34px;
}

.capture-copy {
  position: absolute;
  z-index: 4;
  right: 36px;
  bottom: 34px;
  left: 36px;
  text-align: center;
}

.capture-copy strong,
.capture-copy span {
  display: block;
}

.capture-copy strong {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 760;
}

.capture-copy span {
  color: #747a81;
  font-size: 10px;
}

.capture-shell-foot {
  min-height: 64px;
  padding: 10px 7px 1px;
}

.capture-shell .privacy-note {
  padding: 0;
  background: transparent;
  font-size: 9px;
}

.capture-shell .privacy-note .icon {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.capture-shell .demo-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 720;
  text-decoration: none;
}

.capture-shell .demo-link .icon {
  width: 14px;
  height: 14px;
}

.trust-strip {
  display: grid;
  grid-column: 1 / -1;
  gap: 9px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.022);
}

.trust-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.trust-step > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.trust-step strong,
.trust-step small {
  display: block;
}

.trust-step strong {
  margin-bottom: 2px;
  font-size: 11px;
}

.trust-step small {
  color: #6f757b;
  font-size: 9px;
}

.trust-line {
  display: none;
  height: 1px;
  background: linear-gradient(90deg, rgba(246, 213, 59, 0.3), rgba(255, 255, 255, 0.05));
}

.screen-header {
  min-height: calc(76px + var(--safe-top));
  border-bottom-color: rgba(255, 255, 255, 0.055);
  background: rgba(5, 6, 7, 0.78);
  backdrop-filter: blur(28px) saturate(130%);
}

.screen-header-title {
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.01em;
}

.icon-button {
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.content {
  padding-top: 34px;
}

.step-heading {
  margin-bottom: 28px;
}

.step-heading h1,
.owner-heading h1 {
  font-weight: 740;
  letter-spacing: -0.055em;
}

.step-heading p,
.owner-heading p {
  color: #8f949a;
  line-height: 1.6;
}

.progress-wrap {
  margin-bottom: 34px;
}

.progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
}

.progress-bar {
  background: linear-gradient(90deg, #d9ac13, #ffe76d);
  box-shadow: 0 0 14px rgba(246, 213, 59, 0.32);
}

.photo-card,
.scan-panel,
.review-card,
.profile-hero,
.settings-card,
.vehicle-card {
  border-color: rgba(255, 255, 255, 0.085);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 38%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.photo-card {
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.helper-card {
  border-color: rgba(246, 213, 59, 0.12);
  border-radius: 18px;
  background: rgba(246, 213, 59, 0.035);
}

.primary-button,
.secondary-button,
.danger-button {
  min-height: 58px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 780;
}

.primary-button {
  border-color: #f6d53b;
  background: linear-gradient(135deg, #ffe66b, #eec624);
  box-shadow: 0 18px 40px rgba(246, 213, 59, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.035);
}

.category-list {
  gap: 12px;
}

.category-card {
  min-height: 82px;
  border-color: rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.032), transparent 46%),
    rgba(16, 19, 22, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.category-card.selected {
  border-color: rgba(246, 213, 59, 0.74);
  background: linear-gradient(145deg, rgba(246, 213, 59, 0.115), rgba(246, 213, 59, 0.025));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.category-card.red .category-icon { background: rgba(255, 77, 68, 0.09); color: #ff6b63; }
.category-card.orange .category-icon { background: rgba(255, 150, 47, 0.09); color: #ffab4e; }
.category-card.blue .category-icon { background: rgba(94, 167, 255, 0.09); color: #78b8ff; }

.review-card {
  border-radius: 22px;
}

.owner-topbar {
  padding-top: calc(var(--safe-top) + 20px);
}

.owner-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(246, 213, 59, 0.16);
}

.owner-greeting small {
  margin-bottom: 3px;
  color: #747a80;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-greeting strong {
  font-size: 13px;
}

.notification-button {
  position: relative;
}

.notification-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border: 3px solid var(--bg);
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 8px;
  font-weight: 850;
}

.premium-heading {
  max-width: 650px;
  margin-bottom: 30px;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.premium-heading h1 {
  margin-bottom: 10px;
  font-size: clamp(37px, 8vw, 56px);
}

.vehicle-hero {
  min-height: 330px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 76%, rgba(246, 213, 59, 0.17), transparent 36%),
    linear-gradient(140deg, #1b1f22 0%, #101315 52%, #0c0e10 100%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.vehicle-hero::before {
  right: -4%;
  bottom: -48%;
  width: 74%;
  border-color: rgba(246, 213, 59, 0.13);
  box-shadow: 0 0 0 38px rgba(246, 213, 59, 0.025), 0 0 0 76px rgba(246, 213, 59, 0.018);
}

.vehicle-hero::after {
  position: absolute;
  top: 88px;
  right: 19px;
  content: "PA";
  color: rgba(255, 255, 255, 0.025);
  font-size: 112px;
  font-weight: 900;
  letter-spacing: -0.1em;
}

.vehicle-hero-head {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7f858b;
  font-size: 9px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.vehicle-secure .icon {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.vehicle-meta {
  margin-top: 32px;
}

.vehicle-meta h2 {
  font-size: 29px;
  font-weight: 740;
}

.vehicle-hero .car-illustration {
  right: -6px;
  bottom: 12px;
  width: min(62%, 360px);
  color: #939aa0;
}

.hero-stats {
  gap: 0;
  bottom: 24px;
}

.hero-stat {
  min-width: 74px;
  padding-right: 18px;
}

.hero-stat + .hero-stat {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-stat strong {
  font-size: 21px;
}

.quick-action {
  min-height: 88px;
  margin-top: 14px;
  border: 1px solid rgba(246, 213, 59, 0.74);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffe66a, #e9c01f);
  box-shadow: 0 18px 38px rgba(246, 213, 59, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quick-action-icon {
  background: rgba(8, 10, 12, 0.085);
}

.section-head {
  margin-top: 34px;
}

.activity-card,
.alert-card {
  position: relative;
  min-height: 82px;
  border-color: rgba(255, 255, 255, 0.075);
  border-radius: 21px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 48%),
    rgba(15, 18, 20, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.activity-card.is-unread::before,
.alert-card.is-unread::before {
  position: absolute;
  top: 17px;
  left: -2px;
  width: 3px;
  height: 48px;
  border-radius: 999px;
  content: "";
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(246, 213, 59, 0.3);
}

.activity-copy {
  min-width: 0;
}

.activity-end {
  display: grid;
  place-items: center;
}

.activity-card strong,
.alert-card strong {
  font-size: 13px;
  font-weight: 720;
}

.activity-card small,
.alert-card small {
  font-size: 9px;
}

.bottom-nav {
  min-height: calc(78px + var(--safe-bottom));
  padding-top: 9px;
  border-top-color: rgba(255, 255, 255, 0.075);
  background: rgba(8, 10, 11, 0.9);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(28px) saturate(140%);
}

.nav-item {
  font-size: 8px;
  font-weight: 700;
}

.nav-item.active {
  color: #fff1a6;
}

.nav-item.active .icon-wrap {
  background: linear-gradient(135deg, rgba(246, 213, 59, 0.19), rgba(246, 213, 59, 0.06));
  box-shadow: inset 0 0 0 1px rgba(246, 213, 59, 0.12);
}

.filter-chip {
  border-color: rgba(255, 255, 255, 0.085);
  background: rgba(255, 255, 255, 0.02);
}

.filter-chip.active {
  border-color: var(--yellow);
  background: var(--yellow);
}

.toast {
  border-color: rgba(246, 213, 59, 0.17);
  border-radius: 18px;
  background: rgba(22, 26, 29, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 760px) {
  .trust-strip {
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
    align-items: center;
    padding: 18px 24px;
  }

  .trust-line {
    display: block;
  }

  .activity-card,
  .alert-card {
    min-height: 86px;
  }
}

@media (min-width: 980px) {
  .public-main {
    grid-template-columns: minmax(0, 1.03fr) minmax(410px, 0.77fr);
    gap: clamp(54px, 7vw, 112px);
  }

  .hero h1 {
    font-size: clamp(68px, 6.7vw, 100px);
  }

  .capture-shell {
    max-width: 510px;
    justify-self: end;
  }

  .capture-viewport {
    min-height: 390px;
  }

  .dashboard-grid {
    gap: 28px;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  }
}

@media (max-width: 759px) {
  .public-main {
    align-content: start;
    padding-top: 16px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .capture-shell {
    border-radius: 28px;
  }

  .capture-viewport {
    min-height: 340px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 13px;
  }

  .trust-step {
    display: block;
    min-height: 0;
    padding: 4px;
  }

  .trust-step > span {
    display: block;
    margin-bottom: 7px;
  }

  .trust-step strong {
    font-size: 9px;
  }

  .trust-step small {
    display: none;
  }
}

@media (max-width: 420px) {
  .app-header {
    min-height: 74px;
    padding-top: calc(var(--safe-top) + 14px);
  }

  .brand-mark,
  .owner-brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand {
    font-size: 19px;
  }

  .hero h1 {
    font-size: clamp(45px, 13.4vw, 59px);
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 8px;
  }

  .hero-subtitle {
    margin-bottom: 21px;
    font-size: 14px;
  }

  .hero-proof > span {
    font-size: 9px;
  }

  .capture-shell {
    padding: 9px;
  }

  .capture-shell-head {
    height: 43px;
  }

  .capture-viewport {
    min-height: 314px;
  }

  .capture-shell .capture-stage {
    width: 205px;
  }

  .capture-shell .capture-button {
    width: 88px;
    height: 88px;
  }

  .capture-copy {
    right: 24px;
    bottom: 29px;
    left: 24px;
  }

  .capture-shell-foot {
    min-height: 59px;
  }

  .capture-shell .privacy-note span {
    max-width: 145px;
  }

  .vehicle-hero {
    min-height: 315px;
  }

  .vehicle-hero .car-illustration {
    opacity: 0.76;
  }
}

/* Contextual action center and anti-stalking sentinel */

.smart-service-card.sentinel { grid-column: span 2; border-color: rgba(75, 198, 106, 0.17); background: radial-gradient(circle at 8% 50%, rgba(75, 198, 106, 0.09), transparent 30%), linear-gradient(145deg, #17201b, #0b0f10); }

.action-center-launch { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 13px; width: 100%; margin-bottom: 14px; padding: 17px; border: 1px solid rgba(255, 213, 30, 0.2); border-radius: 22px; color: var(--text); background: radial-gradient(circle at 7% 50%, rgba(255, 213, 30, 0.12), transparent 27%), linear-gradient(145deg, #1b1d1e, #0e1113); text-align: left; cursor: pointer; }
.action-center-launch.red { border-color: rgba(255, 77, 68, 0.23); background: radial-gradient(circle at 7% 50%, rgba(255, 77, 68, 0.13), transparent 27%), linear-gradient(145deg, #201718, #0e1113); }
.action-center-launch > span:first-child { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 15px; color: #111; background: var(--yellow); }
.action-center-launch.red > span:first-child { color: #fff; background: var(--red); }
.action-center-launch em, .action-center-launch strong, .action-center-launch small { display: block; }
.action-center-launch em { margin-bottom: 3px; color: var(--yellow); font-size: 8px; font-style: normal; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.action-center-launch.red em { color: #ff8c86; }
.action-center-launch strong { margin-bottom: 3px; font-size: 14px; }
.action-center-launch small { color: var(--muted); font-size: 9px; }
.action-center-launch > .icon { width: 17px; color: var(--muted); }

.action-hero { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr) auto; align-items: center; gap: clamp(22px, 4vw, 46px); padding: 18px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 32px; background: radial-gradient(circle at 85% 10%, rgba(255, 213, 30, .09), transparent 28%), linear-gradient(145deg, #191d21, #0b0e11); }
.action-hero.red { border-color: rgba(255, 77, 68, .16); background: radial-gradient(circle at 85% 10%, rgba(255, 77, 68, .12), transparent 29%), linear-gradient(145deg, #201718, #0b0e11); }
.action-hero-photo { overflow: hidden; min-height: 260px; border-radius: 23px; }
.action-hero-photo img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.action-hero-title { display: flex; align-items: center; gap: 13px; margin: 8px 0 10px; }
.action-hero-title h1 { margin: 0; font-size: clamp(34px, 4.7vw, 62px); line-height: .98; letter-spacing: -.055em; }
.action-hero > div:nth-child(2) > p { margin: 0 0 15px; color: var(--muted); }
.action-progress { display: grid; width: 130px; height: 130px; place-items: center; align-content: center; border: 1px solid rgba(255, 213, 30, .18); border-radius: 50%; background: rgba(255, 213, 30, .05); text-align: center; }
.action-hero.red .action-progress { border-color: rgba(255, 77, 68, .2); background: rgba(255, 77, 68, .05); }
.action-progress strong { color: var(--yellow); font-size: 34px; line-height: 1; }
.action-hero.red .action-progress strong { color: #ff837d; }
.action-progress small { max-width: 75px; margin-top: 4px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.action-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 28px 0 14px; }
.action-intro h2 { margin: 5px 0 6px; font-size: clamp(27px, 3vw, 38px); letter-spacing: -.045em; }
.action-intro p { max-width: 680px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.action-intro > span { display: inline-flex; align-items: center; gap: 6px; padding: 9px 11px; border-radius: 999px; color: var(--yellow); background: rgba(255, 213, 30, .07); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.action-intro > span .icon { width: 13px; }
.action-plan { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.action-step { display: grid; grid-template-columns: auto auto minmax(0, 1fr) auto auto; align-items: center; gap: 12px; min-height: 102px; padding: 15px; border: 1px solid rgba(255, 255, 255, .075); border-radius: 22px; color: var(--text); background: linear-gradient(145deg, rgba(24, 28, 32, .96), rgba(12, 15, 18, .96)); text-align: left; cursor: pointer; }
.action-step:hover { border-color: rgba(255, 213, 30, .24); transform: translateY(-1px); }
.action-step.recommended { border-color: rgba(255, 213, 30, .25); background: radial-gradient(circle at 5% 50%, rgba(255, 213, 30, .1), transparent 25%), linear-gradient(145deg, #1d1d18, #0d1012); }
.action-step.danger { border-color: rgba(255, 77, 68, .22); background: radial-gradient(circle at 5% 50%, rgba(255, 77, 68, .1), transparent 25%), linear-gradient(145deg, #201617, #0d1012); }
.action-step.completed { border-color: rgba(75, 198, 106, .2); background: radial-gradient(circle at 5% 50%, rgba(75, 198, 106, .09), transparent 25%), linear-gradient(145deg, #17201b, #0d1012); }
.action-index { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 10px; color: var(--muted); background: rgba(255, 255, 255, .05); font-size: 10px; font-weight: 900; }
.completed .action-index { color: #09120a; background: var(--green); }
.action-index .icon { width: 14px; }
.action-step > i { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 15px; color: var(--yellow); background: rgba(255, 213, 30, .08); }
.action-step.danger > i { color: #ff817a; background: rgba(255, 77, 68, .09); }
.action-step.completed > i { color: var(--green); background: rgba(75, 198, 106, .08); }
.action-step strong, .action-step small { display: block; }
.action-step strong { margin-bottom: 5px; font-size: 12px; }
.action-step small { color: var(--muted); font-size: 9px; line-height: 1.4; }
.action-step em { padding: 6px 8px; border-radius: 999px; color: var(--muted); background: rgba(255, 255, 255, .04); font-size: 7px; font-style: normal; font-weight: 900; text-transform: uppercase; }
.action-step.recommended em { color: #111; background: var(--yellow); }
.action-step.danger em { color: #fff; background: var(--red); }
.action-step.completed em { color: #08120a; background: var(--green); }
.action-step > .icon { width: 15px; color: var(--muted); }
.emergency-boundary { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 15px; margin-top: 14px; padding: 17px; border: 1px solid rgba(255, 77, 68, .18); border-radius: 21px; background: rgba(255, 77, 68, .045); }
.emergency-boundary > span { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 14px; color: #fff; background: var(--red); }
.emergency-boundary strong { display: block; margin-bottom: 4px; }
.emergency-boundary p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.45; }
.emergency-boundary a { padding: 11px 14px; border-radius: 13px; color: #fff; background: var(--red); font-size: 10px; font-weight: 900; text-decoration: none; }
.action-trace { display: flex; align-items: center; gap: 10px; margin-top: 12px; padding: 14px; color: var(--muted); font-size: 9px; }
.action-trace > .icon { color: var(--green); }
.action-trace strong, .action-trace small { display: block; }
.action-trace small { margin-top: 3px; }

.sentinel-hero { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(25px, 5vw, 56px); min-height: 300px; padding: clamp(28px, 5vw, 56px); overflow: hidden; border: 1px solid rgba(75, 198, 106, .17); border-radius: 32px; background: radial-gradient(circle at 11% 50%, rgba(75, 198, 106, .14), transparent 28%), linear-gradient(145deg, #17201b, #0b0f10); }
.sentinel-hero.orange { border-color: rgba(255, 150, 47, .2); background: radial-gradient(circle at 11% 50%, rgba(255, 150, 47, .15), transparent 28%), linear-gradient(145deg, #201b16, #0b0f10); }
.sentinel-hero.red { border-color: rgba(255, 77, 68, .22); background: radial-gradient(circle at 11% 50%, rgba(255, 77, 68, .16), transparent 28%), linear-gradient(145deg, #211718, #0b0f10); }
.sentinel-hero h1 { margin: 8px 0 12px; font-size: clamp(40px, 5.5vw, 72px); line-height: .96; letter-spacing: -.06em; }
.sentinel-hero p { max-width: 720px; margin: 0; color: var(--muted); line-height: 1.6; }
.sentinel-radar { position: relative; display: grid; width: 150px; height: 150px; place-items: center; }
.sentinel-radar > i { position: absolute; border: 1px solid rgba(75, 198, 106, .24); border-radius: 50%; animation: sentinel-scan 3.2s ease-out infinite; }
.sentinel-radar > i:nth-child(1) { inset: 0; }
.sentinel-radar > i:nth-child(2) { inset: 22px; animation-delay: .6s; }
.sentinel-radar > i:nth-child(3) { inset: 43px; animation-delay: 1.2s; }
.sentinel-hero.orange .sentinel-radar > i { border-color: rgba(255, 150, 47, .3); }
.sentinel-hero.red .sentinel-radar > i { border-color: rgba(255, 77, 68, .32); }
.sentinel-radar > span { position: relative; z-index: 2; display: grid; width: 66px; height: 66px; place-items: center; border-radius: 22px; color: #08120a; background: var(--green); box-shadow: 0 0 50px rgba(75, 198, 106, .2); }
.sentinel-hero.orange .sentinel-radar > span { color: #1b0f04; background: var(--orange); }
.sentinel-hero.red .sentinel-radar > span { color: #fff; background: var(--red); }
.sentinel-radar .icon { width: 30px; height: 30px; }
@keyframes sentinel-scan { 0% { transform: scale(.55); opacity: 0; } 35% { opacity: 1; } 100% { transform: scale(1.08); opacity: 0; } }
.sentinel-score { display: grid; width: 145px; height: 145px; place-items: center; align-content: center; border: 1px solid rgba(75, 198, 106, .2); border-radius: 50%; background: rgba(75, 198, 106, .05); text-align: center; }
.sentinel-score strong { color: var(--green); font-size: 45px; line-height: 1; }
.sentinel-hero.orange .sentinel-score strong { color: var(--orange); }
.sentinel-hero.red .sentinel-score strong { color: var(--red); }
.sentinel-score small { max-width: 80px; margin-top: 5px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.sentinel-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 16px; margin-top: 16px; }
.sentinel-rules, .sentinel-stats, .sentinel-journal { padding: 23px; border: 1px solid rgba(255, 255, 255, .07); border-radius: 26px; background: linear-gradient(145deg, rgba(23, 27, 31, .98), rgba(12, 15, 18, .98)); }
.sentinel-rules .section-head, .sentinel-journal .section-head { margin: 0 0 15px; }
.sentinel-rules h2, .sentinel-journal h2 { margin: 5px 0 0; font-size: 23px; letter-spacing: -.035em; }
.sentinel-rule-grid { display: grid; gap: 8px; }
.sentinel-rule-grid article { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 13px; border-radius: 17px; background: rgba(255, 255, 255, .027); }
.sentinel-rule-grid article > span { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 13px; color: var(--green); background: rgba(75, 198, 106, .08); }
.sentinel-rule-grid strong, .sentinel-rule-grid small { display: block; }
.sentinel-rule-grid small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.sentinel-rule-grid b { color: var(--green); font-size: 8px; text-transform: uppercase; }
.sentinel-stats { display: grid; gap: 8px; }
.sentinel-stats article { display: grid; padding: 17px; border-radius: 18px; background: rgba(255, 255, 255, .027); }
.sentinel-stats strong { color: var(--yellow); font-size: 30px; letter-spacing: -.04em; }
.sentinel-stats small { color: var(--muted); font-size: 9px; }
.sentinel-journal { margin-top: 16px; }
.sentinel-journal .secondary-button { width: auto; }
.sentinel-events { display: grid; gap: 8px; }
.sentinel-events article { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 13px; border-radius: 16px; background: rgba(255, 255, 255, .025); }
.sentinel-events article > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 12px; color: var(--orange); background: rgba(255, 150, 47, .08); }
.sentinel-events article.high > span { color: #ff817a; background: rgba(255, 77, 68, .09); }
.sentinel-events strong, .sentinel-events small { display: block; }
.sentinel-events small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.sentinel-events b { color: var(--green); font-size: 8px; text-align: right; }
.sentinel-privacy { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 14px; margin-top: 16px; padding: 19px; border: 1px solid rgba(94, 167, 255, .15); border-radius: 22px; background: rgba(94, 167, 255, .04); }
.sentinel-privacy > span { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 14px; color: var(--blue); background: rgba(94, 167, 255, .08); }
.sentinel-privacy strong { display: block; }
.sentinel-privacy p { margin: 4px 0 0; color: var(--muted); font-size: 9px; line-height: 1.45; }
.sentinel-privacy .primary-button { width: auto; }

@media (max-width: 940px) {
  .action-hero { grid-template-columns: minmax(240px, .8fr) 1.2fr; }
  .action-progress { grid-column: 2; width: auto; height: auto; justify-self: start; padding: 9px 13px; border-radius: 999px; }
  .action-progress strong, .action-progress small { display: inline; font-size: 9px; }
  .action-progress small { margin-left: 5px; }
  .sentinel-layout { grid-template-columns: 1fr; }
  .sentinel-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .smart-service-card.sentinel { grid-column: span 1; }
  .action-hero, .sentinel-hero { grid-template-columns: 1fr; }
  .action-hero-photo { min-height: 210px; }
  .action-hero-photo img { min-height: 210px; }
  .action-progress { grid-column: 1; }
  .action-intro { align-items: flex-start; flex-direction: column; }
  .action-plan { grid-template-columns: 1fr; }
  .sentinel-radar { width: 115px; height: 115px; }
  .sentinel-score { position: absolute; top: 22px; right: 22px; width: 95px; height: 95px; }
  .sentinel-score strong { font-size: 31px; }
  .sentinel-hero { position: relative; }
  .sentinel-stats { grid-template-columns: 1fr; }
  .sentinel-privacy { grid-template-columns: auto 1fr; }
  .sentinel-privacy .primary-button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 430px) {
  .action-hero { padding: 13px; border-radius: 26px; }
  .action-hero-title h1 { font-size: 38px; }
  .action-step { grid-template-columns: auto auto minmax(0, 1fr) auto; min-height: 92px; padding: 12px; }
  .action-step em { grid-column: 3; justify-self: start; }
  .action-step > .icon { grid-column: 4; grid-row: 1 / span 2; }
  .emergency-boundary { grid-template-columns: auto 1fr; }
  .emergency-boundary a { grid-column: 1 / -1; text-align: center; }
  .sentinel-hero { min-height: 0; padding: 25px 20px; border-radius: 27px; }
  .sentinel-hero h1 { max-width: 250px; font-size: 41px; }
  .sentinel-score { width: 86px; height: 86px; }
  .sentinel-rules, .sentinel-stats, .sentinel-journal { padding: 18px; border-radius: 23px; }
  .sentinel-events article { grid-template-columns: auto 1fr; }
  .sentinel-events b { grid-column: 2; justify-self: start; text-align: left; }
}
:root { --readable-muted: #b2b8bf; }
.mode-banner { min-height: 34px; padding: 8px 20px; background: #202225; color: #c9cdd2; font-size: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; border-bottom: 1px solid #31363c; }
.mode-banner.connected { background: #12231b; color: #a8dfbf; }
.mode-banner .icon { width: 14px; height: 14px; }
.upgrade-screen { min-height: calc(100dvh - 34px); }
.upgrade-screen .content { padding-bottom: 120px; }
.upgrade-screen p { color: var(--readable-muted); font-size: 1rem; line-height: 1.65; }
.upgrade-screen h1 { letter-spacing: -.045em; line-height: 1.06; margin: 16px 0 22px; font-size: clamp(2.15rem, 5vw, 3.8rem); }
.upgrade-screen h2 { font-size: 1.3rem; line-height: 1.3; }
.upgrade-screen .section-kicker { font-size: .875rem; letter-spacing: .07em; }
.upgrade-screen .helper-card { font-size: 1rem; line-height: 1.6; margin: 20px 0; }
.upgrade-screen .primary-button, .upgrade-screen .secondary-button { font-size: 1rem; min-height: 52px; margin-top: 12px; }
.home-heading { margin-bottom: 32px; }
.focus-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 20px; }
.focus-card { padding: 28px; background: #121619; border: 1px solid #2a3035; border-radius: 24px; text-align: left; min-width: 0; }
.priority-card { background: #ffd51e; color: #111417; grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.priority-card .section-kicker, .priority-card p { color: #414027; }
.priority-card .primary-button, .priority-card .secondary-button { background: #111417; color: #fff; border-color: #111417; }
.focus-number { font-size: clamp(5rem,11vw,8rem); font-weight: 800; line-height: 1; letter-spacing: -.07em; margin: 35px 0; }
.focus-number span { display: block; font-size: 1rem; letter-spacing: 0; margin-top: 8px; font-weight: 600; }
.vehicle-focus img { width: 140px; height: 85px; object-fit: cover; float: right; border-radius: 16px; margin: 12px 0 12px 15px; }
.vehicle-focus .mini-plate { display: inline-flex; margin: 10px 0; }
.notifications-focus > .icon { color: #ffd51e; width: 28px; height: 28px; margin-bottom: 12px; }
.home-bottom-actions { display: flex; gap: 16px; margin-top: 16px; }
.home-bottom-actions > * { flex: 1; }
.service-list { display: grid; gap: 16px; margin: 28px 0; }
.service-list > button, .service-list > article { display: flex; gap: 20px; align-items: center; width: 100%; color: #f7f7f7; }
.service-list .icon { flex-shrink: 0; color: #ffd51e; }
.service-list strong { display: block; font-size: 1.1rem; }
.service-list small { display: block; color: var(--readable-muted); margin-top: 8px; font-size: .875rem; line-height: 1.5; }
.upgrade-photo { width: 100%; max-height: 520px; object-fit: contain; border-radius: 20px; background: #111; margin: 24px 0; border: 1px solid #343a40; }
.confirm-check { display: flex; align-items: flex-start; gap: 14px; padding: 20px; border: 1px solid #3b4249; border-radius: 16px; margin: 12px 0; font-size: 1rem; line-height: 1.55; cursor: pointer; }
.confirm-check input { width: 22px; height: 22px; flex-shrink: 0; accent-color: #ffd51e; margin-top: 2px; }
.upgrade-screen .field { display: grid; gap: 10px; margin: 20px 0; font-size: 1rem; }
.upgrade-screen .field input { min-height: 56px; background: #151a1e; border: 1px solid #495159; color: #fff; padding: 16px; border-radius: 14px; font-size: 1rem; width: 100%; }
.upgrade-screen .field .plate-input { font-size: 2rem; }
.honest-confirmation { text-align: center; max-width: 600px; margin: 30px auto; }
.honest-confirmation .confirmation-mark { margin: 24px auto; }
.honest-confirmation h1 { font-size: clamp(2rem,5vw,3rem); }
.wrap-anywhere { display: block; overflow-wrap: anywhere; font-size: 1rem; margin-top: 12px; }
.reply-received { padding: 18px; margin: 20px 0; border-radius: 14px; color: #baf0ca; background: #193226; }
.setup-steps { padding: 0; margin: 32px 0; list-style: none; display: grid; gap: 20px; }
.setup-steps li { display: flex; gap: 20px; background: #13171a; border: 1px solid #2c343a; border-radius: 22px; padding: 24px; }
.setup-steps li > span { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: #ffd51e; color: #111; font-weight: 800; }
.setup-steps li > div { min-width: 0; flex: 1; }
.setup-steps h2 { margin-top: 6px; }
.metrics-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 24px; }
.metrics-grid strong { display: block; font-size: 1.8rem; color: #ffd51e; margin-bottom: 10px; }
.metrics-grid span { font-size: .875rem; color: #c3c9cf; }
.event-list { background: #121619; border: 1px solid #343c43; border-radius: 20px; padding: 24px; }
.event-list > div { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; border-top: 1px solid #30383e; padding: 18px 0; font-size: .875rem; }
.event-list strong { font-weight: 500; color: #d8dce0; }
.upgrade-screen .focus-card > .secondary-button { width: 100%; }
.upgrade-screen .content > .focus-card + .focus-card { margin-top: 18px; }
.upgrade-screen :focus-visible { outline: 3px solid #ffe674; outline-offset: 4px; }
@media (max-width: 680px) {
  .upgrade-screen .content { padding: 22px 20px 120px; }
  .focus-grid { grid-template-columns: 1fr; gap: 14px; }
  .priority-card { grid-row: auto; }
  .focus-card { padding: 24px; border-radius: 22px; }
  .focus-number { margin: 20px 0; font-size: 5rem; }
  .home-bottom-actions { flex-direction: column; gap: 0; }
  .setup-steps li { padding: 20px 16px; gap: 12px; }
  .metrics-grid .focus-card { padding: 18px; }
  .mode-banner { font-size: 12px; padding: 8px 12px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
/* Connected reporting: one compact form after the camera. */
.ocr-panel { border: 1px solid #665c28; background: #ffd51e0a; border-radius: 16px; padding: 16px; margin: 16px 0; }
.ocr-panel strong { color: #ffe363; font-size: 1rem; }
.ocr-panel p { color: #bec2c9; font-size: .85rem; line-height: 1.5; }
.ocr-panel button { min-height: 44px; margin: 6px 0 0; }
.discovery-gallery { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 18px; margin: 24px 0; }
.discovery-gallery article { background: #171a1e; border: 1px solid #2c3036; border-radius: 18px; overflow: hidden; padding-bottom: 16px; }
.discovery-gallery img { width: 100%; aspect-ratio: 1.6; object-fit: cover; }
.discovery-gallery h2 { margin: 14px 16px 8px; font-size: 1rem; }
.discovery-gallery small { margin: 0 16px; color: #aeb4bc; }
.quick-report-heading h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .5rem; }
.quick-report-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 28px; align-items: start; }
.quick-report-grid section { min-width: 0; }
.quick-report-grid h2 { font-size: 1.1rem; margin: 0 0 14px; }
.quick-photo-wrap { position: relative; }
.quick-photo-wrap .upgrade-photo { max-height: 310px; margin: 0; width: 100%; object-fit: cover; }
.quick-photo-wrap > button { position: absolute; right: 10px; bottom: 10px; width: auto; min-height: 40px; padding: 8px 13px; background: #101316e8; }
.quick-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
.quick-category { display: flex; align-items: center; gap: 9px; text-align: left; padding: 11px; min-height: 55px; color: #eff0f2; background: #171a1e; border: 1px solid #30343a; border-radius: 13px; font: inherit; font-size: .8rem; cursor: pointer; }
.quick-category svg { flex: 0 0 20px; width: 20px; height: 20px; color: #ffd51e; }
.quick-category.selected { border-color: #ffd51e; background: #ffd51e18; color: #ffe665; }
.quick-category:focus-visible { outline: 2px solid #ffd51e; outline-offset: 2px; }
.field-help,.plate-photo-helper p { font-size: .8rem; line-height: 1.5; color: #b2b6bd; margin: 7px 0 14px; }
.quick-report-grid .confirm-check { margin: 14px 0; padding: 12px; line-height: 1.5; }
.quick-send { padding-top: 8px; }
.photo-added { color: #75dc94 !important; }
@media(max-width: 640px) { .quick-report-grid { grid-template-columns: 1fr; gap: 18px; } .quick-photo-wrap .upgrade-photo { height: 150px; } .quick-report-heading h1 { font-size: 1.7rem; } .quick-category { min-height: 52px; } .quick-send { position: sticky; bottom: 0; background: #080a0c; padding: 12px 0 max(12px,env(safe-area-inset-bottom)); } }
