:root{
  --bg:#12002a; /* deep saturated purple */
  --panel:#0f1620;
  --muted:#9fb0c2;
  --text:#ffffff; /* bright white */
  --line:rgba(255,255,255,.08);
  /* Brand: base purple from logo + optional magenta shift */
  --brand:#7a2cff;
  --accent:#ff7a00; /* orange accent */
  --accent2:#ff4d8d;
  --ok:#35d07f;
  --warn:#ffd166;
  --danger:#ff5a7a;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 14px;
  --tap: 52px;
}

*{box-sizing:border-box}
html,body{min-height:100vh}
body{
  margin:0;
  background:
    radial-gradient(1200px 800px at 15% 5%, rgba(122,44,255,.45), transparent 65%),
    radial-gradient(1000px 700px at 85% 10%, rgba(122,44,255,.28), transparent 60%),
    radial-gradient(800px 600px at 50% 100%, rgba(122,44,255,.20), transparent 70%),
    linear-gradient(180deg, rgba(18,0,42,1) 0%, rgba(30,5,60,1) 50%, rgba(18,0,42,1) 100%),
    var(--bg);
  background-attachment: fixed;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.35;
  overflow-x:hidden;
}

a{color:inherit}
.brand, .btn, .tab { touch-action: manipulation; }
.btn, .tab{ user-select:none; }
.btn{ cursor:pointer; }
button.btn{
  appearance:none;
  -webkit-appearance:none;
  border:1px solid var(--line);
}
.btn:disabled{opacity:.55; cursor:not-allowed}

.topbar{
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin: -18px -14px 14px;
  padding: 14px 14px 12px;
  z-index: 5;
}
@media (min-width:760px){
  .topbar{margin:-22px -18px 16px; padding:16px 18px 12px}
}
.container *{ -webkit-tap-highlight-color: transparent; }
.container{
  max-width:980px;
  margin:0 auto;
  width:100%;
  padding:18px 14px 52px;
  overflow-wrap:anywhere;
}
body[data-admin="1"] .container{
  padding:20px 18px 38px;
}
@media (min-width:760px){
  .container{padding:22px 18px 56px}
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.logo{
  width:38px;height:38px;
  display:grid;
  place-items:center;
  overflow:visible;
}
.logo img{width:100%;height:100%;object-fit:contain; display:block}
.brand b{letter-spacing:.2px}
.brand .name{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .name span{font-size:12px;color:rgba(233,240,247,.75);font-weight:650}
.brand b{letter-spacing:.2px}
.badge{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
  white-space:nowrap;
}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding:24px;
  overflow:hidden;
}
@media (min-width:760px){
  .card{padding:28px}
}

.hero{
  padding:28px 20px;
}
.kicker{
  color:var(--muted);
  font-size:14px;
  margin:0 0 16px;
}
h1{
  margin:0 0 16px;
  font-size:30px;
  letter-spacing:-.6px;
}
h2{
  margin:0 0 12px;
  font-size:22px;
  letter-spacing:-.4px;
}
.sub{
  margin:0 0 20px;
  color:rgba(233,240,247,.82);
  font-size:15px;
}
@media (min-width:760px){
  h1{font-size:40px; margin:0 0 20px}
  h2{font-size:26px; margin:0 0 16px}
  .sub{font-size:16px; margin:0 0 24px}
  .hero{padding:32px 28px}
}

.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
@media (min-width:760px){
  .grid{grid-template-columns:1fr 1fr; gap:20px}
}

.dash-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
@media (min-width:760px){
  .dash-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:16px;
  }
}
.dash-card{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  border-radius: 18px;
  padding:8px;
  min-height:78px;
  aspect-ratio: 1 / 1;
  font-weight:650;
  letter-spacing:.1px;
  cursor:pointer;
  appearance:none;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
  flex-direction:column;
  gap:10px;
}
.dash-card:hover{
  border-color: rgba(122,63,229,.55);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transform: translateY(-2px);
}
.dash-card-title{
  font-size:13px;
  color:rgba(255,255,255,.95);
  margin-top:4px;
}
.dash-card-icon{
  font-size:18px;
  opacity:.9;
  line-height:1;
}
.dash-section-card{
  padding:0;
  border:0;
  border-radius:0;
  background: transparent;
  box-shadow:none;
  backdrop-filter: none;
}
.dash-section-card .section-heading{
  font-size:22px;
  font-weight:800;
  color:var(--text);
  margin-bottom:12px;
  letter-spacing:-.3px;
}
body[data-admin="1"] .card.hero{
  padding:16px;
}
body[data-admin="1"] .card.hero h2{
  font-size:18px;
  line-height:1.2;
  margin:0 0 8px;
}
body[data-admin="1"] .section{
  margin-top:20px;
}
body[data-admin="1"] .row .btn{
  min-height:38px;
}
body[data-admin="1"] .topbar{
  margin: -18px -16px 18px;
  padding: 14px 16px 12px;
}
body[data-admin="1"] .dash-grid{
  gap:12px;
}
body[data-admin="1"] .dash-section-card .section-heading{
  font-size:18px;
  margin-bottom:14px;
}
body[data-admin="1"] .dash-card{
  padding:6px;
  min-height:64px;
  gap:8px;
  border-radius:16px;
  aspect-ratio: 4 / 3;
}
body[data-admin="1"] .dash-card-title{
  font-size:12px;
  margin-top:2px;
}
body[data-admin="1"] .dash-card-icon{
  font-size:16px;
}
.modal[data-admin-contact-modal] .sub{
  margin:0 0 12px;
}
.modal[data-admin-contact-modal] .tabs{
  margin:8px 0 6px;
}
.modal[data-admin-contact-modal] .field{
  margin:6px 0;
  gap:4px;
}
.modal[data-admin-contact-modal] input,
.modal[data-admin-contact-modal] select,
.modal[data-admin-contact-modal] textarea{
  padding:10px 12px;
}
.modal[data-admin-contact-modal] textarea{
  min-height:78px;
}
.modal[data-admin-contact-modal] .grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.dash-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 12px;
}

.btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  width:100%;
  text-decoration:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:16px 16px;
  border-radius: var(--radius2);
  font-weight:650;
  font-size:16px;
  letter-spacing:.2px;
  min-height: var(--tap);
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn:hover{
  border-color: rgba(122,63,229,.45);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transform: translateY(-2px);
}
.btn .hint{color:var(--muted);font-weight:550;font-size:13px}
.btn.primary{
  background: linear-gradient(135deg, rgba(122,44,255,.34), rgba(122,44,255,.18));
  border-color: rgba(122,44,255,.55);
}
.btn.cta{
  background: rgba(255,122,0,.95);
  border-color: rgba(255,122,0,.70);
  color: #12002a;
}
.btn.cta .hint{color: rgba(18,0,42,.75)}
.btn.ghost{
  background: transparent;
}
.btn.danger{
  border-color: rgba(255,90,122,.4);
  background: rgba(255,90,122,.08);
}
.btn:focus-visible{
  outline: 2px solid rgba(255,122,0,.75);
  outline-offset: 2px;
}

.nav{
  display:flex;
  gap:10px;
  align-items:center;
}
.iconbtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  min-height:44px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  text-decoration:none;
  font-weight:750;
  font-size:13px;
}
.iconbtn:hover{border-color: rgba(255,122,0,.45)}

.row{
  display:flex; gap:14px; flex-wrap:wrap;
}
@media (min-width:760px){
  .row{gap:16px}
}
.row .btn{flex:1 1 220px}
@media (max-width:420px){
  .row .btn{flex:1 1 100%}
}

.list{
  margin:0;
  padding:0 0 0 20px;
  color:rgba(233,240,247,.86);
}
.list li{margin:10px 0}
@media (min-width:760px){
  .list li{margin:12px 0}
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:rgba(233,240,247,.9);
  font-weight:650;
  font-size:13px;
}

