:root {
  --ink: #0f1f2b;
  --muted: #5c7280;
  --line: #e2eaee;
  --paper: #f4f7f9;
  --panel: #ffffff;
  --brand: #0b7a6e;
  --brand-dark: #085f55;
  --brand-light: #e3f4f2;
  --gold: #b98524;
  --rose: #c0444a;
  --blue: #3a6ea5;
  --green-soft: #e3f4f2;
  --gold-soft: #fdf3dc;
  --rose-soft: #fdecea;
  --blue-soft: #e8f1fb;
  --shadow-sm: 0 1px 4px rgba(15, 31, 43, 0.06);
  --shadow: 0 4px 18px rgba(15, 31, 43, 0.09);
  --shadow-lg: 0 16px 48px rgba(15, 31, 43, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
}

body.auth-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  border: 0;
  cursor: pointer;
  background: none;
  color: inherit;
}

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

/* ─── LANDING PAGE ─────────────────────────────────────────────── */
#landingPage {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #071218;
  color: #f0ede4;
  scroll-behavior: smooth;
}

.land-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.land-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.land-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.land-logo-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.land-logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

.land-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.land-nav-links a {
  color: rgba(240, 237, 228, 0.68);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.land-nav-links a:hover {
  color: #fff;
}

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

.btn-ghost-light {
  padding: 8px 18px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(240, 237, 228, 0.85);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary-light {
  padding: 8px 18px;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s;
}
.btn-primary-light:hover {
  background: var(--brand-dark);
}

.land-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
}

.land-hero::before {
  content: none;
}

.land-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(11, 122, 110, 0.18);
  border: 1px solid rgba(11, 122, 110, 0.35);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 12px;
  color: #7fd8ce;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.land-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fd8ce;
  display: inline-block;
}

.land-h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  color: #f0ede4;
  max-width: 780px;
  margin-bottom: 10px;
}

.land-h1 em {
  font-style: normal;
  color: #4ecdc4;
}

.land-sub {
  font-size: 17px;
  color: rgba(240, 237, 228, 0.6);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.land-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.btn-cta-primary {
  padding: 13px 28px;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.15s,
    transform 0.1s;
}
.btn-cta-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-cta-secondary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(240, 237, 228, 0.8);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.land-features {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.land-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.land-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.land-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: #7fd8ce;
  fill: none;
  stroke-width: 2;
}

.land-feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #f0ede4;
}

.land-feature-text span {
  font-size: 12px;
  color: rgba(240, 237, 228, 0.5);
}

.land-footer {
  padding: 24px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: rgba(240, 237, 228, 0.35);
}

.land-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.land-footer a {
  color: rgba(240, 237, 228, 0.66);
  text-decoration: none;
}

.land-footer a:hover {
  color: #fff;
}

.land-section {
  background: #fff;
  color: var(--ink);
  padding: 72px 48px;
  border-top: 1px solid var(--line);
}

.land-section.alt {
  background: #f4f7f9;
}

.land-section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-kicker {
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-title {
  max-width: 720px;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-copy {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.65;
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-item {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--gold);
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  margin-bottom: 32px;
}

.feature-item h3 {
  font-size: 17px;
  margin-bottom: 9px;
}

.feature-item p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.price-plan {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.price-plan.featured {
  border-top: 4px solid var(--gold);
}

.price-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}

.price-value {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
}

.price-value small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.price-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 24px;
  flex: 1;
}

.price-list li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 800;
  margin-right: 9px;
}

.price-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 14px;
}

.price-plan .btn-primary-light,
.price-plan .btn-ghost-light {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 64px;
  align-items: start;
}

.company-facts {
  border-left: 3px solid var(--brand);
  padding-left: 24px;
  display: grid;
  gap: 18px;
}

.company-facts strong {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}

.company-facts span,
.company-facts a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

/* ─── LOGIN MODAL ──────────────────────────────────────────────── */
#loginModal {
  position: fixed;
  inset: 0;
  background: rgba(5, 18, 25, 0.78);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

#loginModal.open {
  display: flex;
}

