:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #3f3f3f;
  --accent: #f7d80c;
  --accent-deep: #d7bd09;
  --border: #d9d9d9;
  --card-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

a,
button,
input,
select,
textarea,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  line-height: 1.55;
}

body:not(.admin-body)::before,
body:not(.admin-body)::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

body:not(.admin-body)::before {
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(247, 216, 12, 0.42) 0%, rgba(247, 216, 12, 0) 72%);
}

body:not(.admin-body)::after {
  width: min(34vw, 360px);
  height: min(34vw, 360px);
  left: -130px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(247, 216, 12, 0.28) 0%, rgba(247, 216, 12, 0) 70%);
}

input,
button {
  font: inherit;
}

label {
  display: block;
  font-weight: 600;
  margin: 10px 0 6px;
}

input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 13px;
  background: #fff;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: #111;
}

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

.whatsapp-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: visible;
  position: relative;
}

.whatsapp-row:focus-within {
  border-color: #111;
}

.country-mini {
  position: relative;
  flex: 0 0 70px;
  border-right: 1px solid var(--border);
  background: #fff6bd;
  border-radius: 10px 0 0 10px;
  z-index: 4;
}

.country-picker-btn {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: block;
  border-radius: 10px 0 0 10px;
}

.country-preview {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  font-size: 1rem;
  font-weight: 700;
  user-select: none;
  pointer-events: none;
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: min(300px, 78vw);
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  padding: 8px;
}

#country-search {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.85rem;
  margin: 0 0 8px;
}

.country-options {
  max-height: 240px;
  overflow: auto;
  display: grid;
  gap: 4px;
}

.country-option {
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  padding: 7px 8px;
  cursor: pointer;
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.country-option:hover,
.country-option.is-active {
  background: #fff7cd;
  border-color: #f2d85f;
}

.country-empty {
  padding: 8px;
  font-size: 0.82rem;
  color: #666;
}

#whatsapp {
  border: 0;
  border-radius: 0 10px 10px 0;
  min-width: 0;
  padding: 12px 13px;
}

#whatsapp:focus-visible {
  border-color: transparent;
}

button,
.primary-btn,
.ghost-btn {
  border: 0;
  border-radius: 11px;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 700;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.primary-btn,
#submit-btn {
  background: var(--accent);
  color: #111;
}

.primary-btn:hover,
#submit-btn:hover {
  background: var(--accent-deep);
}

.ghost-btn {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

.danger-btn {
  background: #b42318;
  color: #fff;
  border: 1px solid #b42318;
}

.danger-btn:hover {
  background: #8f1c13;
}

.danger-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  margin: 10px 0 0;
  min-height: 24px;
  font-size: 0.95rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.brand-inline {
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-inline small {
  font-size: 0.75em;
  font-weight: 500;
  color: #4a4a4a;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff8ca;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px clamp(16px, 3vw, 48px);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}

.landing-main {
  width: min(1120px, 94%);
  margin: 0 auto;
  padding: clamp(16px, 3.5vw, 36px) 0 30px;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(16px, 3vw, 38px);
  align-items: start;
}

.landing-hero {
  padding-top: 6px;
}

.kicker {
  margin: 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  color: #2c2c2c;
}

.landing-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  max-width: 14ch;
}

.hero-subtext {
  margin: 14px 0 10px;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.03rem;
}

.hero-note {
  margin: 0;
  font-size: 0.98rem;
  max-width: 60ch;
  color: #2f2f2f;
}

.cap-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cap-row span {
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  background: #fff;
}

.signup-strip {
  position: relative;
  background: var(--accent);
  border-radius: 22px;
  padding: clamp(16px, 2.5vw, 26px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 44px rgba(247, 216, 12, 0.32);
}

.signup-strip::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.22);
  border-radius: 16px;
  pointer-events: none;
}

.signup-strip h2 {
  margin: 0;
  font-size: 1.55rem;
}

.card-note {
  margin: 4px 0 12px;
  color: #303030;
  font-size: 0.96rem;
}

#submit-btn {
  margin-top: 12px;
  width: 100%;
  background: #111;
  color: #fff;
}

#submit-btn:hover {
  background: #000;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.94rem;
}

