:root{
  --bs-primary: #d4a373;
  --bs-primary-rgb: 212, 163, 115;
  --bs-link-color: #d4a373;
  --bs-link-color-rgb: 212, 163, 115;
  --bs-link-hover-color: #c28f5c;
  --bs-link-hover-color-rgb: 194, 143, 92;
  --bg: #0b1320;
  --bg2: #111827;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.66);
  --gold: #d4a373;
  --gold-hi: #dfb287;
  --gold-lo: #b88758;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.12);
  --shadow: 0 16px 50px rgba(0,0,0,.40);
  --shadow2: 0 10px 34px rgba(0,0,0,.30);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Sora", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.btn-primary{
  --bs-btn-color: #000;
  --bs-btn-bg: #c3a076;
  --bs-btn-border-color: #c3a076;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #a57f51;
  --bs-btn-hover-border-color: #a57f51;
  --bs-btn-focus-shadow-rgb: 195, 160, 118;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #a57f51;
  --bs-btn-active-border-color: #a57f51;
  --bs-btn-disabled-color: #000;
  --bs-btn-font-weight: 500;
  --bs-btn-disabled-bg: #c3a076;
  --bs-btn-disabled-border-color: #c3a076;
}

.btn-outline-primary{
  --bs-btn-color: #000;
  --bs-btn-border-color: #c3a076;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #a57f51;
  --bs-btn-hover-border-color: #a57f51;
  --bs-btn-focus-shadow-rgb: 195, 160, 118;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #a57f51;
  --bs-btn-active-border-color: #a57f51;
  --bs-btn-disabled-color: rgba(0,0,0,.55);
  --bs-btn-font-weight: 500;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #c3a076;
}

*{ box-sizing:border-box; }
html{
  min-height: 100%;
  overflow-x: hidden;
  background-color: var(--bg);
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(216,185,107,.14), transparent 62%),
    radial-gradient(720px 480px at 86% 38%, rgba(242,222,156,.08), transparent 58%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 70%, #050711 100%);
  background-repeat: no-repeat;
}
body{
  min-height: 100%;
  margin:0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  line-height:1.45;
  background: transparent;
}

.wrap,
.admin-shell,
.admin-main,
.admin-content,
.form-grid,
.hero,
.split,
.grid-3,
.grid-4,
.video-shell{
  min-width: 0;
}

.form-grid > *,
.hero > *,
.split > *,
.grid-3 > *,
.grid-4 > *{
  min-width: 0;
}

/* Image zoom modal (homepage map). */
body.vbm-modal-open{ overflow: hidden; }

.vbm-zoom-thumb{ display:block; cursor: zoom-in; }
.vbm-zoom-thumb__img{
  width:100%;
  height:auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
  display:block;
}

.vbm-modal{
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.vbm-modal[hidden]{ display:none; }

.vbm-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(6px);
}

.vbm-modal__dialog{
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(7,10,18,.92);
  box-shadow: var(--shadow);
}

.vbm-modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vbm-modal__title{ font-weight: 700; font-family: var(--font-display); }

.vbm-modal__close{
  appearance: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  line-height: 36px;
  text-align:center;
  font-size: 22px;
  cursor: pointer;
}
.vbm-modal__close:hover{ background: rgba(255,255,255,.06); border-color: rgba(216,185,107,.28); }

.vbm-modal__body{
  padding: 12px;
  overflow: auto;
  max-height: calc(100vh - 120px);
}
.vbm-modal__img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
}

/* Admin layout (GoldBooks-like: left sidenav + right white content) */
body.admin{
  background: #ffffff;
}
.admin-shell{ min-height:100vh; display:flex; }
.admin-sidenav{
  width: 270px;
  padding: 18px 14px;
  background: #070A12;
  border-right: 1px solid rgba(255,255,255,.10);
}
.admin-brand{ display:flex; align-items:center; justify-content:center; gap:12px; padding: 12px 10px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.admin-brand-logo{ height: 42px; width:auto; display:block; }
.admin-brand-text{ display:flex; flex-direction:column; line-height:1.1; text-align:center; }
.admin-brand-text strong{ letter-spacing:.22em; text-transform:uppercase; font-size: 13px; color: rgba(255,255,255,.92); }
.admin-brand-text small{ color: rgba(255,255,255,.65); font-size: 12px; }

.admin-menu{ display:flex; flex-direction:column; gap:6px; margin-top:14px; }
.admin-menu-link{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.86);
  border: 1px solid transparent;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
}
.admin-menu-link:hover{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10); }
.admin-menu-link.is-active{ background: rgba(216,185,107,.16); border-color: rgba(216,185,107,.28); color: rgba(255,255,255,.92); }

