:root {
  --wine: #64204f;
  --wine-2: #7d2a62;
  --coral: #dd653a;
  --peach: #eba76f;
  --mint: #266c66;
  --ink: #2d1b2a;
  --muted: #74606f;
  --line: #ead5ca;
  --paper: #fff8ef;
  --soft: #fdf0e1;
  --white: #ffffff;
  --glow: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(235, 167, 111, 0.22), transparent 32%),
    radial-gradient(circle at 95% 8%, rgba(100, 32, 79, 0.08), transparent 30%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 44px;
  background: rgba(255, 248, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--wine);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  display: grid;
  gap: 0;
  font-size: 0.94rem;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-auth-trigger {
  min-height: auto;
  padding: 10px 14px;
  border: 1px solid rgba(221, 101, 58, 0.24);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 241, 223, 0.82);
  box-shadow: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-auth-trigger:hover {
  color: var(--white);
  background: var(--coral);
}

.auth-open {
  overflow: hidden;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: start end;
  padding: 86px 36px 24px;
}

.auth-overlay[hidden] {
  display: none;
}

.auth-overlay-backdrop {
  position: fixed;
  inset: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: rgba(45, 27, 42, 0.24);
  box-shadow: none;
}

.auth-overlay-backdrop:hover {
  background: rgba(45, 27, 42, 0.24);
}

.auth-popover {
  position: relative;
  z-index: 1;
  width: min(380px, calc(100vw - 32px));
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 24px 70px rgba(45, 27, 42, 0.18);
}

.auth-popover h2 {
  color: var(--wine);
  font-size: 1.55rem;
}

.auth-popover p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: 50%;
  color: var(--muted);
  background: #fff1df;
  box-shadow: none;
  font-size: 1.2rem;
}

.auth-close:hover {
  color: var(--white);
  background: var(--coral);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 79px);
  display: flex;
  align-items: center;
  padding: 82px 44px 86px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(66, 34, 58, 0.9) 0%, rgba(112, 54, 89, 0.82) 48%, rgba(211, 123, 83, 0.58) 100%),
    var(--wine);
}

