@font-face{
  font-family:"Geist";
  src:url("/static/fonts/Geist-Regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Geist";
  src:url("/static/fonts/Geist-SemiBold.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Gooper";
  src:url("/static/fonts/GooperSemiCondensed7-SemiBold.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

:root{
  --bg:#070707;
  --bg2:#0b0b0b;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --border:rgba(255,255,255,.12);
  --border2:rgba(255,255,255,.08);
  --text:#f4f4f4;
  --muted:rgba(255,255,255,.62);
  --muted2:rgba(255,255,255,.42);
  --accent:#ffffff;
  --shadow:rgba(0,0,0,.55);
  --radius:18px;
  --radius-lg:26px;


  --font: Geist, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: Gooper, Geist, system-ui, sans-serif;
}


*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font-family:inherit}


.container{max-width:1160px;margin:0 auto;padding:0 22px}


.bg{position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden}


.bg-photo{
  position:absolute; inset:0;
  background-image:url("/static/background.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transform:scale(1.03);
  filter:grayscale(1) contrast(1.05) brightness(0.55);
  opacity:0.75;
}


.bg-canvas{position:absolute;inset:0;opacity:.22}


.bg-noise{
  position:absolute;inset:-40px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity:.08;
  mix-blend-mode:overlay;
  transform:rotate(2deg);
}


.bg-vignette{
  position:absolute;inset:0;
  background:radial-gradient(ellipse at 40% 30%,
    rgba(255,255,255,.05),
    rgba(0,0,0,.70) 58%,
    rgba(0,0,0,.86)
  );
  opacity:.85;
}

.smoke{
  position:absolute;
  width:520px;height:520px;border-radius:999px;
  filter:blur(60px);
  opacity:.10;
  background:radial-gradient(circle, rgba(255,255,255,.18), transparent 62%);
  animation:smoke 10s ease-in-out infinite;
}
.smoke.s1{left:-160px;top:-120px;animation-duration:12s}
.smoke.s2{right:-220px;top:18%;opacity:.08;animation-duration:15s}
.smoke.s3{left:28%;bottom:-260px;opacity:.07;animation-duration:14s}
@keyframes smoke{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-18px) scale(1.06)}
}

.dust{position:absolute;inset:0}
.dust span{
  position:absolute;width:2px;height:2px;border-radius:50%;
  background:rgba(255,255,255,.9);
  opacity:0;
  animation:dust 18s linear infinite;
}
.dust span:nth-child(1){left:12%;animation-delay:0s}
.dust span:nth-child(2){left:25%;animation-delay:2s}
.dust span:nth-child(3){left:41%;animation-delay:4s}
.dust span:nth-child(4){left:54%;animation-delay:1s}
.dust span:nth-child(5){left:67%;animation-delay:3s}
.dust span:nth-child(6){left:79%;animation-delay:5s}
.dust span:nth-child(7){left:15%;animation-delay:6s}
.dust span:nth-child(8){left:60%;animation-delay:7s}
.dust span:nth-child(9){left:88%;animation-delay:8s}
.dust span:nth-child(10){left:33%;animation-delay:9s}
@keyframes dust{
  0%{transform:translateY(105vh) scale(.2);opacity:0}
  10%{opacity:.35}
  55%{opacity:.12;transform:translateY(55vh) scale(1)}
  100%{transform:translateY(-10vh) scale(.6);opacity:0}
}


.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;
  background:rgba(7,7,7,.62);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 22px}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:40px;height:40px;border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  display:grid;place-items:center;
  font-family:var(--display);
  font-weight:600;
  letter-spacing:-.04em;
  text-transform:lowercase;
  background:linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  box-shadow:0 12px 30px rgba(0,0,0,.45);
}
.brand-mark.sm{width:34px;height:34px;border-radius:12px}
.brand-name{
  font-family:var(--display);
  font-weight:600;
  letter-spacing:-.03em;
  font-size:18px;
}
.brand-sub{font-size:12px;color:var(--muted2);margin-top:-1px}
.nav-links{display:flex;align-items:center;gap:8px}
.nav-link{
  color:var(--muted);
  font-size:14px;
  padding:10px 12px;border-radius:14px;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.nav-link:hover{color:var(--text);background:rgba(255,255,255,.06)}
.nav-toggle{
  display:none;flex-direction:column;gap:5px;
  border:none;background:none;cursor:pointer;padding:8px;
}
.nav-toggle span{width:22px;height:2px;background:rgba(255,255,255,.85);border-radius:99px}

.mobile{
  display:none;flex-direction:column;gap:6px;
  padding:14px 22px 18px;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(7,7,7,.88);
  backdrop-filter:blur(18px);
}
.mobile.open{display:flex}
.mobile-link{
  color:var(--muted);
  padding:12px 12px;border-radius:14px;
}
.mobile-link:hover{color:var(--text);background:rgba(255,255,255,.06)}

@media (max-width: 820px){
  .nav-links{display:none}
  .nav-toggle{display:flex}
}

.btn{
  display:inline-flex;align-items:center;gap:10px;
  border:1px solid var(--border2);
  padding:12px 18px;border-radius:16px;
  font-weight:600;font-size:14px;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.btn:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.18)}
