:root{
  --ink:#11120f;
  --paper:#fff8ed;
  --cream:#f4ecde;
  --muted:#70685f;
  --line:rgba(17,18,15,.13);
  --soft:#fffaf1;
  --dark:#090a09;
  --lime:#d9ff45;
  --green:#25d366;
  --aqua:#74e6ff;
  --orange:#ffb15f;
  --shadow:0 28px 90px rgba(0,0,0,.18);
  --display:"Archivo",system-ui,sans-serif;
  --body:"Inter",system-ui,sans-serif;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:#11120f;overflow-x:hidden}
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:
    linear-gradient(180deg,rgba(244,236,222,.72),rgba(244,236,222,.86)),
    url("https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&w=1900") center top/cover fixed;
  overflow-x:hidden;
  line-height:1.6;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(circle at 15% 12%,rgba(217,255,69,.32),transparent 28%),
    radial-gradient(circle at 86% 22%,rgba(116,230,255,.20),transparent 30%),
    linear-gradient(180deg,rgba(255,248,237,.48),rgba(244,236,222,.76));
}

img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
section[id]{scroll-margin-top:92px}

.container{
  width:min(var(--max),calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,248,237,.84);
  border-bottom:1px solid var(--line);
  -webkit-backdrop-filter:blur(18px);
  backdrop-filter:blur(18px);
}

.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand-mark{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:16px;
  color:var(--soft);
  background:linear-gradient(145deg,#1a1915,#555045);
  box-shadow:inset 8px 8px 18px rgba(255,255,255,.16),inset -10px -10px 22px rgba(0,0,0,.42),0 16px 38px rgba(0,0,0,.20);
  font-family:var(--display);
  font-weight:900;
}

.brand-copy{min-width:0}
.brand strong{
  display:block;
  font-family:var(--display);
  line-height:1;
  letter-spacing:-.04em;
}
.brand small{
  display:block;
  color:var(--muted);
  font-size:.76rem;
  font-weight:800;
  white-space:nowrap;
}

.desktop-nav{
  display:none;
  align-items:center;
  gap:4px;
  padding:6px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,250,241,.64);
}
.desktop-nav a{
  padding:9px 13px;
  border-radius:999px;
  color:#37322b;
  font-size:.9rem;
  font-weight:900;
}
.desktop-nav a:hover{background:var(--ink);color:var(--soft)}

.nav-actions{display:flex;align-items:center;gap:10px}
.menu-toggle{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--soft);
  cursor:pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  width:20px;
  height:2px;
  display:block;
  position:relative;
  border-radius:99px;
  background:var(--ink);
  transition:.2s ease;
}
.menu-toggle span::before,
.menu-toggle span::after{
  content:"";
  position:absolute;
  left:0;
}
.menu-toggle span::before{top:-7px}
.menu-toggle span::after{top:7px}
.menu-toggle.open span{background:transparent}
.menu-toggle.open span::before{top:0;transform:rotate(45deg)}
.menu-toggle.open span::after{top:0;transform:rotate(-45deg)}

.mobile-nav{
  display:none;
  width:min(100% - 24px,460px);
  margin:0 auto 12px;
  padding:10px;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(255,250,241,.98);
  box-shadow:var(--shadow);
}
.mobile-nav.open{display:grid;gap:4px}
.mobile-nav a{
  min-height:46px;
  display:flex;
  align-items:center;
  padding:12px 14px;
  border-radius:16px;
  font-weight:900;
}
.mobile-nav a:hover{background:rgba(17,18,15,.06)}

.btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 20px;
  border:0;
  border-radius:999px;
  font-weight:900;
  line-height:1.1;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-small{min-height:44px;padding:10px 16px}