.platform-hero {
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  mask-image: linear-gradient(to right, transparent 0%, #000 28%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 28%);
  z-index: -1;
}

.hero-content {
  max-width: 760px;
  color: var(--white);
}

.hero-mark {
  position: absolute;
  right: min(7vw, 92px);
  top: 104px;
  width: min(470px, 44vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: min(52px, 4vw);
  margin: min(34px, 3vw);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 28px 80px rgba(37, 15, 32, 0.28);
  z-index: 0;
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-eyebrow,
.section-label,
.status {
  margin: 0 0 12px;
  color: #ffd7bd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5.8vw, 4.7rem);
}

.hero-desc,
.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary,
button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary,
button {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #c94d2d);
  box-shadow: 0 10px 24px rgba(221, 101, 58, 0.22);
}

.btn-primary:hover,
button:hover {
  background: linear-gradient(135deg, #e8754a, var(--coral));
}

.btn-primary.dark {
  margin-top: 24px;
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 248, 239, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  right: 44px;
  bottom: 42px;
  width: min(360px, calc(100% - 88px));
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--white);
  background: rgba(45, 27, 42, 0.76);
  border: 1px solid rgba(255, 248, 239, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(28, 11, 24, 0.25);
}

.hero-panel strong {
  font-size: 1.1rem;
}

.hero-panel small {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

section {
  padding: 82px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading h2,
.trust h2,
.urgent h2,
.signup h2,
.reviews h2 {
  color: var(--wine);
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.search-section,
.urgent {
  background: var(--white);
}

.search-box,
.form-panel,
.pass-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 50px rgba(100, 32, 79, 0.08);
}

.search-box {
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
}

.signup-form {
  align-content: start;
}

.signup-vat-step,
.signup-locked-fields {
  display: grid;
  gap: 14px;
}

.signup-vat-step {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.signup-locked-fields[hidden],
.signup-vat-status[hidden] {
  display: none;
}

.signup-vat-status {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.45;
}

.signup-vat-status.is-info {
  color: #31566f;
  background: #edf6fb;
}

.signup-vat-status.is-success {
  color: #17643a;
  background: #e8f5ee;
}

.signup-vat-status.is-error {
  color: #8f1d1d;
  background: #fff0f0;
}

.signup-location {
  display: grid;
  gap: 10px;
}

.signup-location-fields {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 10px;
}

.location-button {
  min-height: 46px;
  border: 1px solid rgba(100, 32, 79, 0.2);
  background: #fff;
  color: var(--wine);
}

.location-button:hover:not(:disabled) {
  border-color: var(--wine);
  background: #fff8fb;
}

.location-status {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 750;
}

.location-status[hidden] {
  display: none;
}

.location-status.is-info {
  color: #31566f;
  background: #edf6fb;
}

.location-status.is-success {
  color: #17643a;
  background: #e8f5ee;
}

.location-status.is-error {
  color: #8f1d1d;
  background: #fff0f0;
}

label {
  display: grid;
  gap: 7px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--glow);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(221, 101, 58, 0.12);
}

.results-head {
  display: flex;
  justify-content: space-between;
  margin: 28px 0 16px;
  color: var(--muted);
  font-weight: 700;
}

.results-head a {
  color: var(--wine);
  text-decoration: none;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.profile-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 12px 34px rgba(100, 32, 79, 0.07);
}

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 132px;
  background: linear-gradient(135deg, rgba(100, 32, 79, 0.12), rgba(221, 101, 58, 0.16));
}

.portfolio-strip img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-body {
  display: grid;
  gap: 15px;
  padding: 18px;
}

.profile-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.profile-top h3 {
  margin-bottom: 4px;
  color: var(--wine);
  font-size: 1.45rem;
}

.profile-top span,
.profile-body p,
.split p,
.detail-panel p,
.trust p {
  color: var(--muted);
  line-height: 1.65;
}

.rating {
  min-width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff3e4, #f9e0ce);
  color: var(--wine);
  text-align: center;
}

.rating small {
  color: var(--muted);
  font-size: 0.72rem;
}

.chips,
.verified,
.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span,
.verified span,
.profile-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff1df;
  font-size: 0.8rem;
  font-weight: 700;
}

.verified span {
  color: var(--wine);
  background: #f6d5c4;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.card-footer a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.how,
.signup,
.reviews {
  background: var(--soft);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div,
.trust-grid div,
.review-grid article,
.detail-panel,
.summary-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.steps strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), var(--coral));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.trust-grid h3,
.detail-panel h2,
.detail-panel h3 {
  color: var(--wine);
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.profile-page .topbar + main {
  padding-top: 0;
}

.profile-hero {
  padding: 74px 0;
  background:
    linear-gradient(115deg, rgba(56, 22, 48, 0.96), rgba(100, 32, 79, 0.9) 55%, rgba(221, 101, 58, 0.68)),
    var(--wine);
  color: var(--white);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
}

.profile-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.profile-hero p:not(.status) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.summary-card,
.profile-contact-card {
  display: grid;
  gap: 8px;
  color: var(--ink);
}

.summary-card strong,
.profile-score strong {
  color: var(--wine);
  font-size: 3rem;
  font-family: "Playfair Display", Georgia, serif;
}

.summary-card b,
.profile-contact-card b {
  margin-top: 8px;
  color: var(--coral);
  font-size: 1.3rem;
}

.profile-hero-copy {
  min-width: 0;
}

.profile-contact-card {
  position: sticky;
  top: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(29, 16, 25, 0.2);
}

.profile-contact-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: var(--soft);
  object-fit: cover;
}

.profile-contact-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.profile-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.profile-score strong {
  font-size: 2.25rem;
}

.profile-score span {
  color: var(--muted);
  font-weight: 800;
}

.profile-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.profile-anchor-nav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.profile-anchor-nav a {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.profile-anchor-nav a:hover {
  color: var(--wine);
  background: rgba(120, 32, 86, 0.08);
}

.profile-detail-section {
  background: var(--white);
}

.profile-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.profile-main-panel,
.profile-side-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.profile-main-panel h2,
.profile-side-panel h3 {
  color: var(--wine);
}

.profile-main-panel p,
.profile-side-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.profile-side-panel {
  position: sticky;
  top: 74px;
}

.profile-side-panel strong {
  color: var(--coral);
  font-size: 1.25rem;
}

.profile-steps {
  display: grid;
  gap: 12px;
}

.profile-steps div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.profile-steps strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--wine);
}

.chips.is-compact {
  gap: 8px;
}

.profile-map {
  width: 100%;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-map-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-weight: 800;
}

.profile-map-link {
  width: fit-content;
  color: var(--wine);
  font-weight: 850;
  text-decoration: none;
}

.profile-facts {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.profile-facts li {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.profile-facts span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-facts strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: var(--soft);
}

.profile-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.profile-carousel-track {
  position: relative;
  aspect-ratio: 16 / 10;
}

.profile-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.profile-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.profile-carousel-slide img {
  width: 100%;
  height: 100%;
  background: var(--soft);
  object-fit: cover;
}

.profile-carousel-button {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(29, 16, 25, 0.14);
  transform: translateY(-50%);
}

.profile-carousel-button:hover {
  background: var(--white);
}

.profile-carousel-button.is-prev {
  left: 12px;
}

.profile-carousel-button.is-next {
  right: 12px;
}

.profile-carousel-dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.profile-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.profile-carousel-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--white);
}

.detail-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.reviews-head {
  max-width: 720px;
}

.reviews-head p {
  color: var(--muted);
  line-height: 1.6;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.reviews-layout .review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-grid article span {
  display: block;
  margin: 8px 0;
  color: var(--coral);
  font-weight: 800;
}

.review-grid article small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 750;
}

.review-submit-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-submit-card h3 {
  color: var(--wine);
  font-size: 1.2rem;
}

.review-submit-card form,
.review-submit-card label {
  display: grid;
  gap: 10px;
}

.review-submit-card input,
.review-submit-card select,
.review-submit-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.review-submit-card button {
  border-radius: 8px;
}

.review-submit-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.center-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at top, rgba(221, 101, 58, 0.18), transparent 42%),
    var(--soft);
}

.waiting-page {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(66, 34, 58, 0.9) 0%, rgba(112, 54, 89, 0.82) 48%, rgba(211, 123, 83, 0.58) 100%),
    url("/img/hero_crop.png") center right / cover no-repeat;
}

.waiting-shell {
  min-height: 100vh;
  display: grid;
}

.waiting-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 48px;
  align-items: end;
  padding: 54px;
  overflow: hidden;
}

.waiting-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(45, 27, 42, 0.72), rgba(45, 27, 42, 0.18));
  pointer-events: none;
}

.waiting-content,
.waiting-panel {
  position: relative;
  z-index: 1;
}

.waiting-content {
  max-width: 780px;
  color: var(--white);
}

.waiting-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.waiting-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 6px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.94);
  mix-blend-mode: normal;
}

.waiting-brand span {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.waiting-content h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.waiting-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.waiting-actions {
  margin-top: 34px;
}

.waiting-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  background: rgba(45, 27, 42, 0.72);
  border: 1px solid rgba(255, 248, 239, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(28, 11, 24, 0.25);
}

.waiting-panel strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.waiting-panel span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.founder-page {
  background:
    linear-gradient(115deg, rgba(47, 18, 41, 0.94) 0%, rgba(96, 30, 75, 0.86) 46%, rgba(221, 101, 58, 0.52) 100%),
    url("/img/hero_crop.png") center right / cover no-repeat fixed;
  overflow-x: hidden;
}

.founder-shell {
  background: rgba(255, 248, 239, 0.02);
}

.founder-hero {
  min-height: 92vh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: 36px clamp(22px, 5vw, 64px) 58px;
}

.founder-hero::before {
  background:
    linear-gradient(90deg, rgba(45, 27, 42, 0.82), rgba(45, 27, 42, 0.38) 54%, rgba(45, 27, 42, 0.16)),
    linear-gradient(0deg, rgba(45, 27, 42, 0.32), transparent 36%);
}

.founder-content {
  min-width: 0;
  max-width: 900px;
  align-self: center;
}

.founder-brand {
  margin-bottom: clamp(34px, 6vh, 72px);
}

.founder-content h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: 0;
}

