:root{
  --text:#071023;
  --muted: rgba(7,16,35,.72);
  --line: rgba(0,0,0,.10);

  --blue:#0052FF;
  --blue2:#0A46C7;

  --card: rgba(255,255,255,.78);
  --shadow: 0 18px 60px rgba(7,16,35,.14);
  --shadowSoft: 0 10px 30px rgba(7,16,35,.10);

  --r2: 26px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  min-height:100vh;
  overflow-x:hidden;
}

.container{ width:min(var(--max), calc(100% - 32px)); margin:0 auto; }

.bgTech{
  background:
    radial-gradient(900px 700px at 15% 10%, rgba(0,82,255,.20), transparent 60%),
    radial-gradient(900px 700px at 85% 0%, rgba(0,82,255,.22), transparent 55%),
    radial-gradient(900px 700px at 50% 110%, rgba(0,82,255,.14), transparent 60%),
    linear-gradient(180deg, #F8FBFF 0%, #EDF4FF 45%, #F8FBFF 100%);
}
.bgTech::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, rgba(0,0,0,.9), transparent 70%);
}
.bgTech::after{
  content:"";
  position: fixed;
  inset: -200px;
  pointer-events:none;
  background:
    radial-gradient(260px 260px at 20% 30%, rgba(0,82,255,.18), transparent 60%),
    radial-gradient(340px 340px at 85% 35%, rgba(0,82,255,.14), transparent 65%),
    radial-gradient(420px 420px at 55% 85%, rgba(0,82,255,.12), transparent 65%);
  filter: blur(18px);
  animation: floatGlow 10s ease-in-out infinite alternate;
  opacity: .9;
}
@keyframes floatGlow{
  from{ transform: translateY(0px); }
  to{ transform: translateY(18px); }
}

.topbar{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(248,251,255,.78);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--text);
  font-weight: 900;
}
.brand__mark{
  width: 38px; height: 38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,82,255,.20), rgba(0,82,255,.06));
  border: 1px solid rgba(0,82,255,.24);
  box-shadow: 0 18px 50px rgba(0,82,255,.14);
}
.brand__name{ font-size: 16px; letter-spacing:-0.02em; }

.nav--desktop{ display:flex; align-items:center; gap:18px; }
.nav--desktop a{
  text-decoration:none;
  font-weight: 800;
  font-size: 14px;
  color: rgba(7,16,35,.82);
}
.nav--desktop a:hover{ color: var(--blue); }

.hamburger{
  display:none;
  width: 44px; height:44px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadowSoft);
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:18px; height:2px;
  margin:4px auto;
  background: rgba(7,16,35,.75);
  border-radius:2px;
}
.mobileMenu{
  border-top: 1px solid rgba(0,0,0,.06);
  background: rgba(248,251,255,.92);
}
.mobileMenu__inner{
  padding: 14px 0 18px;
  display:flex; flex-direction:column; gap:10px;
}
.mobileLink{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.82);
  text-decoration:none;
  color: rgba(7,16,35,.86);
  font-weight: 850;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height: 50px;
  padding: 0 18px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 15px;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
  text-decoration:none;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--xl{ height: 56px; padding: 0 22px; font-size: 16px; border-radius: 20px; }