.btn-primary{
  background:linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.72));
  color:#0b0b0b;border-color:transparent;
  box-shadow:0 18px 40px rgba(0,0,0,.45);
}
.btn-primary:hover{box-shadow:0 22px 54px rgba(0,0,0,.55)}
.btn-ghost{background:rgba(255,255,255,.02)}
.btn-lg{padding:15px 22px;font-size:15px;border-radius:18px}
.btn-sm{padding:9px 12px;font-size:13px;border-radius:14px}
.arrow{font-size:18px;transition:transform .2s ease}
.btn-primary:hover .arrow{transform:translateX(3px)}

.muted{color:var(--muted)}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}
.small{font-size:12px}
.dim{color:rgba(255,255,255,.46)}

main{position:relative;z-index:1}
.hero{
  padding:126px 0 68px;
  min-height:calc(100vh - 40px);
  display:flex;align-items:center;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:center;
}
.hero-title{
  font-family:var(--display);
  font-size:clamp(40px, 5.4vw, 70px);
  line-height:1.05;
  letter-spacing:-.04em;
  margin:18px 0 18px;
}
.hero-accent{
  text-decoration:underline;
  text-decoration-thickness:3px;
  text-underline-offset:8px;
}
.hero-sub{
  color:var(--muted);
  font-size:16.5px;
  line-height:1.7;
  max-width:560px;
}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}
.hero-kpis{
  display:flex;gap:18px;flex-wrap:wrap;margin-top:26px
}
.kpi{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:12px 14px;
  min-width:130px;
}
.kpi-num{font-family:var(--display);font-weight:600;font-size:22px}
.kpi-label{color:var(--muted2);font-size:12px;margin-top:2px}

@media (max-width: 960px){
  .hero{padding:118px 0 52px;min-height:auto}
  .hero-grid{grid-template-columns:1fr;gap:26px}
}

.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
}
.pill-center{margin:0 auto}
.pill-dot{
  width:8px;height:8px;border-radius:99px;
  background:#fff;
  box-shadow:0 0 10px rgba(255,255,255,.6);
  opacity:.9;
  animation:blink 1.8s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:.95}50%{opacity:.35}}

.divider{
  height:2px;max-width:820px;margin:0 auto;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  opacity:.18;
  box-shadow:0 0 12px rgba(255,255,255,.08);
}

.card{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius-lg);
  box-shadow:0 20px 60px rgba(0,0,0,.50);
}
.card:hover{border-color:rgba(255,255,255,.16)}
.card-hero{overflow:hidden;position:relative}
.card-top{
  display:flex;align-items:center;gap:10px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.dots{display:flex;gap:6px}
.d{width:10px;height:10px;border-radius:99px;background:rgba(255,255,255,.18)}
.d1{background:rgba(255,255,255,.25)}
.d2{background:rgba(255,255,255,.18)}
.d3{background:rgba(255,255,255,.12)}
.card-title{color:var(--muted);font-size:12px;flex:1}
.pulse{
  width:10px;height:10px;border-radius:99px;background:#fff;
  box-shadow:0 0 0 0 rgba(255,255,255,.35);
  animation:pulse 1.6s ease-out infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,255,255,.35)}
  100%{box-shadow:0 0 0 22px rgba(255,255,255,0)}
}
.card-body{position:relative;height:340px}
.card-footer{padding:12px 16px;border-top:1px solid rgba(255,255,255,.08);font-size:12px}