.consent-row input {
  margin-top: 0.24rem;
}

.product-line {
  margin-top: clamp(18px, 3vw, 30px);
  border-left: 5px solid var(--accent);
  padding: 4px 0 4px 14px;
}

.product-line h3 {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.product-line p {
  margin: 7px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.feature-cloud {
  margin-top: 16px;
}

.feature-cloud h3 {
  margin: 0 0 10px;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pills span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid #dbdbdb;
  background: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}

.landing-footer {
  border-top: 1px solid var(--border);
  padding: 14px 0 16px;
  color: #333;
  width: min(1120px, 94%);
  margin: 0 auto;
}

.social-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.social-follow-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111111;
}

.social-follow-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  border-radius: 999px;
  color: #111111;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.social-follow-link:hover {
  background-color: #111111;
  color: #ffffff;
}

.social-follow-link svg {
  width: 17px;
  height: 17px;
}

.suggest-footer .social-follow,
.thankyou-footer .social-follow {
  justify-content: center;
}

@media (max-width: 640px) {
  .social-follow {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.admin-body {
  background: #f8f8f8;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e6e6e6;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.admin-nav {
  width: min(1120px, 94%);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-main {
  width: min(1120px, 94%);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  padding: 20px;
}

.auth-panel,
.blocked-panel {
  max-width: 560px;
  margin: 0 auto;
}

#login-form .primary-btn {
  width: 100%;
  margin-top: 12px;
}

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

.dashboard-head h2 {
  margin: 0;
}

.muted {
  margin: 3px 0 0;
  color: var(--muted);
}

.actions-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.stat-card {
  border: 1px solid #ececec;
  border-radius: var(--radius-md);
  padding: 13px;
  background: #fff;
}

.stat-card p {
  margin: 0;
  color: #2f2f2f;
}

.stat-card h3 {
  margin: 3px 0 0;
  font-size: 1.8rem;
}

.table-tools {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.select-all-wrap {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.select-all-wrap input {
  margin: 0;
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

th,
td {
  text-align: left;
  padding: 11px;
  border-bottom: 1px solid #ececec;
  vertical-align: top;
}

th {
  background: #fff8d5;
  font-size: 0.9rem;
}

td {
  font-size: 0.9rem;
}

.row-check {
  width: 16px;
  height: 16px;
}

.table-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.small-btn {
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid #111;
  background: #fff;
}

.danger-mini {
  border-color: #b42318;
  color: #b42318;
}

@media (max-width: 920px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .table-tools {
    grid-template-columns: 1fr;
  }

  .actions-row,
  .actions-row .primary-btn,
  .actions-row .ghost-btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .landing-header {
    padding-inline: 14px;
  }

  .landing-main {
    width: 94%;
    padding: 12px 0 24px;
  }

  .join-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .hero-subtext {
    margin: 10px 0 8px;
    font-size: 0.98rem;
  }

  .signup-strip {
    padding: 14px;
  }

  .whatsapp-row {
    display: flex;
  }

  .signup-strip::after {
    inset: 6px;
  }

  .product-line {
    margin-top: 12px;
    padding-left: 10px;
  }

  .landing-footer {
    width: 94%;
    padding: 12px 0 16px;
  }

  .admin-main {
    width: 95%;
    padding-top: 16px;
  }

  .panel {
    padding: 14px;
  }
}

/* Admin redesign: left panel + right workspace */

.admin-body {
  background:
    radial-gradient(circle at 88% 8%, rgba(247, 216, 12, 0.22) 0, rgba(247, 216, 12, 0) 36%),
    radial-gradient(circle at 4% 92%, rgba(0, 0, 0, 0.06) 0, rgba(0, 0, 0, 0) 30%),
    #f6f6f6;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.admin-sidebar {
  background: linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
  color: #fff;
  border-right: 1px solid #262626;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-brand {
  color: #fff;
  font-size: 1.06rem;
}

.admin-brand .logo-img {
  border-color: rgba(255, 255, 255, 0.2);
  background: #f7d80c;
}

.side-tag {
  margin: 0;
  color: #d3d3d3;
  font-size: 0.92rem;
}

.side-card {
  background: linear-gradient(145deg, #f7d80c 0%, #f2cf00 100%);
  border-radius: 16px;
  padding: 14px;
  color: #111;
}

.side-card h3 {
  margin: 0;
  font-size: 1rem;
}

.side-card p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.side-list {
  display: grid;
  gap: 8px;
}

.side-list span {
  font-size: 0.88rem;
  color: #d8d8d8;
  border-left: 2px solid rgba(247, 216, 12, 0.55);
  padding-left: 10px;
}

.sidebar-logout {
  margin-top: auto;
  width: 100%;
  background: #fff;
  color: #111;
}

.admin-main-panel {
  padding: 20px clamp(14px, 2.7vw, 30px) 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-topbar {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.top-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
}

.admin-topbar h1 {
  margin: 2px 0 0;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.top-link {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  padding: 8px 12px;
  white-space: nowrap;
}

.auth-panel,
.blocked-panel,
.dashboard {
  margin: 0;
  max-width: none;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

#login-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

#login-form .field {
  display: flex;
  flex-direction: column;
}

#login-form .field label {
  margin: 0 0 6px;
}

#login-form .primary-btn {
  grid-column: 1 / -1;
  width: 100%;
}

.dashboard-head {
  border-bottom: 1px solid #efefef;
  padding-bottom: 12px;
}

.actions-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.actions-row .ghost-btn,
.actions-row .primary-btn {
  width: auto;
}

.stats-grid {
  margin: 14px 0;
}

.stat-card {
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: #f7d80c;
}

.table-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#search-input {
  flex: 1 1 320px;
}

.select-all-wrap {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 8px 12px;
}

.table-wrap {
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fff;
}

table {
  min-width: 980px;
}

th {
  background: #fff9dc;
  position: sticky;
  top: 0;
  z-index: 1;
}

.danger-mini {
  border-color: #b42318;
  color: #b42318;
}

@media (max-width: 1024px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 40;
    border-right: 0;
    border-bottom: 1px solid #262626;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
  }

  .side-tag,
  .side-card,
  .side-list {
    display: none;
  }

  .sidebar-logout {
    margin-top: 0;
    width: auto;
  }

  .admin-main-panel {
    padding-top: 12px;
  }
}

@media (max-width: 700px) {
  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  #login-form {
    grid-template-columns: 1fr;
  }

  .actions-row {
    width: 100%;
  }

  .actions-row .ghost-btn,
  .actions-row .primary-btn {
    width: 100%;
  }

  #search-input {
    flex-basis: 100%;
  }

  .select-all-wrap,
  .danger-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Admin compact + icon actions */
.admin-shell {
  height: 100dvh;
  overflow: hidden;
}

.admin-main-panel {
  overflow: auto;
}


.admin-body {
  font-size: 14px;
}

.admin-topbar h1 {
  font-size: clamp(1.14rem, 1.8vw, 1.42rem);
}

.top-link {
  font-size: 0.84rem;
}

.dashboard-head h2 {
  font-size: 1.2rem;
}

.muted {
  font-size: 0.86rem;
}

.stats-grid {
  gap: 10px;
}

.stat-card p {
  font-size: 0.8rem;
}

.stat-card h3 {
  font-size: 1.35rem;
}

.table-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.table-tools > input,
.table-tools > select {
  height: 38px;
  padding-top: 8px;
  padding-bottom: 8px;
}

#search-input {
  flex: 1 1 260px;
}

#country-filter,
#contact-filter {
  flex: 0 0 190px;
  min-width: 170px;
}

.select-all-wrap {
  padding: 8px 10px;
  font-size: 0.82rem;
}

.danger-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.danger-btn svg {
  width: 14px;
  height: 14px;
}

.table-wrap {
  max-height: min(62vh, 720px);
}

table {
  min-width: 980px;
}

th,
td {
  padding: 9px;
  font-size: 0.8rem;
  line-height: 1.35;
}

.table-actions {
  gap: 6px;
}

.icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-btn:hover {
  background: #fff7cd;
  border-color: #f0d86a;
}

.icon-btn svg {
  width: 14px;
  height: 14px;
  display: block;
}

.icon-btn.icon-danger {
  color: #b42318;
  border-color: #efc3bf;
}

.icon-btn.icon-danger:hover {
  background: #fff2f1;
  border-color: #e9a09a;
}

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

@media (max-width: 1024px) {
  .admin-shell {
    height: auto;
    overflow: visible;
  }

  .admin-main-panel {
    overflow: visible;
  }

  .table-wrap {
    max-height: none;
  }
}

@media (max-width: 700px) {
  #country-filter,
  #contact-filter,
  .danger-btn,
  .select-all-wrap {
    flex: 1 1 100%;
    width: 100%;
  }

  #search-input {
    flex-basis: 100%;
  }
}


