:root{
  --bg:#070b12;
  --bg2:#060914;

  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.085);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);

  --text:#e9eefb;
  --muted:rgba(233,238,251,.72);

  --neon:#4fd1ff;
  --neon2:#6b7cff;

  --shadow:0 22px 55px rgba(0,0,0,.45);
  --shadow2:0 14px 34px rgba(0,0,0,.38);
  --ring:0 0 0 6px rgba(79,209,255,.10);

  --r14:14px;
  --r18:18px;
  --r22:22px;

  --max:1180px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: radial-gradient(1200px 900px at 20% -10%, rgba(107,124,255,.18), transparent 55%),
              radial-gradient(1100px 900px at 100% 0%, rgba(79,209,255,.15), transparent 60%),
              radial-gradient(900px 700px at 70% 110%, rgba(79,209,255,.08), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2) 65%, #04060e);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button, input, select, textarea{ font:inherit; color:inherit; }
::selection{ background:rgba(79,209,255,.20); }

.container{
  width:min(var(--max), calc(100% - 44px));
  margin:0 auto;
}

/* Background accents */
.bg-lines{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.12;
  background:
    linear-gradient(transparent 0, transparent 94%, rgba(255,255,255,.06) 94%, rgba(255,255,255,.06) 96%, transparent 96%),
    linear-gradient(90deg, transparent 0, transparent 94%, rgba(255,255,255,.06) 94%, rgba(255,255,255,.06) 96%, transparent 96%);
  background-size: 120px 120px, 120px 120px;
  filter: blur(.25px);
  transform: translateZ(0);
}

.bg-glow{
  position:fixed;
  inset:-30vh -30vw;
  pointer-events:none;
  background:
    radial-gradient(closest-side, rgba(79,209,255,.12), transparent 70%),
    radial-gradient(closest-side, rgba(107,124,255,.10), transparent 70%);
  background-position: 12% 20%, 72% 28%;
  background-size: 45vw 45vw, 52vw 52vw;
  filter: blur(20px);
  opacity:.9;
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8,11,20,.78), rgba(8,11,20,.55));
  border-bottom:1px solid rgba(255,255,255,.06);
}

.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  gap:14px;
}

.topbar-left{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(233,238,251,.86);
}

.topbar-right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.topbar-link{
  font-size:12px;
  color: rgba(233,238,251,.82);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid transparent;
  transition: .22s ease;
}

.topbar-link:hover{
  border-color: rgba(79,209,255,.25);
  background: rgba(79,209,255,.08);
}

/* Header */
.header{ position:relative; z-index:40; }

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0 10px;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}

.brand-logo{
  width:42px;
  height:42px;
  border-radius:14px;
  object-fit:contain;
  padding:6px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

.brand-name{ font-weight:900; letter-spacing:.2px; font-size:15px; }
.brand-sub{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}

.nav a{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  color: rgba(233,238,251,.82);
  transition: .2s ease;
}

.nav a:hover{
  background: rgba(79,209,255,.09);
  color: rgba(233,238,251,.95);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  border:1px solid transparent;
  border-radius:14px;
  padding:10px 14px;
  font-weight:800;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  user-select:none;
  transform: translateZ(0);
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn-primary{
  background: linear-gradient(135deg, rgba(79,209,255,.92), rgba(107,124,255,.88));
  border-color: rgba(79,209,255,.35);
  box-shadow: 0 14px 34px rgba(79,209,255,.18);
  color:#031019;
}
.btn-primary:hover{ box-shadow: 0 18px 44px rgba(79,209,255,.24); }

.btn-outline{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 10px 25px rgba(0,0,0,.20);
}
.btn-outline:hover{
  border-color: rgba(79,209,255,.30);
  background: rgba(79,209,255,.07);
}

.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,.10);
  color: rgba(233,238,251,.82);
}
.btn-ghost:hover{
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  padding:10px;
  gap:6px;
  flex-direction:column;
  justify-content:center;
  transition:.2s ease;
}
.menu-btn:hover{
  border-color: rgba(79,209,255,.30);
  background: rgba(79,209,255,.07);
}
.menu-btn span{
  height:2px;
  width:100%;
  background: rgba(233,238,251,.86);
  border-radius:999px;
}

/* Mobile nav */
.mobile-nav{
  display:none;
  position:absolute;
  left:0; right:0;
  top:100%;
  padding:0;
}
.mobile-inner{
  margin-top:10px;
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,13,24,.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding:12px;
  display:grid;
  gap:10px;
}
.m-link{
  padding:12px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(233,238,251,.86);
}
.m-link:hover{
  border-color: rgba(79,209,255,.26);
  background: rgba(79,209,255,.08);
}
.m-actions{ display:flex; gap:10px; margin-top:6px; }