.login-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(2, 14, 20, 0.32);
  width: min(880px, 96vw);
  max-height: min(760px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(440px, 1.22fr);
  overflow: hidden;
}

.auth-brand-panel {
  min-height: 620px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: #071c24;
  color: #f5f8f8;
}

.auth-brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.login-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.login-logo-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
}

.auth-brand-lockup strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.auth-brand-lockup span {
  display: block;
  color: rgba(230, 244, 243, 0.58);
  font-size: 10px;
  line-height: 1.4;
  margin-top: 2px;
}

.auth-brand-copy {
  margin: auto 0;
  position: relative;
  z-index: 1;
}

.auth-eyebrow {
  display: inline-block;
  color: #70d8cb;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.auth-brand-copy h3 {
  max-width: 320px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 760;
}

.auth-brand-copy > p {
  max-width: 320px;
  color: rgba(225, 239, 238, 0.68);
  font-size: 13px;
  line-height: 1.65;
  margin-top: 14px;
}

.auth-benefits {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.auth-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 250, 249, 0.86);
  font-size: 12px;
}

.auth-benefits svg {
  width: 16px;
  height: 16px;
  color: #61cdbf;
  stroke-width: 1.8;
}

.auth-trust-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(225, 239, 238, 0.55);
  font-size: 10px;
  position: relative;
  z-index: 1;
}

.auth-trust-note svg {
  width: 13px;
  height: 13px;
}

.auth-form-panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 28px 36px 30px;
  overflow-y: auto;
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.auth-close:hover {
  background: var(--paper);
  color: var(--ink);
}

.auth-close svg {
  width: 17px;
  height: 17px;
}

.auth-form-topline {
  min-height: 36px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 38px;
}

.auth-mobile-brand {
  display: none;
}

.auth-language {
  max-width: 180px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 30px 0 10px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
}

.auth-mode-tabs {
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 3px;
  border-radius: 8px;
  background: var(--paper);
  margin-top: 18px;
}

.auth-mode-tabs button {
  min-width: 94px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.auth-mode-tabs button[aria-selected='true'] {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.login-card-header {
  padding: 24px 0 0;
}

.login-card h2 {
  font-size: 25px;
  font-weight: 780;
  color: var(--ink);
  margin-bottom: 6px;
}

.login-card-header p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.login-card-body {
  padding-top: 22px;
}

.auth-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.auth-mode-signup .auth-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.login-field {
  display: grid;
  gap: 6px;
}

.login-field label {
  font-size: 12px;
  font-weight: 650;
  color: var(--ink);
}

.login-field input,
.login-field select {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 11px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  outline: none;
  width: 100%;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.iti {
  width: 100%;
  --iti-border-color: var(--line);
  --iti-country-selector-bg: #fff;
  --iti-hover-color: var(--brand-light);
  --iti-icon-color: var(--muted);
}

.iti__selected-country {
  height: 100%;
  font-size: 12px;
  font-weight: 650;
}

.iti__selected-country-primary {
  height: 100%;
  align-items: center;
}

.iti__selected-dial-code {
  display: flex;
  align-items: center;
  line-height: 1;
  color: var(--ink);
}

.iti__country-selector {
  z-index: 140;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.iti__country-list {
  max-height: 260px;
  color: var(--ink);
  font-size: 12px;
}

.login-field .iti__search-input,
.field .iti__search-input {
  min-height: 38px;
  border-radius: 0;
  padding-left: 38px;
  font-size: 12px;
}

.login-field .iti__tel-input {
  height: 42px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 42px;
}

.field .iti__tel-input {
  height: 34px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 34px;
}

.login-field input:focus,
.login-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 122, 110, 0.1);
}

.auth-input-wrap {
  position: relative;
}

.auth-input-wrap > svg {
  position: absolute;
  left: 12px;
  top: 13px;
  width: 16px;
  height: 16px;
  color: #8ca0aa;
  pointer-events: none;
}

.auth-input-wrap input {
  padding-left: 38px;
}

.login-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 18px;
}

.login-remember label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}