.btn-green{background:linear-gradient(135deg,#6bffa2,var(--green));color:#041509;box-shadow:0 18px 44px rgba(37,211,102,.25)}
.btn-lime{background:linear-gradient(135deg,#efff84,var(--lime));color:#11120f}
.btn-ghost{border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.10);color:var(--soft)}

.section-dark{
  color:var(--soft);
  background:
    radial-gradient(circle at 12% 18%,rgba(217,255,69,.18),transparent 34%),
    radial-gradient(circle at 85% 68%,rgba(116,230,255,.16),transparent 30%),
    #0c0d0b;
}

.section{padding:82px 0}
.section:not(.section-dark){
  background:linear-gradient(180deg,rgba(255,248,237,.72),rgba(244,236,222,.66));
}
.hero{
  min-height:calc(100svh - 78px);
  display:grid;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:70px 0;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(9,10,9,.86),rgba(9,10,9,.54)),
    url("https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&w=1900") center/cover;
  opacity:.96;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  gap:34px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0;
  color:var(--lime);
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
}
.eyebrow::before{
  content:"";
  width:34px;
  height:2px;
  border-radius:99px;
  background:currentColor;
}
h1,h2,h3,p{overflow-wrap:break-word}
h1{
  margin:16px 0 18px;
  max-width:760px;
  font-family:var(--display);
  font-size:clamp(3.1rem,13vw,6.9rem);
  line-height:.82;
  letter-spacing:-.075em;
}
.hero-text{
  max-width:620px;
  color:rgba(255,250,241,.78);
  font-size:1.08rem;
}
.hero-actions,.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:24px;
}
.trust-strip span,
.tag{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 11px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:rgba(255,250,241,.86);
  background:rgba(255,255,255,.08);
  font-size:.82rem;
  font-weight:900;
}

.hero-visual{
  position:relative;
  min-height:430px;
}
.browser-card{
  position:relative;
  z-index:2;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  border-radius:32px;
  background:rgba(12,13,11,.78);
  box-shadow:0 34px 120px rgba(0,0,0,.50);
  -webkit-backdrop-filter:blur(18px);
  backdrop-filter:blur(18px);
}
.browser-top,.device-top,.live-preview-top{
  min-height:54px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 18px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
}
.browser-top i,.device-top i,.live-preview-top i{
  width:10px;
  height:10px;
  border-radius:99px;
  background:rgba(255,255,255,.4);
}
.browser-top span,.device-top span{
  margin-left:auto;
  color:rgba(255,250,241,.58);
  font-size:.78rem;
  font-weight:900;
}
.browser-hero{
  min-height:260px;
  padding:28px;
  background:
    linear-gradient(135deg,rgba(217,255,69,.24),transparent 45%),
    url("https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1100") center/cover;
}
.browser-hero p,.browser-hero strong{position:relative;z-index:2}
.browser-hero strong{
  display:block;
  max-width:520px;
  font-family:var(--display);
  font-size:clamp(2rem,5vw,4rem);
  line-height:.9;
  letter-spacing:-.06em;
}
.browser-buttons{display:flex;gap:10px;margin-top:24px}
.browser-buttons span{
  width:120px;
  height:42px;
  border-radius:999px;
  background:var(--lime);
}
.browser-buttons span:last-child{width:82px;background:rgba(255,255,255,.22)}
.browser-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  padding:16px;
}
.browser-grid article{
  min-height:118px;
  padding:16px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:rgba(255,255,255,.08);
}
.browser-grid b{display:block;color:var(--lime);margin-bottom:20px}
.browser-grid span{font-weight:900}
.phone-card{
  position:absolute;
  right:-10px;
  bottom:8px;
  z-index:3;
  width:190px;
  padding:18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:28px;
  background:rgba(255,250,241,.92);
  color:var(--ink);
  box-shadow:0 24px 70px rgba(0,0,0,.36);
}
.phone-card span{
  display:block;
  width:54px;
  height:54px;
  margin-bottom:24px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--lime),var(--aqua));
}
.phone-card strong{display:block;font-family:var(--display);font-size:1.35rem;line-height:1}
.phone-card p{margin:.5rem 0 0;color:var(--muted);font-size:.9rem}