.admin-menu-group{ border-radius: 12px; }
.admin-menu-group summary{ list-style: none; }
.admin-menu-group summary::-webkit-details-marker{ display:none; }
.admin-menu-group-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.86);
  border: 1px solid transparent;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.admin-menu-group-toggle::after{
  content: '▾';
  font-size: 12px;
  opacity: .86;
}
.admin-menu-group[open] .admin-menu-group-toggle::after{ transform: rotate(180deg); }
.admin-menu-group:hover .admin-menu-group-toggle{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10); }
.admin-menu-group.is-active .admin-menu-group-toggle{ background: rgba(216,185,107,.16); border-color: rgba(216,185,107,.28); color: rgba(255,255,255,.92); }

.admin-submenu{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-top: 6px;
  padding-left: 10px;
}
.admin-submenu-link{
  display:block;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(255,255,255,.82);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13px;
}
.admin-submenu-link:hover{ background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.09); }
.admin-submenu-link.is-active{ background: rgba(216,185,107,.16); border-color: rgba(216,185,107,.28); color: rgba(255,255,255,.92); }

.admin-main{
  flex:1;
  background: #ffffff;
  color: var(--bg);
  border-left: 1px solid rgba(0,0,0,.04);
}
.admin-topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  padding: 14px 18px;
  background: #070A12;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.admin-topbar-left{ font-family: var(--font-display); font-weight: 700; letter-spacing:.01em; }
.admin-topbar-right{ display:flex; align-items:center; gap:10px; }
.admin-user{ color: rgba(255,255,255,.72); font-weight: 600; font-size: 13px; }
.admin-user-menu{ position: relative; }
.admin-user-menu summary{ list-style: none; }
.admin-user-menu summary::-webkit-details-marker{ display: none; }
.admin-user-menu-panel{
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 210px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  box-shadow: 0 10px 34px rgba(0,0,0,.16);
  z-index: 1000;
}
.admin-user-menu-item{
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(0,0,0,.76);
  font-size: 13px;
  font-weight: 600;
}
.admin-user-menu-item:hover{ background: rgba(0,0,0,.04); color: rgba(0,0,0,.86); }
.admin-user-menu-sep{ height: 1px; background: rgba(0,0,0,.09); margin: 6px 4px; }
.admin-content{ padding: 20px 18px 40px; }

.admin-mobile-nav{ display:none; }
.admin-mobile-toggle{ list-style:none; }
.admin-mobile-toggle::-webkit-details-marker{ display:none; }
.admin-mobile-toggle svg{ width: 16px; height: 16px; display:block; }

@media (max-width: 980px){
  .admin-shell{ display:block; }
  .admin-sidenav{ display:none; }
  .admin-main{ border-left: 0; min-height: 100dvh; }
  .admin-topbar-left{ display:flex; align-items:center; gap:10px; }
  .admin-mobile-nav{ display:inline-flex; position: relative; }
  .admin-mobile-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .admin-user-menu-toggle{ max-width: 44vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .admin-mobile-drawer{
    position: fixed;
    left: 0;
    top: 0;
    width: min(82vw, 320px);
    height: 100dvh;
    padding: 16px 12px;
    background: #070A12;
    border-right: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
    overflow-y: auto;
    z-index: 1100;
    transform: translateX(-105%);
    transition: transform .22s ease;
  }
  .admin-mobile-nav[open] .admin-mobile-drawer{ transform: translateX(0); }
  .admin-mobile-nav[open]::before{
    content:"";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.40);
    z-index: 1090;
  }
  .admin-mobile-drawer .admin-menu-link{ color: rgba(255,255,255,.88); }
  .admin-mobile-drawer .admin-menu-link:hover{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10); }
  .admin-mobile-drawer .admin-menu-link.is-active{ background: rgba(216,185,107,.16); border-color: rgba(216,185,107,.28); color: rgba(255,255,255,.92); }
  .admin-mobile-drawer .admin-menu-group-toggle{ color: rgba(255,255,255,.88); }
  .admin-mobile-drawer .admin-submenu-link{ color: rgba(255,255,255,.84); }

  .admin-drawer-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    margin: 2px 2px 10px;
    padding: 0 2px 8px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.92);
  }

  .admin-drawer-close{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.92);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 0;
  }
  .admin-drawer-close:hover{ background: rgba(255,255,255,.10); border-color: rgba(216,185,107,.34); }
}