/* Hero */
.hero{
  position:relative;
  padding: 26px 0 36px;
}
.hero-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 450px at 10% 10%, rgba(79,209,255,.18), transparent 60%),
    radial-gradient(820px 480px at 90% 20%, rgba(107,124,255,.16), transparent 60%);
  filter: blur(10px);
  opacity:.9;
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}

.hero-left{ padding: 14px 0; }

.hero-kickers{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}
.kicker{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(79,209,255,.22);
  background: rgba(79,209,255,.06);
  color: rgba(233,238,251,.86);
}

.hero-title{
  margin:0;
  font-size: clamp(30px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.6px;
  font-weight:950;
}

.hero-sub{
  margin:14px 0 18px;
  color: rgba(233,238,251,.78);
  font-size:15px;
  line-height:1.55;
  max-width: 56ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin: 18px 0 18px;
}

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
}
.trust{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 12px;
  border-radius: var(--r18);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
}
.trust-ico{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(79,209,255,.12);
  border:1px solid rgba(79,209,255,.20);
  color:#aeeeff;
  font-weight:950;
}
.trust-title{ font-weight:900; font-size:13px; }
.trust-desc{ color: rgba(233,238,251,.70); font-size:12px; margin-top:4px; line-height:1.4; }

.hero-stats{
  margin-top:16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.stat{
  flex: 1 1 150px;
  padding:12px 12px;
  border-radius: var(--r18);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.stat-num{
  font-weight:950;
  font-size:22px;
  letter-spacing:-.4px;
  background: linear-gradient(90deg, rgba(79,209,255,.95), rgba(107,124,255,.90));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.stat-lab{ color: rgba(233,238,251,.70); font-size:12px; margin-top:4px; }

/* Glass card + forms */
.glass-card{
  border-radius: var(--r22);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,13,24,.62);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass-head{
  padding:16px 16px 12px;
  border-bottom:1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(420px 220px at 30% 0%, rgba(79,209,255,.15), transparent 65%),
    radial-gradient(420px 220px at 90% 20%, rgba(107,124,255,.12), transparent 65%);
}
.glass-title{ font-weight:950; font-size:16px; letter-spacing:-.2px; }
.glass-sub{ margin-top:6px; color: rgba(233,238,251,.70); font-size:12px; }

.form{
  padding:14px 16px 16px;
  display:grid;
  gap:12px;
}
.field{ display:grid; gap:7px; }
.field span{ font-size:12px; color: rgba(233,238,251,.72); }

input, select, textarea{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:11px 12px;
  outline:none;
  transition:.18s ease;
}
textarea{ resize: vertical; min-height: 90px; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(79,209,255,.32);
  box-shadow: var(--ring);
  background: rgba(79,209,255,.06);
}

.two{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}

.form-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:4px;
}

/* Side cards */
.side-cards{ margin-top:12px; display:grid; gap:10px; }
.side-card{
  padding:12px 12px;
  border-radius: var(--r18);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.side-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.side-title{ font-weight:900; font-size:13px; }
.side-pill{
  font-size:11px;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(233,238,251,.82);
}
.side-text{
  margin-top:6px;
  color: rgba(233,238,251,.70);
  font-size:12px;
  line-height:1.4;
}

/* Sections */
.section{
  padding: 42px 0;
  position:relative;
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 65%);
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.section-head{ margin-bottom:18px; }
.section-head h2{
  margin:0;
  font-size: 22px;
  letter-spacing:-.2px;
  font-weight: 950;
}
.section-head p{
  margin:10px 0 0;
  color: rgba(233,238,251,.72);
  max-width: 70ch;
  line-height: 1.55;
  font-size: 14px;
}

/* Cards */
.grid.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}

.card{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding: 16px 16px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  transform: translateZ(0);
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(79,209,255,.24);
  background: rgba(79,209,255,.05);
}
.card:before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(520px 320px at 0% 0%, rgba(79,209,255,.10), transparent 60%),
    radial-gradient(520px 320px at 90% 20%, rgba(107,124,255,.08), transparent 60%);
  opacity:.65;
  pointer-events:none;
}
.card > *{ position:relative; }

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.card-badge{
  font-size:11px;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(79,209,255,.20);
  background: rgba(79,209,255,.06);
  color: rgba(233,238,251,.85);
}

.card h3{
  margin:0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing:-.2px;
}
.card p{
  margin:10px 0 10px;
  color: rgba(233,238,251,.72);
  line-height:1.55;
  font-size: 13px;
}
.card ul{
  margin:0;
  padding:0 0 0 16px;
  color: rgba(233,238,251,.72);
  line-height:1.6;
  font-size: 12px;
}
.card ul li{ margin: 4px 0; }

.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Process steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.step{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 14px 14px;
  position:relative;
  overflow:hidden;
}
.step:before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(420px 240px at 0% 0%, rgba(79,209,255,.10), transparent 60%);
  opacity:.8;
}
.step > *{ position:relative; }
.step-n{
  width:34px; height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:950;
  background: rgba(79,209,255,.14);
  border:1px solid rgba(79,209,255,.20);
  color: rgba(210,245,255,.95);
}
.step-t{ margin-top:10px; font-weight:950; font-size:13px; }
.step-d{ margin-top:6px; color: rgba(233,238,251,.70); font-size:12px; line-height:1.45; }