.logo-row{
  padding:18px 0;
  background:var(--ink);
  color:var(--soft);
  overflow:hidden;
}
.logo-track{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-bottom:4px;
}
.logo-track span{
  flex:0 0 auto;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  font-weight:900;
  color:rgba(255,250,241,.82);
}

.section-head{
  max-width:760px;
  margin-bottom:34px;
}
.section-head h2,
.preview-copy h2,
.pricing-copy h2,
.builder-card h2,
.faq-copy h2,
.contact-card h2{
  margin:12px 0 12px;
  font-family:var(--display);
  font-size:clamp(2.5rem,7vw,5rem);
  line-height:.88;
  letter-spacing:-.07em;
}
.section-head p,
.pricing-copy p,
.preview-copy p,
.builder-card p,
.faq-copy p,
.contact-card p{
  color:var(--muted);
  max-width:620px;
}
.section-dark .section-head p,
.section-dark .faq-copy p{color:rgba(255,250,241,.68)}
.split-head{
  max-width:none;
  display:grid;
  gap:16px;
  align-items:end;
}

.service-grid{
  display:grid;
  gap:18px;
}
.service-card{
  display:grid;
  gap:0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,250,241,.78);
  box-shadow:0 18px 58px rgba(0,0,0,.08);
}
.service-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}
.service-card div{padding:22px}
.service-card span,
.process-card span{
  display:inline-block;
  color:var(--muted);
  font-weight:900;
  margin-bottom:12px;
}
.service-card h3{
  margin:0 0 10px;
  font-family:var(--display);
  font-size:2rem;
  line-height:.95;
  letter-spacing:-.05em;
}
.service-card p{color:var(--muted)}
.service-card ul{
  display:grid;
  gap:8px;
  padding:0;
  margin:18px 0 0;
  list-style:none;
}
.service-card li{
  display:flex;
  gap:8px;
  font-weight:800;
}
.service-card li::before{
  content:"";
  width:9px;
  height:9px;
  margin-top:.55em;
  border-radius:99px;
  background:var(--lime);
}

.work-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:-8px 0 24px;
}
.work-filter{
  min-height:44px;
  padding:10px 15px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:var(--soft);
  font-weight:900;
  cursor:pointer;
}
.work-filter.active{
  border-color:var(--lime);
  background:var(--lime);
  color:var(--ink);
}
.work-grid{
  display:grid;
  gap:18px;
}
.work-card{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  background:rgba(255,255,255,.07);
}
.work-card img{width:100%;height:260px;object-fit:cover}
.work-card div{padding:20px}
.work-card span{font-family:var(--display);font-size:1.55rem;font-weight:900;letter-spacing:-.04em}
.work-card p{color:rgba(255,250,241,.68)}
.work-card.is-hidden{display:none}