.section{
  margin-top:24px;
}
.section > .pill{
  margin-bottom:10px;
}
@media (min-width:760px){
  .section{margin-top:28px}
}
.muted{color:var(--muted)}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:8px 0;
}
label{font-weight:650;font-size:13px;color:rgba(233,240,247,.86)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
textarea{min-height:94px;resize:vertical}
input[type="file"]{
  padding:10px;
  background: rgba(0,0,0,.12);
}
input[type="file"]::file-selector-button{
  margin-right:12px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(122,44,255,.55);
  background: linear-gradient(135deg, rgba(122,44,255,.34), rgba(122,44,255,.18));
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}
input[type="file"]::file-selector-button:hover{
  border-color: rgba(122,63,229,.75);
}

.contact-form{
  margin-top:10px;
}
.check{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
  font-size:14px;
  color:rgba(233,240,247,.86);
}
.check input{
  width:18px;
  height:18px;
}

.form-feedback{
  min-height:24px;
  margin:12px 0 4px;
  padding:0 4px;
  font-size:14px;
  line-height:1.4;
  border-radius:6px;
  transition:all .2s ease;
}
.form-feedback:empty{
  display:none;
}
.form-feedback.success{
  color:#4ade80;
}
.form-feedback.error{
  color:#f87171;
}

.tabs{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:12px 0 4px;
}
.tab{
  cursor:pointer;
  user-select:none;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:rgba(233,240,247,.88);
  font-weight:650;
  font-size:13px;
  min-height: 44px;
}
.tab.active{
  border-color: rgba(90,167,255,.35);
  background: rgba(90,167,255,.12);
}

.ocr-preview{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.16);
}
.ocr-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:8px;
  margin-top:6px;
}
.ocr-label{
  font-size:11px;
  letter-spacing:.3px;
  text-transform:uppercase;
  color:rgba(233,240,247,.6);
}
.ocr-value{
  font-size:13px;
  color:rgba(255,255,255,.92);
}
.ocr-text{
  margin-top:8px;
  font-size:12px;
  line-height:1.45;
  color:rgba(233,240,247,.78);
  max-height:120px;
  overflow:auto;
  white-space:pre-wrap;
}

.sharebar{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:14px;
}
@media (min-width:760px){
  .sharebar{grid-template-columns: 240px 1fr}
}
.qr{
  border:1px solid var(--line);
  border-radius: 16px;
  padding:12px;
  background: rgba(0,0,0,.18);
  display:flex; align-items:center; justify-content:center;
  min-height:220px;
}
.qr img{
  width:100%;
  height:auto;
  border-radius:12px;
}
.linkbox{
  border:1px solid var(--line);
  border-radius: 16px;
  padding:14px;
  background: rgba(0,0,0,.14);
}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;}
.small{font-size:12px}

.footer{
  margin-top:18px;
  color:rgba(159,176,194,.85);
  font-size:12px;
}

.site-footer{
  margin:36px auto 4px;
  text-align:center;
  color:rgba(233,240,247,.75);
  font-size:12px;
}
.site-footer a{
  color:rgba(233,240,247,.85);
  text-decoration:none;
}
.site-footer a:hover{
  text-decoration:underline;
}
.legal-links{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
}
.legal-links .sep{
  opacity:.5;
}
.legal-copy{
  margin-top:8px;
  opacity:.8;
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10;
}
.modal[hidden]{
  display:none;
}
.modal-backdrop{
  position:absolute;
  inset:0;
  background: rgb(18, 0, 42);
}
.modal-card{
  position:relative;
  width:min(860px, 92vw);
  max-height:92vh;
  overflow:auto;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:20px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-size:22px;
  cursor:pointer;
}
.section-heading{
  margin:12px 0 8px;
  font-size:16px;
  color:rgba(233,240,247,.9);
}

/* Collaboration accordion */
.collab{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.collab-pill{
  align-self:flex-start;
}
.collab-items{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:8px;
}
@media (min-width:760px){
  .collab-items{
    grid-template-columns: repeat(3, 1fr);
    align-items:start;
  }
}
.collab-item{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.collab-panel{
  margin-top:6px;
}
.collab-panel[hidden]{
  display:none;
}
.collab-card{
  margin-top:4px;
}
.collab-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.12);
  transition: transform .2s ease, border-color .2s ease;
}
.collab-toggle::before{
  content:"";
  width:8px;
  height:8px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform: rotate(45deg);
}
.collab [aria-expanded="true"] .collab-toggle{
  transform: rotate(180deg);
  border-color: rgba(255,255,255,.45);
}