/* Generic panel */
.panel{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px 16px;
  box-shadow: var(--shadow2);
}
.panel h3{ margin:0 0 10px; font-weight:950; letter-spacing:-.2px; font-size:15px; }

/* Work filters + tags */
.filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 8px 0 14px;
}
.filter{
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(233,238,251,.78);
  padding: 9px 12px;
  cursor:pointer;
  font-weight:900;
  font-size:12px;
  transition:.18s ease;
}
.filter:hover{
  border-color: rgba(79,209,255,.26);
  background: rgba(79,209,255,.07);
}
.filter.active{
  background: rgba(79,209,255,.12);
  border-color: rgba(79,209,255,.35);
  color: rgba(233,238,251,.92);
  box-shadow: 0 16px 40px rgba(79,209,255,.14);
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 10px 0 12px;
}
.tag{
  font-size:11px;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(233,238,251,.78);
}

/* FAQ */
.faq{
  display:grid;
  gap:10px;
  max-width: 920px;
}
.faq-item{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 12px 14px;
  box-shadow: var(--shadow2);
}
.faq-item summary{
  cursor:pointer;
  font-weight:950;
  font-size:13px;
  color: rgba(233,238,251,.88);
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary:after{
  content:"+";
  float:right;
  color: rgba(233,238,251,.70);
  font-weight:950;
  margin-left:10px;
}
.faq-item[open] summary:after{ content:"–"; }
.faq-item p{
  margin:10px 0 0;
  color: rgba(233,238,251,.72);
  font-size:12.5px;
  line-height:1.55;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.info{
  display:grid;
  gap:10px;
}
.info-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 10px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.info-row span{ color: rgba(233,238,251,.70); font-size:12px; }
.info-row strong{ font-size:12px; color: rgba(233,238,251,.92); }

.divider{
  height:1px;
  background: rgba(255,255,255,.08);
  margin:14px 0;
}

.subhead{
  margin:0 0 10px;
  font-size:13px;
  font-weight:950;
  letter-spacing:-.2px;
}

.quick-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.map{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
}
.map iframe{
  width:100%;
  height:240px;
  border:0;
  filter: saturate(1.1) contrast(1.05);
}

/* Footer */
.footer{
  padding: 34px 0 20px;
  border-top:1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.10));
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap:14px;
}
.foot-brand img{
  width:46px;
  height:46px;
  padding:6px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.muted{ color: rgba(233,238,251,.70); }
.fine{ font-size:12px; color: rgba(233,238,251,.70); margin:8px 0 0; }

.foot-col h4{
  margin:0 0 10px;
  font-weight:950;
  letter-spacing:-.2px;
  font-size:13px;
}
.foot-col a{
  display:block;
  padding:7px 0;
  color: rgba(233,238,251,.72);
  font-size:12px;
}
.foot-col a:hover{ color: rgba(233,238,251,.92); }

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding-top:14px;
  margin-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
  font-size:12px;
}

/* Floating actions */
.floating-actions{
  position:fixed;
  right:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:80;
}
.fab{
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,13,24,.62);
  backdrop-filter: blur(14px);
  padding: 10px 14px;
  cursor:pointer;
  font-weight:950;
  font-size:12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: .18s ease;
}
.fab:hover{
  border-color: rgba(79,209,255,.30);
  background: rgba(79,209,255,.08);
}
.fab:active{ transform: translateY(1px); }

/* Toast */
.toast{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:90;
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
  transition: .22s ease;
}
.toast.show{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.toast-inner{
  display:flex;
  align-items:center;
  gap:10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,13,24,.72);
  backdrop-filter: blur(14px);
  padding: 10px 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.38);
}
.toast-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(79,209,255,.95), rgba(107,124,255,.90));
  box-shadow: 0 0 0 6px rgba(79,209,255,.10);
}
.toast-text{ font-size:12px; color: rgba(233,238,251,.84); }
.toast-close{
  width:28px;
  height:28px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  font-weight:950;
}
.toast-close:hover{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1060px){
  .hero-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menu-btn{ display:flex; }
  .mobile-nav{ display:block; }
  .grid.cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px){
  .container{ width: calc(100% - 26px); }
  .topbar-right{ display:none; }
  .trust-row{ grid-template-columns: 1fr; }
  .grid.cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .two{ grid-template-columns: 1fr; }
  .floating-actions{ right:12px; bottom:12px; }
  .toast{ left:12px; bottom:12px; }
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand__logo{
  width:36px;
  height:36px;
  object-fit:contain;
  display:block;
}

.brand__name{
  font-weight:700;
}