.studio-lab{
  background:
    linear-gradient(180deg,rgba(255,248,237,.78),rgba(244,236,222,.58)),
    radial-gradient(circle at 10% 15%,rgba(217,255,69,.22),transparent 32%);
}
.studio-grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.studio-copy h2{
  margin:12px 0 12px;
  font-family:var(--display);
  font-size:clamp(2.5rem,7vw,5rem);
  line-height:.88;
  letter-spacing:-.07em;
}
.studio-copy p{
  max-width:620px;
  color:var(--muted);
}
.style-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.style-tab{
  min-height:46px;
  padding:11px 15px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,250,241,.78);
  color:var(--ink);
  font-weight:900;
  cursor:pointer;
}
.style-tab.active{
  background:var(--ink);
  color:var(--soft);
}
.style-stage{
  display:grid;
  gap:14px;
}
.style-preview,
.launch-card{
  overflow:hidden;
  border:1px solid rgba(17,18,15,.12);
  border-radius:32px;
  background:rgba(255,250,241,.80);
  box-shadow:0 22px 70px rgba(0,0,0,.12);
}
.style-preview{
  min-height:430px;
  color:var(--soft);
  background:#10110f;
}
.style-top{
  min-height:54px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 18px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
}
.style-top i{
  width:10px;
  height:10px;
  border-radius:99px;
  background:rgba(255,255,255,.36);
}
.style-top span{
  margin-left:auto;
  color:rgba(255,250,241,.58);
  font-size:.78rem;
  font-weight:900;
}
.style-hero{
  min-height:376px;
  display:grid;
  align-content:end;
  padding:28px;
  background:
    linear-gradient(180deg,transparent,rgba(0,0,0,.76)),
    radial-gradient(circle at 85% 15%,rgba(217,255,69,.28),transparent 30%),
    url("https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover;
}
.style-hero span{
  color:var(--lime);
  font-size:.75rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.style-hero strong{
  display:block;
  max-width:520px;
  margin:10px 0;
  font-family:var(--display);
  font-size:clamp(2rem,5vw,4.2rem);
  line-height:.88;
  letter-spacing:-.065em;
}
.style-hero p{
  max-width:500px;
  color:rgba(255,250,241,.76);
}
.style-actions{
  display:flex;
  gap:10px;
  margin-top:16px;
}
.style-actions b{
  width:130px;
  height:42px;
  border-radius:999px;
  background:var(--lime);
}
.style-actions b:last-child{
  width:86px;
  background:rgba(255,255,255,.22);
}
.style-stage[data-style="bold"] .style-hero{
  background:
    linear-gradient(180deg,transparent,rgba(0,0,0,.80)),
    radial-gradient(circle at 15% 10%,rgba(255,177,95,.45),transparent 34%),
    url("https://images.pexels.com/photos/3992874/pexels-photo-3992874.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover;
}
.style-stage[data-style="bold"] .style-actions b{background:var(--orange)}
.style-stage[data-style="calm"] .style-hero{
  background:
    linear-gradient(180deg,transparent,rgba(0,0,0,.70)),
    radial-gradient(circle at 85% 18%,rgba(116,230,255,.38),transparent 34%),
    url("https://images.pexels.com/photos/5212345/pexels-photo-5212345.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover;
}
.style-stage[data-style="calm"] .style-actions b{background:var(--aqua)}
.style-stage[data-style="clean"] .style-hero{
  background:
    linear-gradient(180deg,rgba(255,250,241,.18),rgba(0,0,0,.74)),
    url("https://images.pexels.com/photos/3861958/pexels-photo-3861958.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover;
}
.launch-card{
  padding:20px;
}
.launch-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.launch-card-head span{
  color:var(--muted);
  font-weight:900;
}
.launch-card-head strong{
  font-family:var(--display);
  font-size:1.8rem;
  letter-spacing:-.05em;
}
.launch-meter{
  overflow:hidden;
  height:12px;
  border-radius:999px;
  background:rgba(17,18,15,.10);
}
.launch-meter i{
  display:block;
  width:50%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--lime),var(--green));
  transition:width .25s ease;
}
.launch-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:16px;
}
.launch-list label{
  display:flex;
  align-items:center;
  gap:9px;
  min-height:44px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.48);
  font-size:.92rem;
  font-weight:900;
}
.launch-list input{
  width:18px;
  height:18px;
  accent-color:var(--green);
}

.preview-grid,
.pricing-grid,
.builder-grid,
.faq-grid,
.contact-grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.tab-list,.price-options{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.preview-tab,.price-option{
  min-height:46px;
  padding:11px 15px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--soft);
  color:var(--ink);
  font-weight:900;
  cursor:pointer;
}
.preview-tab.active,.price-option.active{
  background:var(--ink);
  color:var(--soft);
}
.live-device,.pricing-panel,.builder-card,.brief-form,.contact-card{
  padding:20px;
  border:1px solid var(--line);
  border-radius:30px;
  background:rgba(255,250,241,.82);
  box-shadow:0 18px 58px rgba(0,0,0,.08);
}
.live-device{
  overflow:hidden;
  background:#0f1110;
  color:var(--soft);
}
.device-screen{
  min-height:410px;
  display:grid;
  align-items:end;
  overflow:hidden;
  border-radius:24px;
  background:#151614;
  position:relative;
}
.device-image{
  position:absolute;
  inset:0;
  background:url("https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover;
  opacity:.46;
}
.device-screen::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.82));
}
.device-copy{
  position:relative;
  z-index:2;
  padding:24px;
}
.device-copy span{
  color:var(--lime);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.75rem;
}
.device-copy strong{
  display:block;
  margin:10px 0;
  font-family:var(--display);
  font-size:clamp(2rem,5vw,4.2rem);
  line-height:.88;
  letter-spacing:-.065em;
}
.live-device .btn{width:100%;margin-top:14px}