/* Landing video-first redesign */
body:not(.admin-body)::before,
body:not(.admin-body)::after {
  display: none;
}

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 14px 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.landing-header.scrolled {
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.landing-nav {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.landing-header:not(.scrolled) .brand-inline,
.landing-header:not(.scrolled) .nav-links a {
  color: #111111
}

.landing-header:not(.scrolled) .logo-img {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
}

.landing-header.scrolled .brand-inline,
.landing-header.scrolled .nav-links a {
  color: #111111;
}

.landing-main {
  width: 100%;
  margin: 0;
  padding: 0 0 28px;
}

.video-hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  min-height: 100dvh;
  height: 100dvh;
  display: grid;
  align-items: end;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  display: none;
}

.video-copy {
  position: relative;
  z-index: 1;
  width: min(1200px, 94%);
  margin: 0 auto 68px;
  color: #ffffff;
}

.video-copy .kicker {
  color: #fff7cd;
}

.video-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  max-width: 13ch;
}

.video-copy p {
  margin: 14px 0 0;
  max-width: 62ch;
  font-size: 1.03rem;
  color: #f2f2f2;
}
.join-section {
  width: min(1120px, 94%);
  margin: 8px auto 0;
  position: relative;
  z-index: 2;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.signup-strip {
  background: #f7d80c;
  border: 1px solid #ececec;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.signup-strip::after {
  display: none;
}

.signup-strip h2 {
  font-size: 1.45rem;
}

.landing-hero {
  border-radius: 22px;
  background: transparent;
  padding: clamp(16px, 2.5vw, 24px);
  border: 0;
}

.landing-hero .kicker {
  color: #3a3200;
}

.landing-hero h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.landing-hero .hero-subtext,
.landing-hero .hero-note {
  color: #322b00;
  max-width: none;
}

.cap-row span {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.48);
}