.login-remember input[type='checkbox'],
.auth-terms input[type='checkbox'] {
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
  flex: 0 0 16px;
}

.login-remember a {
  font-size: 13px;
  color: var(--brand);
  text-decoration: none;
}

.btn-login {
  width: 100%;
  height: 44px;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(11, 122, 110, 0.2);
  transition:
    background 0.15s,
    transform 0.15s;
}
.btn-login:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.login-error {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--rose-soft);
  border-radius: 7px;
  color: var(--rose);
  font-size: 13px;
  text-align: center;
  display: none;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 1px;
  margin: 22px 0 18px;
  color: #91a1aa;
  font-size: 10px;
  white-space: nowrap;
}

.login-divider::before,
.login-divider::after {
  content: '';
  height: 1px;
  background: var(--line);
  flex: 1;
}

.login-signup-row {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.login-signup-row a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.auth-only-signup {
  display: none;
}
.auth-mode-signup .auth-only-signup {
  display: grid;
}
.auth-mode-signup .auth-only-login {
  display: none;
}

.auth-mode-signup .auth-mode-tabs button:first-child,
.auth-mode-login .auth-mode-tabs button:last-child {
  background: transparent;
  box-shadow: none;
  color: var(--muted);
}

.auth-status {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--brand-light);
  border-radius: 7px;
  color: var(--brand-dark);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  display: none;
}
.auth-terms.auth-only-signup {
  display: none;
}

.auth-mode-signup .auth-terms.auth-only-signup {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 16px 0;
}
.auth-terms input {
  width: auto;
  min-height: 0;
  margin-top: 2px;
}
.auth-terms a {
  color: var(--brand);
  text-decoration: none;
}
.btn-login:disabled {
  opacity: 0.55;
  cursor: wait;
}

@media (max-width: 760px) {
  #loginModal {
    align-items: flex-end;
    padding: 0;
  }

  .login-card {
    width: 100%;
    height: 94vh;
    max-height: 94vh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr);
    border-radius: 8px 8px 0 0;
  }

  .auth-brand-panel {
    display: none;
  }

  .auth-form-panel {
    height: 100%;
    padding: 22px 20px 26px;
  }

  .auth-form-topline {
    justify-content: space-between;
    padding-right: 36px;
  }

  .auth-language {
    max-width: 150px;
  }

  .auth-mobile-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
  }

  .auth-mobile-brand .login-logo-icon {
    width: 30px;
    height: 30px;
  }

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

  .login-card-header {
    padding-top: 20px;
  }
}

/* ─── APP SHELL ────────────────────────────────────────────────── */
#appShell {
  display: none;
  min-height: 100vh;
  grid-template-columns: 240px minmax(0, 1fr);
}

#appShell.visible {
  display: grid;
}

/* ─── SIDEBAR ──────────────────────────────────────────────────── */
.sidebar {
  background: #071c24;
  color: #e8e4d8;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 6px;
}

.sidebar-brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sidebar-brand-icon svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
}

.sidebar-brand-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sidebar-brand-text span {
  font-size: 11px;
  color: rgba(232, 228, 216, 0.45);
}

.nav-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(232, 228, 216, 0.3);
  padding: 10px 10px 4px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  border-radius: 7px;
  padding: 0 10px;
  font-size: 13.5px;
  color: rgba(232, 228, 216, 0.65);
  text-align: left;
  transition:
    background 0.13s,
    color 0.13s;
  width: 100%;
}

.nav-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.nav-btn.active {
  background: rgba(11, 122, 110, 0.28);
  color: #4ecdc4;
}

.sidebar-spacer {
  flex: 1;
}