.pulse-section{
  position:relative;
  overflow:hidden;
}
.pulse-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 24%,rgba(217,255,69,.18),transparent 30%),
    radial-gradient(circle at 86% 14%,rgba(116,230,255,.18),transparent 28%);
}
.pulse-grid{
  position:relative;
  z-index:2;
  display:grid;
  gap:28px;
  align-items:center;
}
.pulse-copy h2{
  margin:12px 0 12px;
  font-family:var(--display);
  font-size:clamp(2.5rem,7vw,5rem);
  line-height:.88;
  letter-spacing:-.07em;
}
.pulse-copy p{
  max-width:620px;
  color:rgba(255,250,241,.68);
}
.pulse-controls{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.pulse-tab{
  min-height:46px;
  padding:11px 15px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.07);
  color:var(--soft);
  font-weight:900;
  cursor:pointer;
}
.pulse-tab.active{
  background:var(--lime);
  color:var(--ink);
}
.pulse-board{
  position:relative;
  overflow:hidden;
  min-height:430px;
  padding:20px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:34px;
  background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.045));
  box-shadow:0 34px 120px rgba(0,0,0,.40);
  -webkit-backdrop-filter:blur(20px);
  backdrop-filter:blur(20px);
}
.pulse-score-card{
  position:relative;
  z-index:2;
  display:grid;
  gap:18px;
  padding:22px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  background:rgba(9,10,9,.58);
}
.pulse-ring{
  --score:92;
  width:128px;
  height:128px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:
    radial-gradient(circle at center,#10110f 57%,transparent 58%),
    conic-gradient(var(--lime) calc(var(--score) * 1%),rgba(255,255,255,.12) 0);
  box-shadow:0 0 0 10px rgba(255,255,255,.04),0 20px 60px rgba(217,255,69,.16);
}
.pulse-ring span{
  color:var(--soft);
  font-family:var(--display);
  font-size:2.6rem;
  font-weight:900;
  letter-spacing:-.06em;
}
.pulse-label{
  display:block;
  color:var(--lime);
  font-size:.75rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.pulse-score-card strong{
  display:block;
  margin:8px 0 10px;
  max-width:520px;
  font-family:var(--display);
  font-size:clamp(1.9rem,5vw,3.7rem);
  line-height:.9;
  letter-spacing:-.06em;
}
.pulse-score-card p{
  max-width:520px;
  margin:0;
  color:rgba(255,250,241,.68);
}
.pulse-checks{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
.pulse-checks span{
  min-height:96px;
  display:flex;
  align-items:flex-end;
  padding:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background:rgba(255,255,255,.07);
  color:rgba(255,250,241,.86);
  font-weight:900;
}
.pulse-checks span::before{
  content:"";
  width:10px;
  height:10px;
  margin:0 9px 7px 0;
  flex:0 0 auto;
  border-radius:999px;
  background:var(--lime);
  box-shadow:0 0 18px rgba(217,255,69,.7);
}
.pulse-orbit{
  position:absolute;
  inset:auto -20px -90px auto;
  width:280px;
  height:280px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
}
.pulse-orbit span{
  position:absolute;
  width:80px;
  height:80px;
  border-radius:26px;
  background:linear-gradient(135deg,var(--lime),var(--aqua));
  opacity:.82;
  box-shadow:0 24px 70px rgba(0,0,0,.28);
}
.pulse-orbit span:nth-child(1){left:20px;top:18px}
.pulse-orbit span:nth-child(2){right:10px;top:92px;background:linear-gradient(135deg,var(--orange),var(--lime))}
.pulse-orbit span:nth-child(3){left:90px;bottom:8px;background:linear-gradient(135deg,var(--aqua),#c8ff91)}

.pricing-section{background:linear-gradient(180deg,rgba(255,250,241,.70),rgba(244,236,222,.58))}
.price-card{
  margin:18px 0;
  padding:24px;
  border-radius:26px;
  color:var(--soft);
  background:
    radial-gradient(circle at 90% 0,rgba(217,255,69,.24),transparent 36%),
    #10110f;
}
.price-card span{display:block;color:rgba(255,250,241,.68);font-weight:900}
.price-card strong{
  display:block;
  margin:8px 0;
  color:var(--lime);
  font-family:var(--display);
  font-size:clamp(2.6rem,9vw,4.8rem);
  line-height:.9;
  letter-spacing:-.07em;
}
.price-card p{color:rgba(255,250,241,.78)}
.price-note{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  margin-bottom:18px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.46);
}
.price-note b{color:#2b3a0d}
.pricing-panel .btn{width:100%}

.builder-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:22px;
}
.builder-stats span{
  min-height:100px;
  display:grid;
  align-content:center;
  gap:4px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.46);
}
.builder-stats b{font-family:var(--display);font-size:1.9rem}
.builder-stats small{color:var(--muted);font-weight:800}
.brief-form{
  display:grid;
  gap:14px;
}
.brief-form label{display:grid;gap:7px;font-weight:900}
.brief-form label span{font-size:.9rem}
.brief-form input,.brief-form select,.brief-form textarea{
  width:100%;
  min-height:50px;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--soft);
  color:var(--ink);
}
.brief-form textarea{min-height:150px;resize:vertical}
.brief-form .full{grid-column:1/-1}
.form-help{margin:0;color:var(--muted);font-size:.9rem}

.process-section{background:linear-gradient(180deg,rgba(255,250,241,.78),rgba(255,248,237,.66))}
.process-grid{
  position:relative;
  display:grid;
  gap:16px;
}
.process-card{
  position:relative;
  min-height:220px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:26px;
  background:rgba(255,250,241,.86);
  box-shadow:0 18px 54px rgba(0,0,0,.08);
}
.process-card h3{
  margin:0 0 10px;
  font-family:var(--display);
  font-size:2rem;
  letter-spacing:-.05em;
}
.process-card p{color:var(--muted)}

.faq-grid{align-items:start}
.faq-copy .btn{margin-top:20px}
.faq-list{display:grid;gap:12px}
.faq-item{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  background:rgba(255,255,255,.07);
}
.faq-question{
  width:100%;
  min-height:62px;
  padding:18px 20px;
  border:0;
  background:transparent;
  color:var(--soft);
  text-align:left;
  font-weight:900;
  cursor:pointer;
}
.faq-answer{
  display:none;
  padding:0 20px 18px;
  color:rgba(255,250,241,.7);
}
.faq-item.open .faq-answer{display:block}

.contact-links{
  display:grid;
  gap:10px;
  margin-top:24px;
}
.contact-links a{
  display:grid;
  gap:2px;
  padding:15px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.46);
}
.contact-links b{font-weight:900}
.contact-links span{color:var(--muted)}
.contact-image{
  overflow:hidden;
  min-height:380px;
  border-radius:30px;
  box-shadow:var(--shadow);
}
.contact-image img{width:100%;height:100%;min-height:380px;object-fit:cover}

.site-footer{
  padding:44px 0;
  color:rgba(255,250,241,.70);
  background:#080908;
}
.footer-grid{
  display:grid;
  gap:24px;
}
.footer-brand{color:var(--soft)}
.site-footer p{max-width:420px}
.site-footer nav{display:flex;flex-wrap:wrap;gap:12px}
.site-footer nav a{font-weight:900;color:rgba(255,250,241,.76)}
.copyright{margin:0}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease;
}
.reveal.visible{opacity:1;transform:none}