.features-section {
  width: min(1120px, 94%);
  margin: 22px auto 0;
}

.product-line {
  margin-top: 0;
  background: #ffffff;
  border: 1px solid #ececec;
  border-left: 5px solid #f7d80c;
  border-radius: 14px;
  padding: 14px 16px;
}

.feature-cloud {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 14px 16px;
}

.landing-footer {
  width: min(1120px, 94%);
  margin: 20px auto 0;
}

@media (max-width: 860px) {
  .join-layout {
    grid-template-columns: 1fr;
  }

  .join-section {
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .landing-header {
    padding: 10px 0;
  }

  .video-hero {
    min-height: 100svh;
    height: 100svh;
    min-height: 100dvh;
    height: 100dvh;
  }

  .video-copy {
    margin-bottom: 40px;
  }

  .video-copy h1 {
    font-size: clamp(1.7rem, 10vw, 2.35rem);
  }

  .video-copy p {
    font-size: 0.95rem;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.86rem;
  }

  .join-section,
  .features-section,
  .landing-footer {
    width: 94%;
  }
}

/* Intro text shown after scrolling past hero */
.scroll-intro {
  width: min(1120px, 94%);
  margin: 12px auto 0;
  padding: 16px 18px 14px;
  border-radius: 18px;
  border: 1px solid #ececec;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.14);
  position: relative;
  z-index: 40;
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 360ms ease, transform 360ms ease;
}

.scroll-intro.is-visible {
  opacity: 1;
  transform: translateY(-10px) scale(1);
}

.scroll-intro .kicker {
  margin-bottom: 8px;
}

.scroll-intro h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  line-height: 1.08;
  max-width: 18ch;
  color: #111;
}