.founder-lead {
  max-width: 720px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.founder-momentum {
  width: fit-content;
  max-width: 100%;
  margin: 24px 0 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 248, 239, 0.28);
  border-radius: 999px;
  color: #ffe7d7;
  background: rgba(255, 253, 248, 0.1);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.35;
}

.founder-counter {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(255, 248, 239, 0.22);
  border-radius: 8px;
  background: rgba(45, 27, 42, 0.52);
  box-shadow: 0 24px 80px rgba(28, 11, 24, 0.26);
  backdrop-filter: blur(14px);
}

.founder-counter div:not(.founder-progress) {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.08);
}

.founder-counter strong {
  color: #ffe7d7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.founder-counter span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.founder-progress {
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.18);
}

.founder-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--peach), var(--coral));
}

.founder-benefits {
  width: min(760px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.founder-benefits span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 248, 239, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 253, 248, 0.1);
  font-size: 0.84rem;
  font-weight: 850;
}

.founder-form-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 16px;
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 248, 239, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 28px 86px rgba(28, 11, 24, 0.34);
}

.founder-form-head {
  display: grid;
  gap: 8px;
}

.founder-form-head .section-label,
.founder-preview-heading .section-label {
  color: var(--coral);
}

.founder-form-head h2 {
  color: var(--wine);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.founder-form-head p:not(.section-label),
.founder-form small {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.founder-form {
  display: grid;
  gap: 12px;
}

.founder-vat-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.founder-vat-button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(100, 32, 79, 0.2);
  color: var(--wine);
  background: #ffffff;
  box-shadow: none;
  white-space: nowrap;
}

.founder-vat-button:hover:not(:disabled) {
  border-color: var(--wine);
  color: var(--wine);
  background: rgba(100, 32, 79, 0.08);
}

.founder-vat-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.founder-form-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 10px;
}

.founder-form textarea {
  min-height: 88px;
}

.founder-form button {
  width: 100%;
  min-height: 50px;
}

.founder-preview-section {
  position: relative;
  z-index: 2;
  padding: 78px 0 86px;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(255, 253, 248, 0.98));
}

.founder-preview-heading h2 {
  max-width: 760px;
  color: var(--wine);
  font-size: clamp(2rem, 4.4vw, 3.7rem);
}

.founder-preview-cta {
  color: var(--wine);
  border-color: rgba(100, 32, 79, 0.2);
  background: rgba(100, 32, 79, 0.06);
}

.founder-screenshots {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.founder-shot {
  min-height: 300px;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 223, 0.76));
  box-shadow: 0 24px 70px rgba(100, 32, 79, 0.11);
}

.founder-shot-large {
  grid-row: span 2;
  min-height: 620px;
}

.shot-topbar {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.shot-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e3c6b5;
}

.shot-topbar strong {
  margin-left: 8px;
  color: var(--wine);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.shot-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
}

.shot-search b {
  color: var(--wine);
  font-size: 1.4rem;
}

.shot-search span,
.shot-search em,
.shot-profile-card small,
.shot-public-profile p,
.shot-dashboard span,
.shot-dashboard p {
  color: var(--muted);
}

.shot-search em {
  grid-row: span 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff1df;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 850;
}

.shot-profile-grid {
  display: grid;
  gap: 12px;
}

.shot-profile-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.shot-profile-card.is-highlighted {
  border-color: rgba(221, 101, 58, 0.44);
  box-shadow: 0 16px 40px rgba(221, 101, 58, 0.12);
}

.shot-profile-card.is-text-only {
  grid-template-columns: 1fr;
}

.shot-profile-card img {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

.shot-profile-card div,
.shot-public-profile,
.shot-dashboard {
  display: grid;
  gap: 8px;
}

.shot-profile-card strong,
.shot-public-profile h3,
.shot-dashboard strong {
  color: var(--wine);
}

.shot-profile-card span,
.shot-public-profile b {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), var(--coral));
  font-size: 0.78rem;
  font-weight: 850;
}

.shot-public-profile {
  justify-items: start;
  align-content: start;
}

.shot-public-profile img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  padding: 10px;
  border-radius: 8px;
  background: #fff7ef;
}

.shot-public-profile h3 {
  font-size: 1.7rem;
}

.shot-public-profile div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shot-public-profile div span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--wine);
  background: #fff1df;
  font-size: 0.8rem;
  font-weight: 850;
}

.shot-dashboard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shot-dashboard div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
}

.shot-dashboard strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.shot-dashboard p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  background: #fff1df;
  line-height: 1.55;
  font-weight: 750;
}

.home-login-page {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(66, 34, 58, 0.9) 0%, rgba(112, 54, 89, 0.82) 48%, rgba(211, 123, 83, 0.58) 100%),
    url("/img/hero_crop.png") center right / cover no-repeat;
  color: var(--white);
}

.home-login-shell {
  min-height: 100vh;
  display: grid;
}

.home-login-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 56px;
  align-items: center;
  padding: 46px 54px;
  background: linear-gradient(90deg, rgba(45, 27, 42, 0.76), rgba(45, 27, 42, 0.18));
}

.home-login-brand {
  position: absolute;
  top: 34px;
  left: 54px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.home-login-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 6px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.94);
}

.home-login-copy {
  max-width: 760px;
  padding-top: 80px;
}

.home-login-copy h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5.8vw, 5.2rem);
}

.home-login-copy p:not(.hero-eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-login-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 8px;
  color: #171717;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(28, 11, 24, 0.22);
}

.home-login-card h2 {
  color: #171717;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.45rem;
}