/* Make existing components readable in admin (white) */
body.admin .kicker{ background: rgba(0,0,0,.04); color: rgba(0,0,0,.70); }
body.admin .lead{ color: rgba(0,0,0,.62); }
body.admin .card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}
body.admin .card + .card{ margin-top: 14px; }
body.admin .card .card-header{
  background: rgba(0,0,0,.015);
  border-bottom: 1px solid rgba(0,0,0,.07);
  font-weight: 600;
}
body.admin .card .table{
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(0,0,0,.018);
}
body.admin .table-card{
  background: #fff !important;
  border: 1px solid rgba(15,23,42,.10) !important;
  box-shadow: 0 8px 22px rgba(15,23,42,.08) !important;
}
body.admin .card .table > :not(caption) > * > *{
  border-bottom-color: rgba(0,0,0,.08);
}
body.admin .admin-table-card{
  overflow: hidden;
}
body.admin .admin-table-card .card-header{
  padding: 12px 14px;
}
body.admin .admin-table-card .table-responsive{
  padding: 0 16px 10px;
}
body.admin .admin-data-table thead th{
  background: rgba(15,23,42,.035);
  color: rgba(15,23,42,.74);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 11px;
  font-weight: 700;
  border-bottom-width: 1px;
  white-space: nowrap;
}
body.admin .admin-data-table tbody td{
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: middle;
}
body.admin .admin-data-table.table-striped > tbody > tr:nth-of-type(odd) > *{
  --bs-table-accent-bg: rgba(15,23,42,.018);
}
body.admin .admin-data-table tbody tr:hover > *{
  background: rgba(159,103,38,.06);
}
body.admin .worship-songs-table th:last-child,
body.admin .worship-songs-table td:last-child{
  width: 120px;
  min-width: 120px;
  white-space: nowrap;
}
body.admin .worship-songs-actions{
  flex-wrap: nowrap !important;
  white-space: nowrap;
}
body.admin .worship-songs-actions form{ margin: 0; }
body.admin .worship-songs-actions .btn,
body.admin .worship-songs-actions form .btn{
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px){
  body.admin .worship-songs-table thead th:nth-child(2){ width: 86px; }
  body.admin .worship-songs-table tbody td{ padding-top: 8px; padding-bottom: 8px; }
  body.admin .worship-songs-table tbody td[data-label="Titlu"] .fw-semibold{
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
body.admin .form-control-song-lyrics{
  font-family: "Montserrat", var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre;
  tab-size: 4;
}
body.admin .song-lyrics-pre{
  font-family: "Montserrat", var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  white-space: pre;
  tab-size: 4;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  background: #fff;
  overflow: auto;
}
body.admin .song-lyrics-rich{
  font-family: "Montserrat", var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.28;
  white-space: pre-wrap;
  tab-size: 4;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  background: #fff;
  overflow: auto;
}
body.admin .song-lyrics-rich .ws-line{ min-height: 1.28em; }
body.admin .song-lyrics-rich .ws-chord-seg{
  position: relative;
  display: inline-block;
  padding-top: .88em;
}
body.admin .song-lyrics-rich .ws-chord{
  position: absolute;
  left: 0;
  top: 0;
  font-size: .76em;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(0,0,0,.76);
}
body.admin .song-lyrics-rich .ws-lyric{ display: inline; }
body.admin .song-lyrics-rich .ws-inline-chord{
  display: inline-block;
  margin-right: .72em;
  font-family: inherit;
  font-size: 1em;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  white-space: nowrap;
}
a{ color:inherit; text-decoration:none; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 34px 18px 84px; position: relative; }

.site-header{
  position: relative;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 6px 2px 26px;
  flex-wrap: wrap;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{ height:48px; width:auto; display:block; }

.brand-mark{
  width:48px; height:48px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(216,185,107,.22), rgba(255,255,255,.06));
  border: 1px solid rgba(216,185,107,.28);
  box-shadow: 0 18px 40px rgba(0,0,0,.42);
  display:grid; place-items:center;
  user-select:none;
}
.brand-mark span{ font-weight:700; letter-spacing:.08em; color: var(--gold); font-size: 14px; }

.brand-title{ display:flex; flex-direction:column; gap:2px; line-height:1.1; }
.brand-title strong{ letter-spacing:.22em; text-transform:uppercase; font-size: 14px; }
.brand-title small{ color: var(--muted); font-size: 12px; }

.nav{ display:flex; gap: 18px; flex-wrap: wrap; justify-content:center; padding: 0; align-items:center; }
.nav-links{ display:flex; gap: 18px; flex-wrap: wrap; justify-content:center; align-items:center; }
.nav-burger{ position: relative; display:none; }
.nav-burger summary{ list-style:none; }
.nav-burger summary::-webkit-details-marker{ display:none; }

@media (min-width: 921px){
  .nav-burger{ display:none !important; }
  .nav-links{ display:flex !important; }
}
.site-nav-link{
  font-weight:600;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  display:inline-flex;
  align-items:center;
  height: 30px;
  padding: 0 2px;
  border-radius: 0;
  border: 0;
  position: relative;
}

@media (max-width: 560px){
  .nav{ gap: 10px; }
  .site-nav-link{ font-size: 13px; }
}
.site-nav-link:after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-8px;
  height:2px;
  background: transparent;
  border-radius: 999px;
}
.site-nav-link:hover{ color: rgba(255,255,255,.92); }
.site-nav-link:hover:after{ background: rgba(216,185,107,.22); }
.site-nav-link.is-active{ color: rgba(255,255,255,.95); }
.site-nav-link.is-active:after{ background: rgba(216,185,107,.55); }

/* Header: login icon + user dropdown */
.nav-actions{ display:flex; align-items:center; gap:10px; }
.nav-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.90);
  cursor: pointer;
}
.nav-icon:hover{ background: rgba(255,255,255,.05); border-color: rgba(216,185,107,.22); }
.nav-icon svg{ width: 18px; height: 18px; display:block; }