@media (max-width: 640px) {
  .scroll-intro {
    width: 94%;
    margin-top: 8px;
    padding: 12px 13px;
  }

  .scroll-intro h1 {
    font-size: clamp(1.5rem, 8vw, 2.1rem);
  }

  .scroll-intro.is-visible {
    transform: translateY(-44px) scale(1);
  }
}

/* Mobile navbar menu */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
  border-radius: 12px;
  cursor: pointer;
  color: #111111;
}

.nav-toggle:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.nav-toggle-line {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: top 260ms ease, transform 260ms ease, opacity 180ms ease;
}

.nav-toggle-line:nth-child(1) {
  top: 14px;
}

.nav-toggle-line:nth-child(2) {
  top: 21px;
}

.nav-toggle-line:nth-child(3) {
  top: 28px;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(270px, 84vw);
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 120;
}

.mobile-nav a {
  text-decoration: none;
  color: #111111;
  font-weight: 600;
  border-radius: 11px;
  padding: 10px 12px;
}

.mobile-nav a:hover {
  background: #f7d80c;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.landing-header:not(.scrolled) .nav-toggle {
  color: #111111
}

.landing-header.scrolled .nav-toggle {
  color: #111111;
}

@media (max-width: 860px) {
  .landing-nav {
    position: relative;
  }

  .landing-nav .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media (min-width: 861px) {
  .mobile-nav {
    display: none;
  }
}

/* Suggest feature page */
.suggest-body {
  background: #ffffff;
  color: #111111;
}

.suggest-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #eeeeee;
}

.suggest-nav {
  width: min(980px, 94%);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

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

.suggest-links a {
  text-decoration: none;
  color: #111111;
  font-weight: 600;
}

.suggest-main {
  width: min(980px, 94%);
  margin: 26px auto 0;
}

.suggest-card {
  border-radius: 18px;
  border: 0;
  background: transparent;
  padding: clamp(16px, 3vw, 26px);
  box-shadow: none;
}

.suggest-card h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
}

.suggest-lead {
  margin: 10px 0 2px;
  color: #2a2400;
  max-width: 66ch;
}

.suggest-card form {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.suggest-card label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
}

.suggest-card input[type="email"],
.suggest-card input[type="text"],
.suggest-card select,
.suggest-card textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  padding: 12px 14px;
  background: #ffffff;
  color: #111111;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  line-height: 1.4;
}

.suggest-card input[type="email"]::placeholder,
.suggest-card input[type="text"]::placeholder,
.suggest-card textarea::placeholder {
  color: #6a6a6a;
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  opacity: 1;
}

.suggest-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #111111 50%),
    linear-gradient(135deg, #111111 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 1px),
    calc(100% - 12px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.suggest-card .feature-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.suggest-card .feature-select.is-empty {
  color: #6a6a6a;
}

.suggest-card .feature-select option {
  color: #111111;
}

.suggest-card textarea {
  min-height: 140px;
  resize: vertical;
}

.suggest-card input[type="email"]:focus-visible,
.suggest-card input[type="text"]:focus-visible,
.suggest-card select:focus-visible,
.suggest-card textarea:focus-visible {
  outline: none;
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.suggest-card .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 0;
  font-size: 0.93rem;
  color: #1f1f1f;
}

.suggest-card .consent-row input[type="checkbox"] {
  margin-top: 0.18rem;
  width: 16px;
  height: 16px;
  accent-color: #111111;
}

#feature-submit-btn {
  margin-top: 2px;
  width: 100%;
  border-radius: 14px;
  padding: 12px 16px;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
}

#feature-submit-btn:hover {
  background: #000000;
}

#feature-status {
  margin: 4px 0 0;
}

.suggest-footer {
  width: min(980px, 94%);
  margin: 18px auto 20px;
  text-align: center;
  color: #2f2f2f;
}

@media (max-width: 860px) {
  .suggest-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .suggest-nav {
    padding: 10px 0;
  }

  .suggest-links {
    gap: 12px;
  }

  .suggest-links a {
    font-size: 0.92rem;
  }

  .suggest-main {
    margin-top: 16px;
  }
}

/* Thank you pages */
.thankyou-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 12% 8%, rgba(22, 163, 74, 0.12) 0, rgba(22, 163, 74, 0) 34%),
    radial-gradient(circle at 88% 92%, rgba(16, 185, 129, 0.1) 0, rgba(16, 185, 129, 0) 32%),
    #ffffff;
  color: #111111;
}