.section{padding:90px 0}
.section.alt{background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00))}
.section-head{text-align:center;margin-bottom:46px}
.section-title{
  font-family:var(--display);
  font-weight:600;
  font-size:clamp(30px, 4vw, 46px);
  letter-spacing:-.04em;
  margin:14px 0 10px;
}
.section-sub{color:var(--muted);max-width:520px;margin:0 auto;line-height:1.6}
.accent{text-decoration:underline;text-underline-offset:8px;text-decoration-thickness:3px}


.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.step{padding:26px 18px;position:relative}
.step-num{
  position:absolute;top:-12px;left:18px;
  width:28px;height:28px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.9);color:#090909;
  font-weight:700;font-size:13px;
  border:1px solid rgba(0,0,0,.35);
}
.step-title{font-weight:600;margin-top:10px}
.step-text{color:var(--muted);font-size:14px;line-height:1.6;margin-top:8px}

.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.feature{padding:26px 22px}
.feature-title{font-weight:600}
.feature-text{color:var(--muted);font-size:14px;line-height:1.7;margin-top:8px}

@media (max-width: 1000px){ .steps{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 640px){
  .steps{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
}

.cta-strip{
  margin-top:18px;
  padding:18px 18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  border-radius:24px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.cta-title{font-weight:600;font-size:16px}
.cta-sub{color:var(--muted);font-size:13px;margin-top:2px}
@media (max-width: 720px){
  .cta-strip{flex-direction:column;align-items:stretch}
}


.footer{padding:34px 0;border-top:1px solid rgba(255,255,255,.06)}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer-left{display:flex;align-items:center;gap:12px}
.footer-name{font-weight:600;font-family:var(--display)}
.footer-sub{color:var(--muted2);font-size:12px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-links a{color:var(--muted);font-size:14px;padding:8px 10px;border-radius:14px}
.footer-links a:hover{color:var(--text);background:rgba(255,255,255,.06)}


.reveal{opacity:0;transform:translateY(22px);transition:opacity .65s ease, transform .65s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.delay-1{transition-delay:.15s}
.delay-2{transition-delay:.3s}
.delay-3{transition-delay:.45s}

.chat-demo{padding:14px;display:flex;flex-direction:column;gap:12px}
.demo-head{display:flex;align-items:center;justify-content:space-between;gap:10px;min-width:0}
.demo-pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  font-size:12px;color:rgba(255,255,255,.82);
}
.dot-live{
  width:7px;height:7px;border-radius:99px;
  background:#fff;box-shadow:0 0 10px rgba(255,255,255,.55);
  opacity:.9;animation:blink 1.5s ease-in-out infinite;
}
.demo-meta{color:rgba(255,255,255,.40);font-size:12px;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

.demo-chat{
  flex:1;border-radius:18px;
  background:rgba(0,0,0,.34);
  border:1px solid rgba(255,255,255,.10);
  padding:12px;overflow:hidden;
  display:flex;flex-direction:column;gap:10px;
  position:relative;
}
.demo-chat::after{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 30% 20%, rgba(255,255,255,.05), transparent 45%),
             radial-gradient(circle at 70% 80%, rgba(255,255,255,.04), transparent 50%);
  pointer-events:none;
}

.demo-bubble{
  max-width:86%;
  padding:11px 12px;border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.92);
  font-size:13.2px;line-height:1.55;
  white-space:pre-wrap;position:relative;
}
.demo-bubble.user{align-self:flex-end;background:rgba(255,255,255,.06);border-top-right-radius:10px}
.demo-bubble.gork{align-self:flex-start;border-top-left-radius:10px}
.demo-bubble .label{display:block;font-size:11px;color:rgba(255,255,255,.45);margin-bottom:6px}

.demo-bubble.thinking{
  color:rgba(255,255,255,.82);
  display:inline-flex;align-items:center;gap:8px;
}
.think-dots{display:inline-flex;gap:4px;transform:translateY(1px)}
.think-dots i{
  width:5px;height:5px;border-radius:99px;
  background:rgba(255,255,255,.85);
  opacity:.25;animation:think 1.05s infinite;
}
.think-dots i:nth-child(2){animation-delay:.15s}
.think-dots i:nth-child(3){animation-delay:.3s}
@keyframes think{
  0%,100%{opacity:.22;transform:translateY(0)}
  50%{opacity:.78;transform:translateY(-2px)}
}

.demo-input{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.28);
  padding:10px 12px;
  width:100%;
  max-width:100%;
  overflow:hidden;
}
.demo-field{
  display:flex;
  align-items:flex-start;
  gap:8px;
  width:100%;
  max-width:100%;
  min-width:0;
  overflow:hidden;
}
.demo-field .mono.small.dim{flex:0 0 auto;margin-top:2px}
.demo-cursor{
  flex:0 0 auto;
  opacity:.85;
  animation:cursor 1s steps(2,end) infinite;
  margin-top:2px;
}
#demoTyping{
  flex:1 1 auto;
  min-width:0;
  display:block;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
  line-height:1.45;
}
@keyframes cursor{0%,100%{opacity:.25}50%{opacity:1}}

.brand-logo{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 12px 30px rgba(0,0,0,.45);
  background:rgba(255,255,255,.06);
  object-fit:cover;
}
@media (max-width: 820px){
  .brand-logo{width:38px;height:38px;border-radius:13px}
}

.builder{
  padding:118px 0 64px;
}

.builder-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}