.nav-user{ position: relative; }
.nav-user summary{ list-style:none; }
.nav-user summary::-webkit-details-marker{ display:none; }

.nav-menu{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  min-width: 220px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: #070A12;
  box-shadow: var(--shadow2);
  z-index: 1000;
}
.nav-menu-head{
  padding: 10px 10px 8px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 6px;
}
.nav-menu-item{
  display:block;
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.86);
  font-weight: 600;
  font-size: 14px;
}
.nav-menu-item:hover{ background: rgba(255,255,255,.06); }
.nav-menu-sep{ height: 1px; background: rgba(255,255,255,.08); margin: 6px 8px; }

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

.hero{ display:grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: stretch; }
.hero-left{ padding: 34px 32px 30px; }
.hero-right{ padding: 18px; display:flex; flex-direction:column; gap: 12px; }

.home-panel{
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06) !important;
  background: linear-gradient(180deg, rgba(19,22,28,.96), rgba(16,18,24,.94));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015), 0 18px 46px rgba(0,0,0,.36);
}

body:not(.admin) .card:not(.signup-card){
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(19,22,28,.96), rgba(16,18,24,.94));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015), 0 18px 46px rgba(0,0,0,.36);
  color: var(--text);
}

.hero-left.home-panel{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 360px at -4% -8%, rgba(216,185,107,.15), transparent 58%),
    radial-gradient(520px 280px at 30% 8%, rgba(255,255,255,.025), transparent 62%),
    linear-gradient(180deg, rgba(19,22,28,.96), rgba(16,18,24,.94));
}

.hero-left.home-panel > *{
  position: relative;
  z-index: 1;
}

.home-map-btn{
  border-color: rgba(255,255,255,.20);
  color: rgba(255,255,255,.92);
}

.home-map-btn:hover,
.home-map-btn:focus{
  border-color: rgba(255,255,255,.52);
  color: rgba(255,255,255,.98);
  background: rgba(255,255,255,.08);
}

.auth-login{
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 640px;
  margin: 10px auto 0;
}
.auth-login-card{
  width: 100%;
  max-width: 560px;
  padding: 20px;
}
.auth-login-title{
  margin: 12px 0 8px;
  font-size: clamp(28px, 4.2vw, 36px);
}
.auth-login-lead{
  margin-bottom: 14px;
  font-size: 15px;
}
.auth-login .form{ gap: 10px; }
.auth-login-secondary{ margin-top: 8px; }

.auth-simple{
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 640px;
  margin: 10px auto 0;
}
.auth-simple-card{
  width: 100%;
  max-width: 560px;
  padding: 20px;
}
.auth-simple .form{ gap: 10px; }

h1{ margin: 16px 0 10px; font-size: clamp(22px, 2.1vw, 30px); line-height:1.12; letter-spacing:.01em; }

h1, h2, h3{ font-family: var(--font-display); }
h2{ margin:0; }