.thankyou-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 24px 0;
}

.thankyou-card {
  width: min(760px, 94%);
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #d7eadb;
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.14);
  padding: clamp(20px, 4vw, 34px);
}

.thankyou-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #e9f9ef;
  border: 1px solid #b8e7c6;
  color: #0f7a34;
  font-size: 0.86rem;
  font-weight: 700;
}

.thankyou-status-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #19a34a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.thankyou-kicker {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f7a34;
}

.thankyou-card h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.thankyou-card p {
  margin: 12px 0 0;
  font-size: 1rem;
  color: #2f2f2f;
  max-width: 62ch;
}

.thankyou-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 16px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 18px;
}

.thankyou-btn + .thankyou-btn {
  margin-left: 10px;
}

.thankyou-btn.primary {
  background: #f7d80c;
  color: #111111;
}

.thankyou-btn.primary:hover {
  background: #e4c709;
}

.thankyou-btn.ghost {
  background: #ffffff;
  color: #111111;
  border: 1px solid #d8d8d8;
}

.thankyou-footer {
  width: min(760px, 94%);
  margin: 0 auto 18px;
  text-align: center;
  color: #3a3a3a;
}

@media (max-width: 640px) {
  .thankyou-main {
    padding: 14px 0;
  }

  .thankyou-card {
    border-radius: 16px;
    padding: 18px 14px;
  }

  .thankyou-btn {
    width: 100%;
    margin-top: 10px;
  }

  .thankyou-btn + .thankyou-btn {
    margin-left: 0;
  }
}
/* Admin v2 dashboard */
.admin-v2-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, rgba(247, 216, 12, 0.2), rgba(247, 216, 12, 0) 36%),
    radial-gradient(circle at 90% 85%, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0) 34%),
    #f7f7f7;
  color: #111111;
}

/* Preserve hidden attribute semantics for admin elements that also define display. */
.admin-v2-body [hidden] {
  display: none !important;
}

.admin-v2-modal-open {
  overflow: hidden;
}

.admin-v2-topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px clamp(14px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(10px);
}

.admin-v2-top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111111;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.admin-v2-hamburger {
  width: 40px;
  height: 40px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.admin-v2-hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #111111;
}

.admin-v2-profile-wrap {
  position: relative;
}

.admin-v2-profile-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #dbdbdb;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.26rem;
}

.admin-v2-profile-btn:hover {
  background: #fff8d5;
}

.admin-v2-profile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 210px;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.admin-v2-profile-email {
  margin: 0;
  font-size: 0.83rem;
  color: #444444;
  overflow-wrap: anywhere;
}