.builder-left, .builder-right{
  padding:22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
}

.builder-left{
  box-shadow:
    0 26px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.02) inset;
}

.builder-right{
  box-shadow:
    0 22px 60px rgba(0,0,0,.50),
    0 0 0 1px rgba(255,255,255,.02) inset;
}

.builder-title{
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.04em;
  font-size: 34px;
  line-height: 1.1;
}

.builder-head p{
  margin-top: 10px;
  line-height: 1.65;
}

.form{display:flex;flex-direction:column;gap:12px;margin-top:14px}
.field{display:flex;flex-direction:column;gap:7px;min-width:0}
label{font-weight:600;font-size:13px;color:rgba(255,255,255,.92)}

input,select,textarea{
  width:100%;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  border-radius:16px;
  padding:12px 12px;
  outline:none;

  max-width:100%;
  min-width:0;
}

textarea{resize:vertical;min-height:160px}
input:focus,select:focus,textarea:focus{
  border-color:rgba(255,255,255,.22);
  box-shadow:0 0 0 4px rgba(255,255,255,.06);
}

.hint{
  color:rgba(255,255,255,.42);
  font-size:12px;
  margin-top:-2px;
}

.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  align-items:start;
}
@media (max-width: 980px){
  .builder-grid{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:6px;
}
.actions .btn{flex:1 1 auto}
@media (max-width: 520px){
  .actions .btn{width:100%;justify-content:center}
}

.callout{
  margin-top:6px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
}
.callout-title{font-weight:600;margin-bottom:6px}

.status{
  margin-top:10px;
  font-size:13px;
  line-height:1.5;
}
.status.bad{color:rgba(255,255,255,.92);opacity:.95}
.status.good{color:rgba(255,255,255,.95)}

.chat-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
  min-width:0;
}
.chat-title{font-weight:600;font-size:16px}
.chat-badge{
  padding:8px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:rgba(255,255,255,.90);
  font-size:12px;
  flex:0 0 auto;
}


.chat-box{
  height:460px;
  border-radius:18px;
  background:rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.10);
  padding:12px;
  overflow:auto;
  display:flex;
  flex-direction:column;
  gap:10px;

  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.22) rgba(255,255,255,.04);
}
.chat-box::-webkit-scrollbar{width:8px}
.chat-box::-webkit-scrollbar-track{background:rgba(255,255,255,.03)}
.chat-box::-webkit-scrollbar-thumb{background:rgba(255,255,255,.18);border-radius:999px}
.chat-box::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.26)}

.msg{
  max-width:88%;
  padding:11px 12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  line-height:1.55;
  font-size:13.5px;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
}
.msg.user{
  align-self:flex-end;
  background:rgba(255,255,255,.06);
  border-top-right-radius:10px;
}
.msg.assistant{
  align-self:flex-start;
  border-top-left-radius:10px;
}
.msg.meta{
  align-self:center;
  opacity:.8;
  font-size:12px;
  background:transparent;
  border:1px dashed rgba(255,255,255,.18);
}

.chat-input{
  display:flex;
  gap:10px;
  margin-top:12px;
  align-items:stretch;
  min-width:0;
}
.chat-input input{
  flex:1 1 auto;
  min-width:0;
}
.chat-input .btn{
  flex:0 0 auto;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.20);
  cursor:pointer;
  margin-left:6px;
}
.chip:hover{background:rgba(255,255,255,.06)}