.gold{ background: linear-gradient(180deg, var(--gold-hi), var(--gold-lo)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.lead{ margin: 0 0 18px; color: var(--muted); font-size: 16px; max-width: 72ch; }

.quote{
  margin-top: 18px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.quote p{ margin:0; color: rgba(255,255,255,.90); font-weight:600; }
.quote .ref{ margin-top:8px; color: rgba(255,255,255,.60); font-size: 13px; }

.info{
  position: relative;
  z-index: 1;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.info h2{
  margin:0 0 10px;
  font-size: 15px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(255,255,255,.90);
}
.info .info-row{ display:flex; justify-content:space-between; gap:14px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.08); }
.info .info-row:first-of-type{ border-top:none; padding-top:0; }
.info .label{ color: rgba(255,255,255,.65); font-size: 13px; }
.info .value{ color: rgba(255,255,255,.92); font-weight:600; text-align:right; }

.section{ margin-top: 18px; }

/* Signup page: dark panel, consistent with homepage cards */
.signup-card{
  background: linear-gradient(180deg, rgba(19,22,28,.96), rgba(16,18,24,.94));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015), 0 18px 46px rgba(0,0,0,.36);
}
.signup-card:hover{ border-color: rgba(255,255,255,.08); }
.signup-card,
.signup-card h1,
.signup-card h2,
.signup-card h3{ color: var(--text); }
.signup-card .lead{ color: var(--muted); }
.signup-card .kicker{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
}
.signup-card a{ color: rgba(255,255,255,.82); text-decoration: none; }
.signup-card a:hover{ color: rgba(255,255,255,.94); }

.admin-pill{ display:inline-flex; align-items:center; padding: 4px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03); font-size: 12px; }

/* Homepage/layout utilities */
.home-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.section-head{
  position: relative;
  z-index: 1;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 14px;
  flex-wrap:wrap;
}
.section-title{ margin: 10px 0 6px; font-size: 22px; line-height:1.15; letter-spacing:.01em; }
.section-lead{ margin:0; color: var(--muted); font-size: 15px; max-width: 72ch; }
.section-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.grid-3{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.grid-4{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.feature{
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}
.feature-title{ font-family: var(--font-display); font-weight:700; letter-spacing:.01em; }
.feature-copy{ margin-top: 8px; color: rgba(255,255,255,.72); font-size: 14px; }

.mini{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow2);
}
.mini:hover{ background: rgba(255,255,255,.03); border-color: rgba(216,185,107,.18); }
.mini-inner{ padding: 18px 18px; position: relative; z-index: 1; }
.mini-title{ margin: 0; font-size: 18px; line-height:1.2; }
.mini-meta{ margin-top: 8px; color: rgba(255,255,255,.62); font-size: 13px; }
.mini-copy{ margin: 10px 0 0; color: rgba(255,255,255,.72); font-size: 14px; }

.split{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.video{ margin-top: 18px; padding: 22px; }
.video-shell{ display:grid; grid-template-columns: .95fr 1.05fr; gap: 18px; align-items: center; }
.video-copy{ padding: 8px 8px 8px 6px; }
.video-copy h2{ margin:0 0 10px; font-size: 15px; letter-spacing:.08em; text-transform:uppercase; color: rgba(255,255,255,.90); }
.video-copy h3{ margin: 0 0 10px; font-size: 22px; line-height:1.15; letter-spacing:.01em; }
.video-copy p{ margin: 0 0 14px; color: var(--muted); font-size: 15px; max-width: 56ch; }

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  color: rgba(255,255,255,.86);
  font-weight:600;
  font-size: 13px;
  margin: 0 10px 10px 0;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(8px);
}
.pill b{ color: rgba(255,255,255,.92); font-weight:700; }

.video-frame{ display:flex; justify-content:center; align-items:center; padding: 8px; }

.reel{
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(216,185,107,.22);
  background: rgba(0,0,0,.28);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  position: relative;
}
.reel:before{
  content:"";
  position:absolute; inset:-1px;
  pointer-events:none;
  background: radial-gradient(260px 180px at 35% 10%, rgba(242,222,156,.18), transparent 60%);
  opacity:.9;
  z-index: 1;
}
.reel iframe{ width: 100%; height: 100%; border: 0; display:block; position: relative; z-index: 0; }

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

.site-footer{
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 22px 2px 0;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 18px;
  flex-wrap:wrap;
}
.site-footer__column{
  min-width: 220px;
  flex: 1 1 220px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.site-footer__column h4{
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
}
.site-footer__column p{ margin: 0; color: rgba(255,255,255,.68); }
.site-footer__links{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  justify-content:flex-start;
  text-align:left;
}
.site-footer a{ color: rgba(255,255,255,.72); border-bottom: 0; text-decoration: none; }
.site-footer a:hover{ color: rgba(255,255,255,.90); }

.table-card{
  background: #131c2b !important;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px !important;
  padding: 24px !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.30);
}

.table-card + .table-card{
  margin-top: 24px;
}

.table-shell{
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 6px 18px rgba(15,23,42,.10);
}

.table-shell .table{
  margin-bottom: 0;
}

.table-shell .table > :not(caption) > * > *{
  border-bottom-color: rgba(15,23,42,.10);
  padding-top: 10px;
  padding-bottom: 10px;
}

.table-shell .table thead th{
  background: rgba(15,23,42,.05);
}

.domain-pricing-table,
.domain-pricing-table > :not(caption) > * > *{
  --bs-table-bg: transparent;
  background: transparent !important;
  color: rgba(255,255,255,.92);
  border-bottom-color: rgba(255,255,255,.12);
}

.domain-pricing-table td{
  padding-left: 0;
  padding-right: 0;
}

.account-card{
  background: #fff !important;
  color: #101828 !important;
  border: 1px solid rgba(15,23,42,.10) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 24px rgba(15,23,42,.10) !important;
  padding: 24px !important;
}

.account-card h1,
.account-card h2,
.account-card h3,
.account-card .lead,
.account-card p,
.account-card label,
.account-card li{
  color: #101828;
}

.account-card .table-shell{
  box-shadow: none;
  border: 1px solid rgba(15,23,42,.10);
}

.table-section-gap{
  margin-top: 26px;
}

.work-steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.work-step{
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.work-step span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212,163,115,.18);
  color: rgba(255,255,255,.92);
  font-weight: 700;
}
.work-step strong{ font-size: 15px; }

.tech-stack{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.cta-band h2{
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
}

.business-list{
  margin: 0;
  padding-left: 20px;
  color: rgba(255,255,255,.84);
  display:grid;
  gap: 8px;
}

@media (max-width: 980px){
  .site-header{ justify-content: center; }
  .top-actions{ justify-content:center; }
}

@media (max-width: 920px){
  .hero{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .work-steps{ grid-template-columns: 1fr 1fr; }
  .value{ text-align:left; }
  .info .info-row{ flex-direction:column; align-items:flex-start; }

  .video-shell{ grid-template-columns: 1fr; align-items: start; }
  .video-frame{ padding-top: 6px; }
  .reel{ max-width: 420px; }

  .site-header{ justify-content: space-between; flex-wrap: nowrap; }
  .nav{ width: auto; justify-content: flex-end; flex-wrap: nowrap; }
  .nav-links{ display:none !important; }
  .nav-burger{ display:inline-flex !important; position: static; }

  .nav-burger .nav-icon{ width: 46px; height: 46px; border-radius: 14px; }
  .nav-burger .nav-icon svg{ width: 22px; height: 22px; }

  .nav-burger .nav-menu{
    position: fixed;
    left: 0;
    top: 0;
    right: auto;
    width: min(82vw, 320px);
    height: 100dvh;
    border-radius: 0 16px 16px 0;
    border: 1px solid rgba(255,255,255,.12);
    border-left: 0;
    background: #070A12;
    padding: 14px 12px;
    box-shadow: 0 24px 70px rgba(0,0,0,.55);
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform .22s ease;
    z-index: 1100;
  }

  .nav-burger[open] .nav-menu{ transform: translateX(0); }

  .nav-burger[open]::before{
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.46);
    backdrop-filter: blur(2px);
    z-index: 1090;
  }

  .nav-burger .nav-menu-item{
    font-size: 15px;
    padding: 11px 10px;
  }

  .nav-drawer-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    margin: 2px 2px 10px;
    padding: 0 2px 8px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.92);
  }

  .nav-drawer-close{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.92);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 0;
  }
  .nav-drawer-close:hover{ background: rgba(255,255,255,.10); border-color: rgba(216,185,107,.34); }
}