/* Founder block */
.founder{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin-top:10px;
  padding:24px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.founder-header{
  display:flex;
  gap:18px;
  align-items:stretch;
  padding-bottom:4px;
  margin-bottom:12px;
}
.founder-info{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-height:140px;
  height:auto;
  justify-content:flex-start;
}
.founder-info .who{
  margin:0;
}
@media (min-width:760px){
  .founder{
    gap:28px;
  }
  .founder-info{
    height:140px;
  }
}
.founder-avatar{
  flex-shrink:0;
  width:140px;
  height:140px;
  border-radius:26px;
  overflow:hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  border: 3px solid rgba(255,255,255,.15);
}
.founder-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.founder-avatar .initials{
  display:grid;
  place-items:center;
  width:100%;
  height:100%;
  font-weight:900;
  font-size:40px;
  letter-spacing:.4px;
  color: rgba(255,255,255,.95);
  background: linear-gradient(135deg, rgba(122,44,255,.6), rgba(255,77,141,.4));
}
.founder-actions{
  display:flex;
  gap:10px;
  margin-top:auto;
  flex-wrap:wrap;
}
.founder-actions .btn{
  min-width:150px;
  width:auto;
  flex:1 1 0;
  justify-content:center;
}
@media (min-width:760px){
  .founder-actions{
    flex-wrap:nowrap;
  }
}
.founder-content{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:0;
}
.founder .who{
  font-weight:900;
  margin:0;
  font-size:24px;
  letter-spacing:-.5px;
  color:var(--text);
  line-height:1.2;
}
.founder .bio{
  color: rgba(255,255,255,.9);
  font-size:16px;
  line-height:1.7;
  margin:0;
}
.founder .experience{
  margin:4px 0 0;
  padding:0;
  color: rgba(255,255,255,.85);
  font-size:15px;
  line-height:1.7;
  font-style:italic;
}

.chat{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.chat-header{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.chat-role{
  color:rgba(233,240,247,.75);
  font-size:13px;
  font-weight:650;
  letter-spacing:.2px;
}
.chat-bubble{
  position:relative;
  max-width:560px;
  padding:12px 14px;
  border-radius:16px 16px 16px 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.92);
  line-height:1.55;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.chat-bubble::after{
  content:"";
  position:absolute;
  width:0;
  height:0;
  border-top:8px solid rgba(255,255,255,.12);
  border-right:8px solid transparent;
  left:18px;
  bottom:-8px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.2));
}
.chat-bubble + .chat-bubble{
  margin-top:2px;
}
@media (min-width:760px){
  .chat-bubble:nth-of-type(even){
    margin-left:18px;
  }
}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

.socials{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top:12px;
}
.socials .btn{
  justify-content:space-between;
  min-width:0;
}
@media (min-width:760px){
  .socials{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.socials-card{
  margin-top:12px;
  padding:20px;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.socials-text{
  margin:0 0 12px;
  font-size:14px;
  line-height:1.6;
  color:rgba(233,240,247,.78);
}
.socials.tiles{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.socials .tile{
  min-height:56px;
}

/* Pricing cards */
.pricing-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:12px;
  align-items:stretch;
}
@media (min-width:760px){
  .pricing-grid{grid-template-columns:1fr 1fr}
}
.pricing-card{
  position:relative;
  display:flex;
  flex-direction:column;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  border-radius: var(--radius);
  padding:20px;
  height:100%;
  min-height:360px;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  border-color: rgba(122,44,255,.40);
}
.pricing-badge{
  position:absolute;
  top:-16px;
  right:12px;
  padding:6px 10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(255,122,0,.95), rgba(255,77,141,.60));
  color:#12002a;
  font-weight:800;
  font-size:11px;
  letter-spacing:.3px;
  text-transform:uppercase;
  box-shadow: 0 4px 12px rgba(255,122,0,.35);
  white-space:nowrap;
  z-index:2;
}
.pricing-title{
  margin:0 0 8px;
  font-size:20px;
  font-weight:800;
  letter-spacing:-.4px;
  color:var(--text);
}
.pricing-subtitle{
  margin:0 0 16px;
  color:rgba(255,255,255,.75);
  font-size:14px;
  font-weight:600;
}
.pricing-price{
  margin:0 0 8px;
  font-size:32px;
  font-weight:900;
  letter-spacing:-.8px;
  color:var(--accent);
  line-height:1;
}
.pricing-price-unit{
  font-size:16px;
  font-weight:650;
  color:rgba(255,255,255,.65);
}
.pricing-savings{
  margin:6px 0 10px;
  padding:8px 12px;
  border-radius:10px;
  background: rgba(255,122,0,.12);
  border:1px solid rgba(255,122,0,.25);
  font-size:13px;
  color:rgba(255,255,255,.9);
  line-height:1.4;
}
.pricing-savings strong{
  color:var(--accent);
  font-weight:800;
}
.pricing-features{
  margin:12px 0 0;
  padding:0 0 0 18px;
  color:rgba(255,255,255,.80);
  font-size:13px;
  line-height:1.6;
  flex-grow:1;
}
.pricing-features li{
  margin:6px 0;
}
.pricing-cta{
  margin-top:12px;
}
.btn.mini{
  min-height:40px;
  padding:10px 12px;
  font-size:14px;
}
.btn.mini .hint{
  font-size:12px;
}
.pricing-deadline{
  margin:12px 0 0;
  padding:8px 0 0;
  border-top:1px solid var(--line);
  font-size:12px;
  color:var(--accent);
  font-weight:700;
  text-align:center;
}

/* Tiny toast spacing on phones */
@media (max-width:600px){
  .badge{font-size:11px}
  .pricing-card{
    padding:16px;
    min-height:auto;
  }
  .pricing-price{
    font-size:28px;
  }
  .pricing-features{
    margin-top:10px;
  }
  .pricing-savings{
    margin:6px 0 8px;
  }
  .pricing-deadline{
    margin-top:10px;
  }
  .founder-info{
    height:140px;
  }
  .founder .who{
    font-size:20px;
    line-height:1.1;
  }
  .chat-role{
    font-size:12px;
  }
  .founder-actions{
    gap:8px;
  }
  .founder-actions .btn{
    min-height:44px;
    padding:12px 12px;
    font-size:14px;
  }
}

/* Contacts list */
.contacts-count{
  font-weight:400;
  color:var(--muted);
  font-size:14px;
}
.contacts-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-height:400px;
  overflow-y:auto;
  padding-right:4px;
}
.contacts-empty{
  padding:20px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}
.contact-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.03);
  transition: border-color .2s ease, background .2s ease;
  cursor:pointer;
}
.contact-item:hover{
  border-color: rgba(122,63,229,.45);
  background: rgba(255,255,255,.06);
}
.contact-photo{
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:12px;
  overflow:hidden;
  background: rgba(0,0,0,.2);
  display:flex;
  align-items:center;
  justify-content:center;
}
.contact-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.contact-photo .initials{
  font-weight:700;
  font-size:16px;
  color:rgba(255,255,255,.7);
  text-transform:uppercase;
}
.contact-info{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.contact-name{
  font-weight:700;
  font-size:14px;
  color:var(--text);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.contact-company{
  font-size:13px;
  color:rgba(255,255,255,.75);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.contact-meta{
  display:flex;
  gap:8px;
  font-size:11px;
  color:var(--muted);
  margin-top:2px;
}
.contact-category{
  padding:2px 6px;
  border-radius:6px;
  background: rgba(122,44,255,.2);
  color:rgba(255,255,255,.85);
}
.contact-actions{
  display:flex;
  gap:6px;
  flex-shrink:0;
}
.contact-action-btn{
  width:32px;
  height:32px;
  border-radius:8px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-size:14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: border-color .2s, background .2s;
}
.contact-action-btn:hover{
  border-color: rgba(122,63,229,.5);
  background: rgba(122,44,255,.15);
}
.contact-action-btn.danger:hover{
  border-color: rgba(255,90,122,.5);
  background: rgba(255,90,122,.15);
}

/* Edit contact photo preview */
.contact-photo-preview{
  margin:12px 0;
}
.contact-photo-preview img{
  max-width:200px;
  max-height:150px;
  border-radius:12px;
  border:1px solid var(--line);
  margin-top:6px;
}

/* Scrollbar for contacts list */
.contacts-list::-webkit-scrollbar{
  width:6px;
}
.contacts-list::-webkit-scrollbar-track{
  background: rgba(0,0,0,.1);
  border-radius:3px;
}
.contacts-list::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.15);
  border-radius:3px;
}
.contacts-list::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,.25);
}