@media (max-width: 760px){
  .container{width:100%;padding-left:16px;padding-right:16px}
  .site-header{position:sticky}
  .nav{min-height:68px}
  .brand{grid-template-columns:42px minmax(0,1fr)}
  .brand strong{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .brand small{display:none}
  .nav-actions .btn{display:none}
  .hero{min-height:auto;padding:76px 0 58px}
  .hero-grid{gap:28px}
  .hero-visual{min-height:auto}
  .phone-card{position:relative;right:auto;bottom:auto;width:100%;margin-top:14px}
  .browser-grid{grid-template-columns:1fr}
  .browser-hero{min-height:220px;padding:22px}
  .section{padding:58px 0}
  .section-head{margin-bottom:24px}
  .hero-actions,.tab-list,.price-options,.pulse-controls,.style-tabs,.work-filters{display:grid;grid-template-columns:1fr}
  .btn,.preview-tab,.price-option,.work-filter{width:100%}
  .pulse-tab,.style-tab{width:100%}
  .style-preview{min-height:auto}
  .style-hero{min-height:330px;padding:22px}
  .launch-list{grid-template-columns:1fr}
  .pulse-board{min-height:auto}
  .pulse-score-card{grid-template-columns:1fr}
  .pulse-checks{grid-template-columns:1fr}
  .pulse-orbit{display:none}
  .service-card img,.work-card img{height:220px}
  .builder-stats{grid-template-columns:1fr}
  .contact-image{min-height:240px}
  .contact-image img{min-height:240px}
  .price-note{grid-template-columns:1fr}
}

@media (min-width: 761px){
  .desktop-nav{display:flex}
  .menu-toggle{display:none}
  .mobile-nav{display:none!important}
  .hero-grid{grid-template-columns:.92fr 1.08fr}
  .split-head{grid-template-columns:1fr .62fr}
  .service-grid{grid-template-columns:repeat(3,1fr)}
  .service-card{grid-template-rows:auto 1fr}
  .work-grid{grid-template-columns:repeat(3,1fr)}
  .preview-grid,.pulse-grid,.studio-grid,.pricing-grid,.builder-grid,.faq-grid,.contact-grid{grid-template-columns:.9fr 1.1fr}
  .pulse-score-card{grid-template-columns:140px 1fr;align-items:center}
  .process-grid{grid-template-columns:repeat(4,1fr)}
  .process-grid::before{
    content:"";
    position:absolute;
    top:36px;
    left:10%;
    right:10%;
    height:3px;
    border-radius:99px;
    background:linear-gradient(90deg,transparent,var(--lime),transparent);
  }
  .process-card::before{
    content:"";
    position:absolute;
    top:27px;
    right:24px;
    width:18px;
    height:18px;
    border:4px solid rgba(17,18,15,.12);
    border-radius:999px;
    background:var(--lime);
  }
  .brief-form{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1.2fr 1fr auto;align-items:start}
}

@media (min-width: 1100px){
  .hero-visual{transform:perspective(1000px) rotateY(-6deg) rotateX(2deg)}
  .browser-card{animation:floatDevice 5s ease-in-out infinite}
  .phone-card{animation:floatPhone 5.5s ease-in-out infinite}
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
}

@keyframes floatDevice{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

@keyframes floatPhone{
  0%,100%{transform:translateY(0) rotate(-2deg)}
  50%{transform:translateY(10px) rotate(2deg)}
}