@media (max-width: 640px){
  .grid-4{ grid-template-columns: 1fr; }
  .auth-login-card{ padding: 16px; }
  .auth-simple-card{ padding: 16px; }
}

/* ===== SiteExpert Premium SaaS Visual Layer ===== */
html::before{
  content: "";
  position: fixed;
  inset: 0;
  background: url('/images/background.png') center center / cover no-repeat;
  z-index: -4;
  pointer-events: none;
}

:root{
  --bs-primary: #e05a4f;
  --bs-primary-rgb: 224, 90, 79;
  --bs-link-color: #e05a4f;
  --bs-link-color-rgb: 224, 90, 79;
  --bs-link-hover-color: #ff6b5c;
  --bs-link-hover-color-rgb: 255, 107, 92;
  --gold: #e05a4f;
  --gold-hi: #ff6b5c;
  --gold-lo: #e05a4f;
}

html{
  background:
    radial-gradient(940px 520px at 12% 10%, rgba(224,90,79,.14), transparent 62%),
    radial-gradient(880px 460px at 84% 24%, rgba(224,90,79,.09), transparent 62%),
    linear-gradient(180deg, #0f172a 0%, #0b1320 76%, #0b1320 100%);
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(780px 420px at 12% 8%, rgba(224,90,79,.14), transparent 60%),
    radial-gradient(680px 420px at 84% 24%, rgba(224,90,79,.10), transparent 62%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
  background-position: center, center, -1px -1px, -1px -1px;
  opacity: .38;
  z-index: -1;
}

body:not(.admin) .card:not(.signup-card){
  background: linear-gradient(165deg, rgba(22,31,46,.96), rgba(14,22,36,.94));
  border-color: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02), 0 24px 56px rgba(1,6,18,.42);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.section-clean{
  padding: 0;
  margin-top: 24px;
}

.site-header + section:not(.hero){
  margin-top: 26px;
}

.hero-content,
.hero-visual{
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: linear-gradient(170deg, rgba(20,30,46,.96), rgba(13,21,34,.94));
  box-shadow: 0 24px 58px rgba(1,6,18,.42);
}

.hero-content{ padding: 34px 30px; }

.hero-visual{ padding: 14px; }

body:not(.admin) .card:not(.signup-card):hover{
  border-color: rgba(224,90,79,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 30px 64px rgba(1,6,18,.52);
}

.btn{
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn-primary{
  --bs-btn-color: #fff;
  --bs-btn-bg: #e05a4f;
  --bs-btn-border-color: #e05a4f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff7a5f;
  --bs-btn-hover-border-color: #ff7a5f;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #d45145;
  --bs-btn-active-border-color: #d45145;
  background: linear-gradient(120deg, #e05a4f, #ff7a5f);
  border: none;
  box-shadow: 0 10px 28px rgba(224,90,79,.34);
}

.btn-primary:hover,
.btn-primary:focus-visible{
  box-shadow: 0 14px 34px rgba(224,90,79,.44);
}


.btn-outline-secondary{
  border-color: #c3a076;
  color: #a57f51;
  background: #fff7ec;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus-visible{
  border-color: #a57f51;
  background: #ffe4c2;
  color: #000;
  box-shadow: 0 0 0 4px rgba(195,160,118,.18);
}

.hero{ gap: 24px; }

.hero-left h1{
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.04;
  margin-bottom: 16px;
}

.hero-left .lead{
  font-size: 18px;
  max-width: 56ch;
}

.hero-visual{
  position: relative;
  overflow: hidden;
}

.hero-glow{
  position: absolute;
  width: 380px;
  height: 380px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(224,90,79,.34), rgba(255,107,92,.10), transparent 70%);
  filter: blur(10px);
  animation: heroPulse 6s ease-in-out infinite;
}

.dashboard-mock{
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(18,27,43,.98), rgba(10,18,31,.95));
  padding: 14px;
  min-height: 290px;
}

.dashboard-bar{
  height: 10px;
  width: 44%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224,90,79,.8), rgba(255,122,95,.68));
  margin-bottom: 14px;
}

.dashboard-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metric-card{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  padding: 14px;
  min-height: 92px;
}

.metric-card small{
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  margin-bottom: 6px;
}

.metric-card strong{
  font-size: 28px;
  letter-spacing: .01em;
}

.metric-card-wide{ grid-column: span 2; }

.status-row{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.86);
}