.credit-box {
  margin: 10px 8px 4px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
}
.credit-box strong {
  display: block;
  color: #fff;
  font-size: 12px;
}
.credit-box span {
  display: block;
  color: rgba(232, 228, 216, 0.48);
  font-size: 11px;
  margin-top: 3px;
}
.credit-track {
  height: 4px;
  margin-top: 9px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.credit-track i {
  display: block;
  height: 100%;
  width: 100%;
  background: #4ecdc4;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

.sidebar-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex: 0 0 auto;
}

.sidebar-user-info strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.sidebar-user-info span {
  font-size: 11px;
  color: rgba(232, 228, 216, 0.4);
}

.sidebar-logout {
  margin-left: auto;
  color: rgba(232, 228, 216, 0.4);
  transition: color 0.15s;
}

.sidebar-logout:hover {
  color: #fff;
}
.sidebar-logout svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

/* ─── MAIN CONTENT ─────────────────────────────────────────────── */
main {
  min-width: 0;
  padding: 24px;
  display: grid;
  gap: 18px;
  align-content: start;
}

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

h1 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn-primary,
.btn-ghost,
.btn-icon {
  min-height: 36px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.13s;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 0 14px;
}
.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 13px;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--paper);
}

.btn-icon {
  width: 36px;
  border: 1px solid var(--line);
  background: #fff;
}
.btn-icon:hover {
  background: var(--paper);
}

.btn-primary svg,
.btn-ghost svg,
.btn-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  flex: 0 0 auto;
}

/* ─── METRICS ──────────────────────────────────────────────────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.metric {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.metric-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
}

.metric-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

/* ─── WORKSPACE ────────────────────────────────────────────────── */
.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 14px;
  align-items: start;
}

.workspace.single {
  grid-template-columns: 1fr;
}

.table-scroll {
  overflow: auto;
}

.company-col {
  width: 29%;
}

.location-col {
  width: 21%;
}

.industry-col {
  width: 23%;
}

.contact-col {
  width: 27%;
}

.hidden {
  display: none !important;
}

.home-view {
  display: grid;
  gap: 14px;
}
.home-hero {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 24px;
  align-items: center;
  background: var(--panel);
}
.home-hero h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  max-width: 760px;
}
.home-hero p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 760px;
}
.home-search {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.home-search input {
  flex: 1;
  min-width: 0;
  background: #fff;
}
.home-steps {
  display: grid;
  gap: 10px;
}
.home-step {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}
.home-step b {
  display: block;
  color: var(--brand);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.home-step strong {
  display: block;
  font-size: 13px;
  margin-top: 5px;
}
.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.home-feature {
  padding: 20px;
}
.home-feature h3 {
  font-size: 15px;
}
.home-feature p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 8px;
}
.profile-alert {
  display: none;
  padding: 12px 14px;
  border: 1px solid #f3d299;
  border-radius: 8px;
  background: var(--gold-soft);
  color: #714d08;
  font-size: 12px;
  line-height: 1.55;
}
.profile-alert.visible {
  display: block;
}
.language-select,
.landing-language {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 38px 0 14px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 22px rgba(0, 0, 0, 0.12);
}
.language-select {
  width: calc(100% - 16px);
  margin: 8px 8px 12px;
  color: #f4fbfa;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.language-select option,
.landing-language option {
  color: var(--ink);
  background: #fff;
}
.landing-language {
  width: auto;
  min-width: 154px;
  color: #10212c;
  background-color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.28);
}

.paddle-checkout-btn[data-tone='secondary'] {
  color: var(--ink);
  border-color: var(--line);
}

.settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 14px;
  align-items: start;
}
.settings-body {
  padding: 18px;
}
.profile-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.profile-status-row strong {
  display: block;
  font-size: 13px;
}
.profile-status-row p {
  max-width: 560px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.settings-grid .span-2 {
  grid-column: span 2;
}
.settings-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 8px;
}
.settings-grid.profile-locked input,
.settings-grid.profile-locked select,
.settings-grid.profile-locked .iti {
  cursor: not-allowed;
}
.settings-grid.profile-locked input,
.settings-grid.profile-locked select,
.settings-grid.profile-locked .iti__tel-input,
.settings-grid.profile-locked .iti__country-container {
  color: #6f7f87;
  background: #f1f4f5;
}
#settingsEmail[readonly] {
  cursor: not-allowed;
  color: #6f7f87;
  background: #f1f4f5;
}
.profile-display-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #b8ddd8;
  border-radius: 7px;
  background: #f2fbf9;
  color: #31534f;
  font-size: 12px;
  line-height: 1.55;
}
.profile-display-consent input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
}
.profile-change-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(320px, 1.3fr);
  align-items: start;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #ead9ad;
  border-left: 3px solid var(--gold);
  border-radius: 7px;
  background: #fffaf0;
}
.profile-change-panel .field {
  align-content: start;
  gap: 7px;
}
.profile-change-panel select {
  height: 42px;
}
.profile-change-panel textarea {
  min-height: 84px;
  line-height: 1.5;
  resize: vertical;
}
.settings-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 18px;
}
.plan-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.plan-line:last-child {
  border-bottom: 0;
}
.plan-line strong {
  font-size: 13px;
}
.plan-line span {
  color: var(--muted);
  font-size: 12px;
}
.settings-message {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
}
.profile-history {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.profile-history-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.profile-history-head strong {
  font-size: 12px;
}
.profile-history-head span {
  color: var(--muted);
  font-size: 11px;
}
.profile-history-item {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1.65fr);
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.profile-history-item time {
  color: var(--muted);
}
.profile-history-item p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.settings-plans-panel {
  grid-column: 1 / -1;
}
.settings-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}
.settings-plan {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  background: #fff;
}
.settings-plan.recommended {
  border-top: 3px solid var(--brand);
}
.settings-plan h3 {
  font-size: 14px;
}
.settings-plan .plan-price {
  font-size: 25px;
  font-weight: 800;
  margin: 12px 0;
}
.settings-plan .plan-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.settings-plan p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}