.admin-v2-profile-signout {
  width: 100%;
  border: 1px solid #f0c4bf;
  border-radius: 10px;
  background: #fff4f3;
  color: #b42318;
  padding: 9px 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.admin-v2-main {
  width: min(1320px, 96%);
  margin: 12px auto 22px;
}

.admin-v2-auth-screen {
  min-height: calc(100vh - 126px);
  display: grid;
  place-items: center;
}

.admin-v2-auth-card {
  width: min(620px, 100%);
  border: 1px solid #e8e8e8;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
}

.admin-v2-auth-kicker {
  margin: 0;
  color: #555555;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.admin-v2-auth-card h1 {
  margin: 8px 0 6px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.1;
}

.admin-v2-auth-subtitle {
  margin: 0 0 12px;
  color: #404040;
}

.admin-v2-login-form {
  display: grid;
  gap: 10px;
}

.admin-v2-login-form .field label {
  margin: 0 0 5px;
}

.admin-v2-login-form .primary-btn {
  margin-top: 4px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.admin-v2-blocked-screen {
  width: min(680px, 100%);
  margin: 24px auto 0;
  border-radius: 20px;
}

.admin-v2-blocked-screen h2 {
  margin-top: 0;
}

.admin-v2-app {
  position: relative;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.admin-v2-sidebar {
  position: sticky;
  top: 86px;
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.admin-v2-sidebar-kicker {
  margin: 0 0 8px;
  color: #555555;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.admin-v2-nav {
  display: grid;
  gap: 8px;
}

.admin-v2-nav-btn {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
  color: #111111;
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  text-align: left;
}

.admin-v2-nav-btn:hover {
  background: #fffbe9;
}

.admin-v2-nav-btn.is-active {
  border-color: #f2d56b;
  background: #fff9df;
}

.admin-v2-nav-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.admin-v2-unread-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.18);
  flex: 0 0 auto;
}

.admin-v2-workspace {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.admin-v2-view {
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 14px;
  min-width: 0;
}

.admin-v2-view-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-v2-view-head h2 {
  margin: 0;
  font-size: 1.4rem;
}

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

.admin-v2-head-actions .ghost-btn,
.admin-v2-head-actions .primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-v2-stats-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-v2-stat-card {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 12px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.admin-v2-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #f7d80c;
}

.admin-v2-stat-card p {
  margin: 0;
  color: #3d3d3d;
}

.admin-v2-stat-card h3 {
  margin: 5px 0 0;
  font-size: 1.6rem;
}

.admin-v2-toolbar {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-v2-search-wrap {
  flex: 1 1 320px;
  min-width: 210px;
  position: relative;
}

.admin-v2-search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #777777;
  pointer-events: none;
}

.admin-v2-search-wrap input {
  width: 100%;
  padding-left: 34px;
}

.select-all-wrap {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 11px;
  font-weight: 600;
  white-space: nowrap;
}

.select-all-wrap input {
  margin: 0;
}

.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.admin-v2-table-wrap {
  margin-top: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: min(62vh, 760px);
  min-width: 0;
}

.admin-v2-table-wrap table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.admin-v2-table-wrap th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff8d5;
}

.admin-v2-table-wrap th,
.admin-v2-table-wrap td {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-v2-table-wrap th:nth-child(1),
.admin-v2-table-wrap td:nth-child(1) {
  width: 6%;
}

.admin-v2-table-wrap th:nth-child(2),
.admin-v2-table-wrap td:nth-child(2) {
  width: 16%;
}

.admin-v2-table-wrap th:nth-child(3),
.admin-v2-table-wrap td:nth-child(3) {
  width: 14%;
}

.admin-v2-table-wrap th:nth-child(4),
.admin-v2-table-wrap td:nth-child(4) {
  width: 11%;
}

.admin-v2-table-wrap th:nth-child(5),
.admin-v2-table-wrap td:nth-child(5) {
  width: 12%;
}

.admin-v2-table-wrap th:nth-child(6),
.admin-v2-table-wrap td:nth-child(6) {
  width: 8%;
}

.admin-v2-table-wrap th:nth-child(7),
.admin-v2-table-wrap td:nth-child(7) {
  width: 7%;
}

.admin-v2-table-wrap th:nth-child(8),
.admin-v2-table-wrap td:nth-child(8) {
  width: 16%;
}

.admin-v2-table-wrap th:nth-child(9),
.admin-v2-table-wrap td:nth-child(9) {
  width: 10%;
}

.admin-v2-ua-cell {
  max-width: 230px;
  overflow-wrap: anywhere;
}
.icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #d5d5d5;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-btn:hover {
  background: #fff8d5;
  border-color: #f1d56f;
}

.icon-btn.icon-danger {
  color: #b42318;
  border-color: #efc0bc;
}

.icon-btn.icon-danger:hover {
  background: #fff2f1;
  border-color: #e8a29b;
}

.admin-v2-suggestions-layout {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(330px, 0.48fr) minmax(0, 1fr);
  gap: 10px;
}

.admin-v2-suggestions-list {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #ffffff;
  max-height: min(62vh, 760px);
  overflow: auto;
  padding: 8px;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.admin-v2-suggestion-card {
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #ffffff;
  padding: 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: flex-start;
}

.admin-v2-suggestion-card.is-active {
  border-color: #f2d56b;
  background: #fffdf2;
}

.admin-v2-suggestion-open {
  border: 0;
  background: transparent;
  text-align: left;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.admin-v2-suggestion-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.admin-v2-suggestion-email {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.admin-v2-suggestion-time {
  margin: 0;
  font-size: 0.78rem;
  color: #565656;
  white-space: nowrap;
}

.admin-v2-suggestion-card-title {
  margin: 7px 0 0;
  font-weight: 600;
  color: #1f1f1f;
}

.admin-v2-suggestion-tags {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.admin-v2-tag {
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #353535;
  background: #fafafa;
}

.admin-v2-tag.is-joined {
  border-color: #9dd7aa;
  background: #ecfbef;
  color: #187a32;
}

.admin-v2-tag.is-not-joined {
  border-color: #efc3bf;
  background: #fff3f2;
  color: #b42318;
}

.admin-v2-suggestion-detail {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #ffffff;
  min-height: 280px;
  max-height: min(62vh, 760px);
  overflow: auto;
  padding: 12px;
  min-width: 0;
}

.admin-v2-suggestion-meta {
  margin: 0;
  color: #575757;
  font-size: 0.8rem;
  font-weight: 600;
}

.admin-v2-suggestion-title {
  margin: 6px 0 12px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.admin-v2-suggestion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-v2-detail-block {
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background: #ffffff;
  padding: 10px;
}

.admin-v2-detail-label {
  margin: 0;
  color: #575757;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.admin-v2-detail-value {
  margin: 6px 0 0;
  font-weight: 600;
  color: #1d1d1d;
}

.admin-v2-detail-description {
  margin: 8px 0 0;
  white-space: pre-wrap;
  line-height: 1.45;
  color: #222222;
}

.admin-v2-email-row {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  overflow-wrap: anywhere;
}

.admin-v2-join-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.79rem;
  font-weight: 700;
}

.admin-v2-join-state.is-joined {
  color: #187a32;
}

.admin-v2-join-state.is-not-joined {
  color: #b42318;
}

.admin-v2-placeholder {
  margin: 0;
  color: #5c5c5c;
}

.admin-v2-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(17, 17, 17, 0.44);
}

.admin-v2-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.45);
  padding: 14px;
}

.admin-v2-modal-card {
  width: min(440px, 100%);
  border-radius: 18px;
  border: 1px solid #e4e4e4;
  background: #ffffff;
  padding: 16px;
}

.admin-v2-modal-card h2 {
  margin: 0;
  font-size: 1.2rem;
}

.admin-v2-modal-card p {
  margin: 8px 0 0;
  color: #2f2f2f;
  white-space: pre-line;
}

.admin-v2-modal-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

@media (max-width: 1180px) {
  .admin-v2-stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-v2-suggestions-layout {
    grid-template-columns: 1fr;
  }

  .admin-v2-suggestions-list,
  .admin-v2-suggestion-detail,
  .admin-v2-table-wrap {
    max-height: none;
  }
}

@media (max-width: 1024px) {
  .admin-v2-main {
    width: 95%;
  }

  .admin-v2-hamburger {
    display: inline-flex;
  }

  .admin-v2-app {
    grid-template-columns: 1fr;
  }

  .admin-v2-sidebar {
    position: fixed;
    top: 74px;
    left: 10px;
    bottom: 10px;
    width: min(290px, calc(100vw - 20px));
    z-index: 80;
    transform: translateX(-120%);
    transition: transform 220ms ease;
    overflow: auto;
  }

  .admin-v2-app.is-sidebar-open .admin-v2-sidebar {
    transform: translateX(0);
  }

  .admin-v2-view {
    padding: 12px;
  }
}

@media (max-width: 760px) {
  .admin-v2-main {
    margin-top: 10px;
  }

  .admin-v2-topbar {
    padding-inline: 10px;
  }

  .admin-v2-auth-card {
    border-radius: 16px;
  }

  .admin-v2-head-actions,
  .admin-v2-head-actions .ghost-btn,
  .admin-v2-head-actions .primary-btn {
    width: 100%;
  }

  .admin-v2-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-v2-search-wrap,
  .select-all-wrap,
  .danger-btn {
    width: 100%;
  }

  .select-all-wrap {
    justify-content: center;
  }

  .admin-v2-suggestion-grid {
    grid-template-columns: 1fr;
  }

  .admin-v2-modal-actions {
    flex-direction: column;
  }

  .admin-v2-modal-actions .ghost-btn,
  .admin-v2-modal-actions .danger-btn {
    width: 100%;
  }
}