.home-login-card p {
  margin: 0;
  color: #777b84;
  line-height: 1.55;
}

.pass-card {
  width: min(520px, 100%);
}

.admin-page,
.admin-login-page {
  --admin-bg: #f6f7f9;
  --admin-surface: #ffffff;
  --admin-border: #e3e7ec;
  --admin-text: #18202a;
  --admin-muted: #697386;
  --admin-accent: #64204f;
  --admin-soft: #f8f2f6;
  background: var(--admin-bg);
  color: var(--admin-text);
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--admin-border);
  backdrop-filter: blur(12px);
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--admin-text);
  font-weight: 850;
  text-decoration: none;
}

.admin-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.admin-brand span {
  display: grid;
  font-size: 0.94rem;
  line-height: 1.1;
}

.admin-brand small,
.admin-kicker {
  color: var(--admin-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-nav a,
.admin-login-card a {
  color: var(--admin-muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.admin-nav a {
  padding: 9px 12px;
  border-radius: 6px;
}

.admin-nav a:hover,
.admin-login-card a:hover {
  color: var(--admin-accent);
}

.admin-nav .admin-logout {
  color: var(--admin-accent);
  background: var(--admin-soft);
}

.admin-main {
  padding: 38px 0 72px;
}

.admin-hero-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 24px;
}

.admin-hero-section h1,
.admin-login-card h1,
.admin-panel h2 {
  color: var(--admin-text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

.admin-hero-section h1 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.admin-hero-section p:not(.admin-kicker) {
  margin: 10px 0 0;
  max-width: 620px;
  color: var(--admin-muted);
  line-height: 1.6;
}

.admin-user {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid var(--admin-border);
  border-radius: 999px;
  color: var(--admin-muted);
  background: var(--admin-surface);
  font-size: 0.88rem;
  font-weight: 750;
}

.admin-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.admin-meta-line span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  color: var(--admin-text);
  background: #fbfcfd;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.admin-stats article,
.admin-panel,
.admin-login-card {
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface);
  box-shadow: 0 10px 30px rgba(24, 32, 42, 0.05);
}

.admin-stats article {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.admin-stats span {
  color: var(--admin-muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.admin-stats strong {
  color: var(--admin-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0;
  line-height: 1;
}

.admin-stats small {
  color: var(--admin-muted);
  font-size: 0.84rem;
}

.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-panel {
  overflow: hidden;
}

.admin-panel h2 {
  padding: 18px 20px;
  border-bottom: 1px solid var(--admin-border);
  font-size: 1rem;
  font-weight: 850;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-panel table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.admin-panel th,
.admin-panel td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--admin-border);
  text-align: left;
  vertical-align: middle;
}

.admin-panel th {
  color: var(--admin-muted);
  background: #fbfcfd;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-panel td {
  color: var(--admin-text);
  font-size: 0.93rem;
}

.admin-panel tbody tr:hover {
  background: #fbfcfd;
}

.admin-panel td small {
  display: block;
  margin-top: 4px;
  color: var(--admin-muted);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--admin-muted);
  background: #f1f3f5;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-badge.is-ok {
  color: #17643a;
  background: #e8f5ee;
}

.admin-badge.is-pending {
  color: #8a4b12;
  background: #fff3df;
}

.admin-status-link {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
}

.admin-status-link:hover .admin-badge {
  box-shadow: 0 0 0 3px rgba(100, 32, 79, 0.1);
}

.admin-table-action {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--admin-accent);
  background: var(--admin-soft);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.admin-role-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 2px 4px 2px 0;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.admin-role-tag.is-pro {
  color: #17643a;
  background: #e8f5ee;
}

.admin-role-tag.is-requester {
  color: #64204f;
  background: var(--admin-soft);
}

.admin-action-link {
  color: var(--admin-accent);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.admin-danger-button {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  color: #9d1c1c;
  background: #fff0f0;
  box-shadow: none;
  font-size: 0.82rem;
}

.admin-danger-button:hover {
  background: #ffdede;
}

.verify-documents-panel {
  margin-bottom: 18px;
}

.verify-documents-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.verify-documents-head h2 {
  margin: 0;
  color: var(--admin-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.1rem;
}

.verify-documents-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.verify-document-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: #fbfcfd;
}

.verify-document-card.is-ok {
  border-color: #cde8d8;
  background: #f6fbf8;
}

.verify-document-card strong {
  display: block;
  color: var(--admin-text);
  font-size: 0.94rem;
}

.verify-document-card span {
  display: block;
  margin-top: 6px;
  color: var(--admin-muted);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
}

.verify-document-card a,
.verify-document-state {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--admin-accent);
  background: var(--admin-soft);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
}

.verify-document-state {
  color: #8a4b12;
  background: #fff3df;
}

.verify-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.verify-panel,
.verify-summary {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface);
  box-shadow: 0 10px 30px rgba(24, 32, 42, 0.05);
}

.verify-panel {
  grid-column: 1;
}

.verify-summary {
  position: sticky;
  top: 92px;
  grid-column: 2;
  grid-row: 1 / span 3;
}

.verify-panel-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.verify-panel-head > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--admin-surface);
  background: var(--admin-accent);
  font-weight: 900;
}

.verify-panel h2,
.verify-summary h2 {
  color: var(--admin-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.05rem;
}

.admin-panel h2 a {
  color: inherit;
  text-decoration: none;
}

.verify-panel p {
  margin: 6px 0 0;
  color: var(--admin-muted);
  line-height: 1.5;
}

.verify-panel input,
.verify-panel textarea,
.verify-summary select,
.verify-summary textarea {
  border-color: var(--admin-border);
  border-radius: 8px;
  background: #fbfcfd;
}

.verify-panel textarea,
.verify-summary textarea {
  min-height: 122px;
}

.verify-panel input:focus,
.verify-panel textarea:focus,
.verify-summary select:focus,
.verify-summary textarea:focus {
  border-color: var(--admin-accent);
  box-shadow: 0 0 0 3px rgba(100, 32, 79, 0.1);
}

.verify-summary select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--admin-text);
  font: inherit;
}

.verify-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.verify-actions button,
.verify-summary button {
  border-radius: 8px;
  background: var(--admin-accent);
  box-shadow: none;
}

.verify-actions button:hover,
.verify-summary button:hover {
  background: #50183f;
}

.verify-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.verify-result-grid div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: #fbfcfd;
}

.verify-result-grid strong {
  color: var(--admin-muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.verify-result-grid span {
  color: var(--admin-text);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.45;
}

.verify-check {
  display: inline-flex;
  grid-template-columns: none;
  gap: 10px;
  align-items: center;
  color: var(--admin-text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.verify-check input {
  width: 18px;
  min-height: 18px;
}

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

.verify-proof-list .verify-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  padding: 12px 14px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: #fbfcfd;
}

.verify-proof-list .verify-check a {
  color: var(--admin-accent);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.verify-proof-list .verify-check em {
  color: var(--admin-muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 750;
}

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

.verify-status-list span {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 8px;
  color: #8a4b12;
  background: #fff3df;
  font-weight: 850;
}

.verify-status-list span::after {
  content: "À vérifier";
}

.verify-status-list span.is-ok {
  color: #17643a;
  background: #e8f5ee;
}

.verify-status-list span.is-ok::after {
  content: "OK";
}

.verify-summary label {
  color: var(--admin-muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.verify-summary a {
  color: var(--admin-accent);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.admin-login-card {
  width: min(420px, 100%);
  display: grid;
  gap: 14px;
  padding: 30px;
}

.admin-login-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.admin-login-card h1 {
  font-size: 1.8rem;
}

.admin-login-card p:not(.admin-kicker) {
  margin: -6px 0 4px;
  color: var(--admin-muted);
  line-height: 1.55;
}

.admin-login-card label {
  color: var(--admin-text);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.admin-login-card input {
  border-color: var(--admin-border);
  border-radius: 8px;
  background: #fbfcfd;
}

.admin-login-card input:focus {
  border-color: var(--admin-accent);
  box-shadow: 0 0 0 3px rgba(100, 32, 79, 0.1);
}

.admin-login-card button {
  width: 100%;
  border-radius: 8px;
  background: var(--admin-accent);
  box-shadow: none;
}

.admin-login-card button:hover {
  background: #50183f;
}

.member-page {
  --member-bg: #f5f5f5;
  --member-surface: #ffffff;
  --member-text: #171717;
  --member-muted: #9699a1;
  --member-line: #ececec;
  --member-accent: #ff5d63;
  --member-accent-soft: #ffa7ac;
  margin: 0;
  background: var(--member-bg);
  color: var(--member-text);
  font-family: Inter, Arial, sans-serif;
}

.member-topbar {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  background: var(--member-surface);
}

.member-logo {
  color: var(--member-accent);
  font-size: 1.55rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.member-search {
  width: min(460px, 42vw);
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: #f4f4f4;
}

.member-search input {
  min-height: 42px;
  border: 0;
  background: transparent;
  padding: 0 18px;
  color: var(--member-text);
  font-weight: 750;
}

.member-search input:focus {
  box-shadow: none;
}

.member-search button {
  width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 50%;
  background: var(--member-accent);
  box-shadow: none;
  font-size: 1.5rem;
}

.member-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.member-actions a,
.member-actions span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--member-text);
  background: #f7f7f7;
  font-weight: 850;
  text-decoration: none;
}

.member-actions span {
  color: var(--member-surface);
  background: var(--member-accent);
}

.member-main-nav {
  height: 56px;
  display: flex;
  justify-content: center;
  gap: 48px;
  background: #202020;
}

.member-main-nav a,
.member-subnav a {
  display: flex;
  align-items: center;
  color: #b8b8b8;
  font-weight: 850;
  text-decoration: none;
}

.member-main-nav a.is-active {
  color: var(--member-surface);
  box-shadow: inset 0 -4px 0 var(--member-muted);
}

.member-subnav {
  height: 50px;
  display: flex;
  justify-content: center;
  gap: 42px;
  background: var(--member-surface);
}

.member-subnav a {
  color: var(--member-muted);
  font-size: 0.9rem;
}

.member-subnav a.is-active {
  color: var(--member-text);
}

.member-main {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 54px;
}

.member-alert {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.member-alert-success {
  color: #17643a;
  background: #e8f5ee;
}

.member-alert-error {
  color: #8f1d1d;
  background: #fff0f0;
}

.member-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.member-column {
  display: grid;
  gap: 20px;
}

.member-card {
  display: grid;
  gap: 20px;
  padding: 30px;
  border-radius: 6px;
  background: var(--member-surface);
}

.member-card h1,
.member-card h2 {
  color: var(--member-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.member-card label {
  color: var(--member-muted);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.member-card input,
.member-card textarea {
  min-height: 60px;
  border: 1px solid #dedede;
  border-radius: 5px;
  background: var(--member-surface);
  color: var(--member-text);
  font-weight: 750;
}

.member-card textarea {
  min-height: 108px;
}

.member-card input:focus,
.member-card textarea:focus {
  border-color: var(--member-accent);
  box-shadow: 0 0 0 3px rgba(255, 93, 99, 0.12);
}

.member-card button,
.member-button {
  justify-self: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 16px;
  color: var(--member-surface);
  background: var(--member-accent-soft);
  box-shadow: none;
  font-weight: 900;
  text-decoration: none;
}

.member-card button:hover,
.member-button:hover {
  background: var(--member-accent);
}

.member-map {
  position: relative;
  height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.32) 49%, transparent 50%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.32) 49%, transparent 50%),
    #c9c9c9;
}

.member-map span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid #c9272d;
  border-radius: 50% 50% 50% 0;
  background: #f04444;
  transform: rotate(-45deg);
}

.member-map span::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #9d1d22;
}

.member-avatar {
  position: relative;
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  justify-self: center;
  overflow: visible;
  border-radius: 44px;
  background: #d3d3d3;
}

.member-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.member-avatar span {
  position: relative;
  color: #999;
  font-size: 4rem;
}

.member-avatar b {
  position: absolute;
  right: -20px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--member-surface);
  background: var(--member-accent);
}

.member-password-card {
  min-height: 200px;
  align-content: center;
  justify-items: center;
}

.member-identity-visual {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: #f4f4f4;
}

.member-identity-visual span {
  width: 64px;
  height: 50px;
  border-left: 7px solid #bdc3df;
  border-bottom: 4px solid #bdc3df;
  background:
    linear-gradient(#173360, #173360) 42px 14px / 28px 3px no-repeat,
    linear-gradient(#173360, #173360) 42px 26px / 20px 3px no-repeat,
    radial-gradient(circle at 25px 27px, #8fc5ff 0 10px, transparent 11px),
    linear-gradient(#64204f, #64204f) 35px 0 / 10px 16px no-repeat;
}

.member-identity-card p {
  margin: 0;
  color: var(--member-muted);
  font-weight: 800;
  text-align: center;
}

/* Professional account: aligned with the admin interface, quieter than the previous social-style UI. */
.member-page {
  --member-bg: #f6f7f9;
  --member-surface: #ffffff;
  --member-text: #18202a;
  --member-muted: #697386;
  --member-line: #e3e7ec;
  --member-accent: #64204f;
  --member-accent-soft: #f8f2f6;
}

.member-topbar {
  min-height: 68px;
  height: auto;
  padding: 12px 36px;
  border-bottom: 1px solid var(--member-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.member-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--member-text);
  font-size: 0.94rem;
  line-height: 1.1;
  text-transform: none;
}

.member-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.member-logo span {
  display: grid;
}

.member-logo small {
  margin-top: 3px;
  color: var(--member-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.member-search {
  width: min(360px, 34vw);
  grid-template-columns: 1fr auto;
  padding: 0;
  border: 1px solid var(--member-line);
  border-radius: 8px;
  background: #fbfcfd;
}

.member-search input {
  min-height: 42px;
  font-weight: 650;
}

.member-search button {
  width: auto;
  min-height: 34px;
  margin: 4px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--member-accent);
  font-size: 0.78rem;
}

.member-actions {
  gap: 8px;
}

.member-actions a {
  width: auto;
  height: 36px;
  padding: 0 11px;
  border: 1px solid var(--member-line);
  border-radius: 6px;
  color: var(--member-muted);
  background: var(--member-surface);
  font-size: 0.82rem;
}

.member-actions a:hover {
  color: var(--member-accent);
  background: var(--member-accent-soft);
}

.member-actions span {
  width: 36px;
  height: 36px;
  color: var(--member-surface);
  background: var(--member-accent);
}

.member-main-nav {
  height: auto;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid var(--member-line);
  background: var(--member-surface);
}

.member-main-nav a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--member-muted);
  font-size: 0.9rem;
}

.member-main-nav a.is-active {
  color: var(--member-accent);
  background: var(--member-accent-soft);
  box-shadow: none;
}

.member-subnav {
  height: auto;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid var(--member-line);
}

.member-subnav a {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--member-muted);
}

.member-subnav a.is-active {
  color: var(--member-text);
  background: #fbfcfd;
}

.member-main {
  width: min(1160px, calc(100% - 40px));
  padding: 28px 0 64px;
}

.member-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr) minmax(280px, 0.85fr);
  gap: 18px;
}

.member-card {
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--member-line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(24, 32, 42, 0.05);
}

.member-card h1,
.member-card h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--member-line);
  color: var(--member-text);
  font-size: 1rem;
  text-align: left;
}

.member-card label {
  color: var(--member-text);
  font-size: 0.82rem;
}

.member-card input,
.member-card select,
.member-card textarea {
  min-height: 46px;
  border-color: var(--member-line);
  border-radius: 8px;
  background: #fbfcfd;
  font-weight: 650;
}

.member-card select {
  width: 100%;
  padding: 0 12px;
  color: var(--member-text);
  font: inherit;
}

.member-card input[type="file"] {
  padding: 11px;
  cursor: pointer;
}

.member-help {
  margin-top: -8px;
  color: var(--member-muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
}

.member-file-link {
  width: fit-content;
  margin-top: 8px;
  color: var(--member-accent);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.member-file-link:hover {
  text-decoration: underline;
}

.member-file-empty {
  margin-top: 8px;
  color: var(--member-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.member-card input:focus,
.member-card select:focus,
.member-card textarea:focus {
  border-color: var(--member-accent);
  box-shadow: 0 0 0 3px rgba(100, 32, 79, 0.1);
}

.member-rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.75fr);
  gap: 12px;
}

.member-card button,
.member-button {
  justify-self: start;
  min-height: 44px;
  border-radius: 8px;
  background: var(--member-accent);
}

.member-card button:hover,
.member-button:hover {
  background: #50183f;
}

.member-map {
  height: 190px;
  border: 1px solid var(--member-line);
  border-radius: 8px;
  width: 100%;
  min-height: 190px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.4) 49%, transparent 50%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.4) 49%, transparent 50%),
    #d8dadd;
}

.member-map:not(iframe) {
  display: grid;
  place-items: center;
}

iframe.member-map {
  display: block;
  background: #eef0f2;
}

.member-map-empty {
  gap: 10px;
}

.member-map-empty p {
  margin: 0;
  color: var(--member-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.member-map span {
  border-color: #7d2a62;
  background: var(--member-accent);
}

.member-map span::after {
  background: #f8f2f6;
}

.member-location-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--member-line);
  border-radius: 8px;
  background: #fbfcfd;
}

.member-location-summary span {
  color: var(--member-text);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.45;
}

.member-location-summary a,
.verify-map-link {
  color: var(--member-accent);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.member-location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.member-location-actions .location-button {
  width: 100%;
  min-height: 42px;
  border-color: var(--member-line);
  border-radius: 8px;
  color: var(--member-accent);
  background: var(--member-surface);
  box-shadow: none;
}

.member-location-actions .location-button:hover:not(:disabled) {
  border-color: var(--member-accent);
  background: var(--member-accent-soft);
  color: var(--member-surface);
}

.form-panel .member-location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-panel .member-location-actions .location-button {
  min-height: 44px;
  border-color: var(--line);
  color: var(--wine);
  background: #ffffff;
}

.form-panel .member-location-actions .location-button:hover:not(:disabled) {
  border-color: var(--wine);
  background: rgba(120, 32, 86, 0.08);
  color: var(--wine);
}

.member-avatar {
  width: 170px;
  height: 170px;
  border: 1px solid var(--member-line);
  border-radius: 8px;
  background: #f1f3f5;
}

.member-avatar span {
  color: var(--member-muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.member-avatar b {
  right: -12px;
  bottom: -12px;
  background: var(--member-accent);
}

.crop-open {
  overflow: hidden;
}

.crop-modal[hidden] {
  display: none;
}

.crop-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.crop-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(18, 20, 24, 0.56);
  box-shadow: none;
}

.crop-dialog {
  position: relative;
  width: min(520px, 100%);
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--member-line);
  border-radius: 8px;
  background: var(--member-surface);
  box-shadow: 0 24px 60px rgba(18, 20, 24, 0.22);
}

.crop-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.crop-head h2 {
  margin: 4px 0 0;
  color: var(--member-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.15rem;
}

.crop-icon-button {
  width: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 50%;
  background: #f4f5f6;
  color: var(--member-text);
  box-shadow: none;
  font-size: 1.3rem;
}

.crop-icon-button:hover {
  background: #e9ebee;
}

.crop-canvas {
  width: min(420px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid var(--member-line);
  border-radius: 8px;
  background: #f1f3f5;
}

.crop-controls {
  display: grid;
  gap: 12px;
}

.crop-controls label {
  display: grid;
  gap: 8px;
  color: var(--member-muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.crop-controls input {
  min-height: auto;
  padding: 0;
}

.crop-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.member-button.is-secondary {
  color: var(--member-text);
  background: #f3f4f6;
  box-shadow: none;
}

.member-button.is-secondary:hover {
  background: #e7e9ed;
}

.member-password-card {
  min-height: auto;
  align-content: start;
  justify-items: stretch;
}

.member-identity-visual {
  width: 150px;
  height: 150px;
  background: #f1f3f5;
}

.oauth-page {
  background: var(--member-bg);
}

.oauth-card {
  border: 1px solid var(--member-line);
  box-shadow: 0 10px 30px rgba(24, 32, 42, 0.05);
}

.oauth-card h1 {
  color: var(--member-text);
}

.oauth-button:hover {
  border-color: var(--member-accent);
  box-shadow: 0 0 0 3px rgba(100, 32, 79, 0.1);
}

.oauth-link {
  color: var(--member-accent);
}

.oauth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--member-bg);
}

.oauth-card {
  width: min(440px, 100%);
  display: grid;
  gap: 16px;
  padding: 32px;
  border-radius: 8px;
  background: var(--member-surface);
  box-shadow: 0 18px 44px rgba(23, 23, 23, 0.08);
}

.oauth-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.oauth-card h1 {
  color: var(--member-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.9rem;
  line-height: 1.15;
}

.oauth-card p:not(.admin-kicker) {
  margin: 0;
  color: var(--member-muted);
  line-height: 1.55;
}

.member-page .admin-kicker {
  color: var(--member-muted);
}

.oauth-buttons,
.oauth-inline {
  display: grid;
  gap: 10px;
}

.oauth-buttons.is-compact {
  width: 100%;
}

.oauth-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #dedede;
  border-radius: 8px;
  color: #202020;
  background: #fff;
  font-weight: 850;
  text-decoration: none;
}

.oauth-button span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.oauth-google span {
  color: #fff;
  background: #ea4335;
}

.oauth-facebook span {
  color: #fff;
  background: #1877f2;
}

.oauth-microsoft span {
  color: #fff;
  background: #0078d4;
}

.oauth-manual span {
  color: #fff;
  background: #64204f;
}

.oauth-button:hover {
  border-color: #ff5d63;
  box-shadow: 0 0 0 3px rgba(255, 93, 99, 0.1);
}

.oauth-inline {
  margin-bottom: 4px;
}

.oauth-separator {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.oauth-separator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.oauth-separator span {
  position: relative;
  padding: 0 12px;
  background: rgba(255, 253, 248, 0.96);
}

.oauth-link {
  color: #ff5d63;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.member-page .oauth-button:hover,
.auth-popover .oauth-button:hover,
.form-panel .oauth-button:hover {
  border-color: #64204f;
  box-shadow: 0 0 0 3px rgba(100, 32, 79, 0.1);
}

.member-page .oauth-link {
  color: #64204f;
}

.pass-logo {
  width: 210px;
  height: 150px;
  object-fit: contain;
  justify-self: center;
  mix-blend-mode: multiply;
}

.pass-card h1 {
  color: var(--wine);
  font-size: 2.4rem;
}

.pass-card p,
.pass-card a {
  color: var(--muted);
  line-height: 1.6;
}

.radio-line {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--ink);
  text-transform: none;
}

.radio-line input {
  width: 18px;
  min-height: 18px;
}

.alert {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.alert-success {
  color: #17643a;
  background: #e8f5ee;
  border: 1px solid #b7dfc8;
}

.alert-error {
  color: #8f1d1d;
  background: #fff0f0;
  border: 1px solid #efb8b8;
}

.alert-info {
  color: #31566f;
  background: #edf6fb;
  border: 1px solid #c5dfed;
}

footer {
  padding: 34px 20px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, var(--ink), var(--wine));
  text-align: center;
}

@media (max-width: 980px) {
  .topbar {
    padding: 12px 20px;
  }

  .nav-links {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding: 70px 24px 170px;
  }

  .hero-image {
    width: 100%;
    opacity: 0.22;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-mark {
    right: 24px;
    top: auto;
    bottom: 128px;
    width: min(210px, 44vw);
    opacity: 0.88;
  }

  .hero-panel {
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
  }

  .search-box,
  .profile-grid,
  .split,
  .trust-grid,
  .profile-layout,
  .profile-detail-layout,
  .detail-grid,
  .reviews-layout,
  .admin-stats,
  .verify-layout,
  .member-layout,
  .waiting-hero,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .verify-panel,
  .verify-summary {
    grid-column: auto;
    grid-row: auto;
  }

  .verify-summary {
    position: static;
  }

  .profile-contact-card,
  .profile-side-panel {
    position: static;
  }

  .verify-result-grid {
    grid-template-columns: 1fr;
  }

  .reviews-layout .review-grid {
    grid-template-columns: 1fr;
  }

  .waiting-hero {
    align-items: end;
    padding: 34px 24px;
  }

  .founder-hero {
    min-height: auto;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 26px;
    padding: 30px 18px 44px;
    overflow: hidden;
  }

  .founder-content,
  .founder-form-card,
  .founder-counter,
  .founder-benefits {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .founder-content h1,
  .founder-lead,
  .founder-momentum,
  .founder-counter span,
  .founder-benefits span,
  .founder-form-head h2,
  .founder-form-head p,
  .founder-form label,
  .founder-form small {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .founder-momentum {
    width: 100%;
    border-radius: 8px;
  }

  .founder-benefits {
    display: grid;
  }

  .founder-benefits span {
    border-radius: 8px;
  }

  .founder-vat-button,
  .founder-form button {
    width: 100%;
    white-space: normal;
  }

  .founder-brand {
    margin-bottom: 40px;
  }

  .founder-form-card {
    width: 100%;
  }

  .founder-screenshots {
    grid-template-columns: 1fr;
  }

  .founder-shot-large {
    grid-row: auto;
    min-height: 0;
  }

  .home-login-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 118px 24px 34px;
  }

  .home-login-brand {
    top: 24px;
    left: 24px;
  }

  .home-login-copy {
    padding-top: 0;
  }

  .waiting-brand {
    margin-bottom: 42px;
  }

  .admin-topbar,
  .admin-hero-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar {
    gap: 14px;
    padding: 14px 20px;
  }

  .admin-nav {
    width: 100%;
    justify-content: space-between;
  }

  .admin-user {
    width: 100%;
  }

  .verify-documents-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .member-rate-row {
    grid-template-columns: 1fr;
  }

  .auth-overlay {
    place-items: start center;
    padding: 92px 16px 20px;
  }

  .member-topbar {
    height: auto;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 14px 18px;
  }

  .member-search {
    order: 3;
    width: 100%;
  }

  .member-main-nav,
  .member-subnav {
    justify-content: flex-start;
    gap: 26px;
    overflow-x: auto;
    padding: 0 18px;
  }
}

@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  section {
    padding: 58px 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .verify-documents-grid {
    grid-template-columns: 1fr;
  }

  .waiting-content h1 {
    font-size: 2.55rem;
  }

  .founder-page {
    background-attachment: scroll;
    background-position: center top;
  }

  .founder-hero {
    gap: 22px;
    padding: 26px 14px 38px;
  }

  .founder-content,
  .founder-form-card,
  .founder-counter,
  .founder-benefits,
  .founder-preview-section,
  .founder-shot {
    max-width: 100%;
  }

  .founder-brand {
    gap: 12px;
    margin-bottom: 34px;
  }

  .founder-brand span {
    max-width: calc(100vw - 120px);
    font-size: 0.82rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .founder-content h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 10.5vw, 2.55rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .founder-lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .founder-momentum {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.84rem;
    overflow-wrap: anywhere;
  }

  .founder-counter {
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
  }

  .founder-counter div:not(.founder-progress) {
    padding: 12px;
  }

  .founder-counter strong {
    font-size: 2.55rem;
  }

  .founder-counter span {
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }

  .founder-counter,
  .founder-vat-step,
  .founder-form-row,
  .shot-dashboard {
    grid-template-columns: 1fr;
  }

  .founder-benefits {
    display: grid;
    gap: 8px;
  }

  .founder-benefits span {
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .founder-form-card {
    width: 100%;
    padding: 18px;
    border-radius: 8px;
  }

  .founder-form-head h2 {
    font-size: clamp(2rem, 11vw, 2.45rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .founder-form-head p:not(.section-label) {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .founder-form label {
    min-width: 0;
    font-size: 0.76rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .founder-form input,
  .founder-form textarea {
    min-width: 0;
    font-size: 0.95rem;
  }

  .founder-vat-button,
  .founder-form button {
    min-width: 0;
    white-space: normal;
    line-height: 1.2;
  }

  .founder-form small {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .founder-preview-section {
    padding: 50px 0 62px;
  }

  .founder-preview-heading h2 {
    font-size: clamp(2.15rem, 12vw, 3rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .founder-shot {
    padding: 14px;
  }

  .shot-search,
  .shot-profile-card {
    grid-template-columns: 1fr;
  }

  .shot-search em {
    grid-row: auto;
    width: fit-content;
  }

  .shot-profile-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .home-login-copy h1 {
    font-size: 2.45rem;
  }

  .waiting-brand img {
    width: 62px;
    height: 62px;
  }

  .hero-actions,
  .waiting-actions,
  .card-footer,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .signup-location-fields {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-secondary,
  button {
    width: 100%;
  }

  .member-main {
    width: min(100% - 24px, 1060px);
  }

  .member-card {
    padding: 22px;
  }

  .member-avatar {
    width: 170px;
    height: 170px;
  }

  .member-actions {
    gap: 6px;
  }

  .member-actions a,
  .member-actions span {
    height: 36px;
  }

  .member-actions a {
    width: auto;
  }

  .member-actions span {
    width: 36px;
  }
}