.btn--primary{
  background: linear-gradient(180deg, var(--blue) 0%, #0343D6 100%);
  color: #fff !important;
  box-shadow: 0 18px 45px rgba(0,82,255,.28);
}
.btn--primary:hover{ box-shadow: 0 24px 70px rgba(0,82,255,.26); }

.btn--ghost{
  background: rgba(255,255,255,.86);
  border-color: rgba(0,0,0,.10);
  color: rgba(7,16,35,.88);
}
.btn--ghost:hover{
  border-color: rgba(0,82,255,.28);
  box-shadow: 0 18px 55px rgba(0,82,255,.14);
}

.btn--full{ width:100%; }

.lander{ padding: 54px 0 26px; position: relative; }
.landerCard{
  position: relative;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 28px 90px rgba(0,82,255,.18);
  overflow:hidden;
  text-align:center;
}
.landerCard::before{
  content:"";
  position:absolute;
  inset: -2px;
  background: radial-gradient(700px 380px at 50% 0%, rgba(0,82,255,.20), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.landerBadge{
  position: relative;
  z-index: 1;
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(0,82,255,.20);
}
.landerBadge .dot{
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(0,82,255,.12);
}
.titleXL{
  position: relative;
  z-index: 1;
  margin: 16px 0 10px;
  font-size: clamp(46px, 5vw, 66px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}
.grad{
  background: linear-gradient(90deg, var(--blue), #4B84FF);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.leadXL{
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 780px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
}
.landerActions{
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}
.landerStrip{
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap:wrap;
}
.stripItem{
  font-size: 13px;
  font-weight: 900;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  color: rgba(7,16,35,.76);
}

.sectionWrap{ padding: 72px 0; position: relative; }
.sectionWrap--alt{
  background: linear-gradient(180deg, rgba(0,82,255,.06), rgba(0,82,255,0));
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.sectionHead{
  text-align:center;
  max-width: 820px;
  margin: 0 auto 22px;
}
.h1{ font-size: clamp(38px, 4vw, 52px); letter-spacing:-0.05em; margin: 0 0 10px; }
.h2{ font-size: clamp(30px, 3vw, 38px); letter-spacing:-0.04em; margin: 0 0 10px; }
.h3{ font-size: 20px; letter-spacing:-0.02em; margin: 0; }
.subhead{ font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0; }
.muted{ color: var(--muted); }
.note{ text-align:center; color: var(--muted); font-size: 13px; margin-top: 14px; }
.leftNote{ text-align:left; }

.howGrid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.howCard{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  box-shadow: var(--shadowSoft);
  padding: 18px;
  text-align:left;
}
.howNum{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(0,82,255,.10);
  border: 1px solid rgba(0,82,255,.22);
  color: var(--blue);
  font-weight: 950;
}
.howTitle{ margin-top: 12px; font-weight: 950; font-size: 16px; letter-spacing:-0.02em; }
.howText{ margin-top: 6px; font-size: 14px; color: var(--muted); line-height: 1.55; }

.templateGrid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.templateGrid--mini{ grid-template-columns: repeat(2, 1fr); }

.templateCard{
  position: relative;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadowSoft);
  cursor:pointer;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  overflow:hidden;
}
.templateCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(240px 160px at 12% 0%, rgba(0,82,255,.18), transparent 60%);
  opacity: .55;
  pointer-events:none;
}
.templateCard:hover{
  transform: translateY(-3px);
  border-color: rgba(0,82,255,.26);
  box-shadow: 0 22px 70px rgba(7,16,35,.14);
}
.templateCard--selected{
  border-color: rgba(0,82,255,.62);
  box-shadow: 0 26px 85px rgba(0,82,255,.16);
}
.templateRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.templateName{
  font-weight: 950;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.templateIcon{
  width: 44px; height: 44px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(0,82,255,.18), rgba(0,82,255,.06));
  border: 1px solid rgba(0,82,255,.22);
  font-size: 20px;
}

.templateDesc{
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.templateHint{
  margin-top: 10px;
  color: rgba(7,16,35,.70);
  font-size: 13px;
}

.card{
  background: var(--card);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
}
.cardPad{ padding: 18px; }
.divider{ height: 1px; background: rgba(0,0,0,.10); margin: 18px 0; }

.createLayout{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:start;
}
.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{ display:flex; flex-direction:column; gap: 8px; }
.field--full{ grid-column: 1 / -1; }

label{ font-weight: 900; font-size: 14px; color: rgba(7,16,35,.84); }
input, select, textarea{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.90);
  padding: 13px 14px;
  font-size: 16px;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(0,82,255,.45);
  box-shadow: 0 0 0 4px rgba(0,82,255,.12);
}
.actions{ display:flex; gap: 12px; flex-wrap:wrap; }

.statusRow{ display:flex; align-items:center; justify-content:space-between; gap: 14px; }
.statusTitle{ font-weight: 950; font-size: 16px; }
.statusText{ margin-top: 6px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.statusPill{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(0,0,0,.10);
}
.loaderBox{
  margin-top: 14px;
  display:flex; align-items:center; gap: 12px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(0,82,255,.22);
  background: rgba(0,82,255,.08);
}
.loader{
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 3px solid rgba(0,82,255,.18);
  border-top-color: var(--blue);
  animation: spin 1s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.loaderText{ color: var(--muted); font-size: 14px; }

.ctaRow{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
}

.footer{
  padding: 26px 0 44px;
  border-top: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.28);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
}
.footerLeft{ display:flex; flex-direction:column; gap: 6px; }
.footerRight{ display:flex; gap: 10px; align-items:center; }

.toastHost{
  position: fixed;
  right: 14px;
  top: 76px;
  z-index: 200;
  display:flex;
  flex-direction:column;
  gap: 10px;
  max-width: min(420px, calc(100% - 28px));
  pointer-events: none;
}
.toast{
  pointer-events: auto;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(7,16,35,.16);
  backdrop-filter: blur(10px);
  transform: translateY(-6px);
  opacity: 0;
  animation: toastIn .22s ease forwards;
}
@keyframes toastIn{ to { transform: translateY(0); opacity: 1; } }
.toast__icon{
  width: 36px; height: 36px;
  border-radius: 16px;
  display:grid; place-items:center;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,82,255,.08);
  color: var(--blue);
  font-weight: 950;
}
.toast--error .toast__icon{ background: rgba(255,0,0,.07); color: #B00020; }
.toast__title{ font-weight: 950; letter-spacing:-0.02em; }
.toast__msg{ margin-top: 2px; font-size: 13px; color: rgba(7,16,35,.78); line-height: 1.35; }
.toast__close{
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: rgba(7,16,35,.55);
  padding: 6px 8px;
  border-radius: 12px;
}
.toast__close:hover{ background: rgba(0,0,0,.05); color: rgba(7,16,35,.75); }

@media (max-width: 980px){
  .howGrid{ grid-template-columns: 1fr; }
  .templateGrid{ grid-template-columns: repeat(2, 1fr); }
  .createLayout{ grid-template-columns: 1fr; }
  .templateGrid--mini{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .nav--desktop{ display:none; }
  .hamburger{ display:block; }
  .sectionWrap{ padding: 58px 0; }
  .templateGrid{ grid-template-columns: 1fr; }
  .templateGrid--mini{ grid-template-columns: 1fr; }
  .formGrid{ grid-template-columns: 1fr; }
  .toastHost{ left: 14px; right: 14px; top: 70px; max-width: none; }
  .landerCard{ padding: 22px; border-radius: 28px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  height: 28px;
  width: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.brand__name {
  font-weight: 700; 
  font-size: 18px;
  letter-spacing: -0.3px;
}

.brand--footer .brand__logo {
  height: 24px;
  border-radius: 6px;
}

.brand--footer .brand__name {
  font-weight: 700; 
  opacity: 0.9;
}