.status-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 0 5px rgba(45,212,191,.15);
}

.service-card,
.service-item{
  position: relative;
  overflow: hidden;
}

.service-card:hover,
.service-item:hover{
  transform: translateY(-3px);
  border-color: rgba(224,90,79,.42);
}

.service-icon-wrap{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: linear-gradient(140deg, rgba(224,90,79,.22), rgba(255,107,92,.12));
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-icon-wrap svg{
  width: 28px;
  height: 28px;
}

.service-icon-wrap i[data-lucide]{
  width: 28px;
  height: 28px;
  stroke-width: 1.9;
}

.service-card:hover .service-icon-wrap,
.service-item:hover .service-icon-wrap{
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(224,90,79,.28);
}

.tech-stack-rich{ gap: 12px; }

.tech-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(140deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

.tech-badge i{ color: #ff6b5c; }

.tech-badge i[data-lucide]{
  width: 19px;
  height: 19px;
  color: #ff8a7a;
}

.clean-steps{
  margin-top: 14px;
  gap: 16px;
}

.clean-steps .work-step{
  background: transparent;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px;
}

.clean-steps .work-step p{
  margin: 4px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

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

.benefit-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}

.benefit-item h3{
  margin: 2px 0 6px;
  font-size: 18px;
}

.benefit-item p{
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.system-item .mini-inner{ padding: 16px; }

.system-illustration{
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  overflow: hidden;
}

.system-illustration svg{
  width: 100%;
  height: auto;
  display: block;
}

.service-list{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.service-row{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: transform .2s ease;
}

.service-row:hover{ transform: translateX(2px); }

.service-row-copy h3{
  margin: 4px 0 5px;
  font-size: 18px;
}

.service-row-copy p{
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  max-width: 48ch;
}

.section{ margin-top: 54px; }

.section{ margin-top: 30px; }

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 920px){
  .hero-left h1{ font-size: clamp(30px, 9vw, 46px); }
  .dashboard-grid{ grid-template-columns: 1fr; }
  .metric-card-wide{ grid-column: auto; }
  .benefits-list,
  .service-list{ grid-template-columns: 1fr; }
}

/* ===== Reference Match Polish ===== */
.wrap{
  max-width: 1280px;
  padding-top: 0;
}

.site-header{
  position: sticky;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  padding: 14px clamp(24px, 6vw, 64px);
  background: linear-gradient(110deg, rgba(20,29,47,.82), rgba(18,27,43,.74));
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(9px);
  box-shadow: 0 20px 46px rgba(0,0,0,.25);
}

.brand-logo{ height: 48px; }

.site-nav-link{
  font-size: 18px;
  color: rgba(255,255,255,.84);
}

.site-nav-link.is-active,
.site-nav-link:hover{ color: #fff; }

.site-nav-link.is-active:after,
.site-nav-link:hover:after{ background: rgba(224,90,79,.9); }

.hero{ margin-top: 46px; }

.hero-tags{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.hero-tags span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-tags i[data-lucide]{
  width: 15px;
  height: 15px;
  color: #ff6b5c;
}

body::after{
  content: "";
  position: fixed;
  left: -10vw;
  right: -10vw;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,90,79,.5), transparent);
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: -1;
}

.home-block .section-title{
  font-size: clamp(36px, 3.9vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.012em;
}

.home-block .section-lead{
  margin-top: 10px;
  color: rgba(255,255,255,.62);
}

.feature-link{
  margin-top: 16px;
  display: inline-flex;
  color: rgba(255,255,255,.88);
  font-size: 15px;
}

.feature-link:hover{ color: #fff; }

.example-search-wrap{
  margin-top: 18px;
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.example-search{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(165deg, rgba(18,27,43,.9), rgba(10,18,31,.86));
  box-shadow: 0 16px 34px rgba(1,6,18,.36);
}

.example-search-icon{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.62);
}

.example-search i[data-lucide]{
  width: 17px;
  height: 17px;
}

.example-search input{
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
}

.example-search input::placeholder{ color: rgba(255,255,255,.44); }

.example-search-wrap small{
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.58);
}

.cta-center{
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 94px;
}

.hero-left h1{
  font-size: clamp(44px, 6.6vw, 84px);
  line-height: 1.02;
  margin-bottom: 20px;
  letter-spacing: -0.016em;
}

.hero-left .lead{
  font-size: 20px;
  line-height: 1.55;
  max-width: 52ch;
  color: rgba(255,255,255,.72);
}

.section{ margin-top: 72px; }

.grid-3{ gap: 18px; }

.feature,
.mini{
  border-radius: 16px;
}

.feature{ padding: 20px; }

.mini-inner{ padding: 20px; }

.feature-title,
.mini-title{
  font-size: 24px;
  letter-spacing: -0.005em;
}

.feature-copy,
.mini-copy{
  font-size: 15px;
  line-height: 1.6;
}

.tech-badge,
.service-icon-wrap{
  border-color: rgba(255,255,255,.16);
}

.tech-badge i,
.tech-badge i[data-lucide]{
  color: #ff6b5c;
}

@media (max-width: 920px){
  .site-header{
    position: relative;
    top: 0;
    width: auto;
    margin: 0;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    padding: 10px 14px;
  }

  .site-nav-link{ font-size: 14px; }

  .table-card,
  .account-card{
    padding: 20px !important;
  }
}

.domain-check-card{
  max-width: 760px;
  margin-inline: auto;
}

.domain-check-actions{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 576px){
  .domain-check-card{
    padding: 14px !important;
  }

  .domain-check-card h1{
    margin-bottom: 8px;
    font-size: 1.55rem;
  }

  .domain-check-card .lead{
    margin-bottom: 10px;
    font-size: .98rem;
  }

  .domain-check-card .alert{
    margin-bottom: 8px;
    padding: .62rem .7rem;
  }

  .domain-check-actions{
    gap: 12px;
    margin-top: 8px;
  }

  .domain-check-actions .btn{
    padding-top: .52rem;
    padding-bottom: .52rem;
  }
}