.company-link {
  color: var(--ink);
  font-weight: 700;
  text-align: left;
}
.company-link:hover {
  color: var(--brand);
}

.company-detail {
  display: grid;
  gap: 14px;
}
.detail-hero {
  padding: 20px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.company-mark {
  width: 82px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--brand);
  font-size: 25px;
  font-weight: 800;
}
.detail-title-row {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.detail-title-row h2 {
  font-size: 25px;
}
.detail-meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 7px;
  line-height: 1.55;
}
.detail-facts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.detail-fact {
  background: var(--paper);
  border-radius: 7px;
  padding: 9px 12px;
  min-width: 112px;
}
.detail-fact span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.detail-fact strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}
.detail-tabs {
  display: flex;
  gap: 24px;
  padding: 0 20px;
  border-top: 1px solid var(--line);
  overflow-x: auto;
}
.detail-tab {
  min-height: 46px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}
.detail-tab.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 14px;
  align-items: start;
}
.detail-card {
  padding: 18px;
}
.detail-card h3 {
  font-size: 14px;
  margin-bottom: 14px;
}
.overview-list {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 11px 16px;
  font-size: 12px;
}
.overview-list dt {
  color: var(--muted);
}
.overview-list dd {
  font-weight: 600;
  overflow-wrap: anywhere;
}
.score-ring {
  width: 136px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 8px auto 18px;
  position: relative;
}
.score-ring::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fff;
}
.score-ring strong {
  position: relative;
  z-index: 1;
  font-size: 34px;
}
.score-breakdown {
  display: grid;
  gap: 10px;
}
.score-row {
  display: grid;
  grid-template-columns: 125px 1fr 28px;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.mini-bar {
  height: 6px;
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
}
.mini-bar i {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: inherit;
}
.analysis-item {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.analysis-item:last-child {
  border-bottom: 0;
}
.analysis-item strong {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
.analysis-item p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.masked-email {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
td,
.sub,
.plan-line span {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.subscription-expiry {
  font-weight: 700;
  color: var(--ink) !important;
}
.reveal-btn {
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  margin-left: 7px;
}
.checkout-status {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #071c24;
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  display: none;
}

/* ─── PANEL ────────────────────────────────────────────────────── */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.panel-head {
  min-height: 52px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-head h2 {
  font-size: 14px;
  font-weight: 700;
}
.panel-head small {
  color: var(--muted);
  font-size: 12px;
}

/* ─── FILTERS ──────────────────────────────────────────────────── */
.filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
}

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

.field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 7px;
  min-height: 34px;
  padding: 6px 9px;
  color: var(--ink);
  font-size: 13px;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 122, 110, 0.1);
}

/* ─── TABLE ────────────────────────────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  background: #fafbfc;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

tr:last-child td {
  border-bottom: 0;
}
tr:hover td {
  background: #f7fbfa;
}
td strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}
.sub {
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ─── TAGS ─────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}

.tag.green {
  background: var(--green-soft);
  color: var(--brand-dark);
}
.tag.gold {
  background: var(--gold-soft);
  color: #7a551b;
}
.tag.rose {
  background: var(--rose-soft);
  color: #9a3035;
}
.tag.blue {
  background: var(--blue-soft);
  color: #2d5484;
}

/* ─── RIGHT STACK ──────────────────────────────────────────────── */
.right-stack {
  display: grid;
  gap: 14px;
}

.list {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.record-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 7px;
}

.record-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.record-card h3 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.record-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* ─── BARS ─────────────────────────────────────────────────────── */
.bars {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.bar-row {
  display: grid;
  gap: 5px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: #eef1f3;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: inherit;
}

/* ─── DRAWER ───────────────────────────────────────────────────── */
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 24, 0.4);
  display: none;
  justify-content: flex-end;
  z-index: 50;
  backdrop-filter: blur(2px);
}

.drawer.open {
  display: flex;
}

.drawer-panel {
  width: min(540px, 100%);
  background: #fff;
  min-height: 100%;
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

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

.drawer-head h2 {
  font-size: 17px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  align-content: start;
}

.span-2 {
  grid-column: span 2;
}
textarea {
  min-height: 78px;
  resize: vertical;
}

.drawer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* ─── EMPTY ────────────────────────────────────────────────────── */
.empty {
  padding: 32px 16px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  #appShell {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: sticky;
    top: 0;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    z-index: 10;
    overflow-x: auto;
  }
  .sidebar-brand {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 14px;
    margin-right: 6px;
  }
  .sidebar-brand,
  .nav-btn {
    flex: 0 0 auto;
  }
  .nav-btn {
    width: auto;
    white-space: nowrap;
  }
  .nav-section-label,
  .sidebar-spacer,
  .sidebar-user {
    display: none;
  }
  .sidebar-brand-text span {
    display: none;
  }
  .workspace {
    grid-template-columns: 1fr;
  }
  .settings-layout {
    grid-template-columns: 1fr;
  }
  .settings-plan-grid {
    grid-template-columns: 1fr;
  }
  .metrics {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .home-hero {
    grid-template-columns: 1fr;
  }
  .home-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  main {
    padding: 14px;
  }
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .actions {
    justify-content: flex-start;
  }
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filters,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .span-2 {
    grid-column: span 1;
  }
  .settings-grid {
    grid-template-columns: 1fr;
  }
  .settings-grid .span-2 {
    grid-column: span 1;
  }
  .profile-status-row,
  .profile-history-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .profile-change-panel,
  .profile-history-item {
    grid-template-columns: 1fr;
  }
  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }
  thead {
    display: none;
  }
  tr {
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  td {
    border-bottom: 0;
    padding: 5px 16px;
  }
  td::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 2px;
  }
  .land-nav {
    padding: 16px 20px;
  }
  .land-nav-links,
  .land-nav-actions {
    display: none;
  }
  .land-hero {
    padding: 48px 20px 40px;
  }
  .land-section {
    padding: 52px 20px;
  }
  .feature-grid,
  .pricing-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-layout {
    gap: 36px;
  }
  .land-footer {
    padding: 22px 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .land-footer-links {
    justify-content: flex-start;
    gap: 13px;
  }
  .detail-hero {
    grid-template-columns: 64px 1fr;
    padding: 14px;
  }
  .company-mark {
    width: 64px;
  }
  .detail-hero .actions {
    grid-column: 1 / -1;
  }
  .overview-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .home-search {
    flex-direction: column;
  }
}
