﻿:root{
  --bg:#071428;--card:rgba(255,255,255,0.04);--muted:#9fb0c8;--accent:#4cc0ff;--header-height:72px}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;line-height:1.4;background:linear-gradient(180deg,#071428 0%, #08192a 100%);color:#e6f0fb;-webkit-font-smoothing:antialiased}
.container{max-width:1100px;margin:0 auto;padding:24px}
.site-header{height:var(--header-height);display:flex;align-items:center;position:sticky;top:0;background:transparent;z-index:30}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:44px;height:44px;background:linear-gradient(135deg,var(--accent),#7ef);display:flex;align-items:center;justify-content:center;border-radius:8px;font-weight:700;color:#022435}
.brand-text .name{font-weight:700}
.brand-text .tag{font-size:12px;color:var(--muted)}
.nav a{color:var(--muted);margin-left:16px;text-decoration:none}
.nav a.btn-ghost{border:1px solid rgba(255,255,255,0.06);padding:8px 12px;border-radius:8px}
.btn{display:inline-block;padding:10px 14px;border-radius:10px;text-decoration:none;background:var(--accent);color:#022435;font-weight:600}
.btn-outline{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--muted)}
.btn-primary{background:var(--accent);color:#022435}
/* HERO: fill viewport minus header and center content */
.hero{display:flex;gap:24px;align-items:center;padding:0;min-height:calc(100vh - var(--header-height));}
.hero-left{flex:1;display:flex;flex-direction:column;justify-content:center;padding:64px 0}
.hero-right{flex:1;display:flex;justify-content:center;align-items:center}
/* larger, responsive heading */
.hero h1{font-size:clamp(28px,4.5vw,48px);margin:0 0 12px;line-height:1.05}
.lead{color:var(--muted);margin-bottom:18px;font-size:clamp(14px,1.6vw,18px)}
.cta-row a{margin-right:12px}
.hero-kpis{display:flex;gap:12px;margin-top:18px}
.kpi{background:linear-gradient(180deg,rgba(255,255,255,0.02),rgba(255,255,255,0.01));padding:10px 14px;border-radius:12px}
.kpi-label{font-size:12px;color:var(--muted)}
.kpi-value{font-weight:700;font-size:clamp(16px,2.2vw,22px)}
/* bigger dashboard preview but responsive */
.dashboard-preview{position:relative;width:clamp(320px,40vw,560px);max-width:100%}
.dash-img{width:100%;height:auto;display:block;border-radius:12px;transform:scale(1.03)}
.floating-card{position:absolute;left:14px;top:12px;background:linear-gradient(180deg,rgba(255,255,255,0.03),rgba(255,255,255,0.02));padding:8px 12px;border-radius:10px}
.floating-card.card-2{right:18px;left:auto;top:70%}
.features, .benefits, .demo, .contact{padding:40px 0}
.feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.feature{background:var(--card);padding:18px;border-radius:12px}
.panel.glass{background:rgba(255,255,255,0.03);padding:18px;border-radius:12px}
.demo-panel .demo-form{
display:flex;
flex-direction:column;
gap:12px;
align-items:stretch;
}
.demo-form input,
.demo-form select,
.demo-form textarea{
background:transparent;
border:1px solid rgba(255,255,255,0.06);
color:inherit;
padding:12px;
border-radius:8px;
width:100%;
box-sizing:border-box;
}

Save and reload the page — the demo will now be vertical by default. Want me to retry applying this change for you?

GPT-5 mini • 1x
.form-actions{display:flex;gap:8px;margin-top:12px}
.site-footer{padding:24px 0;color:var(--muted)}
.small{font-size:13px;color:var(--muted)}
.trusted{margin-top:14px;color:var(--muted)}
/* utility: visually hidden */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
/* toast */
.toast{position:fixed;left:50%;transform:translateX(-50%) translateY(12px);bottom:12px;background:rgba(3,19,30,0.95);color:#dff6ff;padding:10px 14px;border-radius:10px;opacity:0;transition:all .25s ease;z-index:9999}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
/* responsive tweaks */
@media (max-width:1200px){
  .hero-left{padding:48px 0}
}
@media (max-width:880px){
  .feature-grid{grid-template-columns:1fr}
  .hero{flex-direction:column;min-height:auto;padding:36px 0}
  .hero-left{padding:28px 0}
  .header-inner{padding:0 6px}
  .dashboard-preview{width:100%;max-width:540px}
  .dash-img{transform:none}
  .hero h1{font-size:28px}
}

/* Add styles to allow focusing the features section */
/* When main has show-only-features hide other sections */
main.show-only-features > *:not(.features){display:none}
/* Enlarge the features section to fill viewport */
.features.enlarged{min-height:calc(100vh - var(--header-height));display:flex;flex-direction:column;justify-content:center;padding:40px}
.features.enlarged .feature-grid{max-width:920px;margin:0 auto;transform:scale(1.02)}
.features.enlarged h2{font-size:32px}
.features.enlarged .feature{padding:20px;border-radius:14px}
/* Pin brand to top-left corner */
.brand{position:fixed;left:16px;top:10px;z-index:60;padding:6px;background:transparent}
.header-inner{justify-content:flex-end;padding-left:120px}
.brand-text .name{font-size:15px}
.brand-text .tag{font-size:11px;color:var(--muted)}

@media (max-width:880px){
  .brand{left:10px;top:8px}
  .header-inner{padding-left:0;justify-content:space-between}
}
/* Fix: allow scrolling when features are enlarged */
/* Override previous centering to permit vertical scroll */
.features.enlarged{display:block;min-height:auto;padding:calc(var(--header-height) + 28px) 40px 80px;overflow:auto}
main.show-only-features{overflow:auto}
.features.enlarged .feature-grid{max-width:920px;margin:0 auto}
/* Fix scrolling lock for features-only mode */
/* Constrain features panel height and allow internal scrolling */
.features.enlarged{
  display:block;
  max-height:calc(100vh - var(--header-height));
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  padding-top:20px;padding-bottom:80px
}
/* Make sure main and body allow scrolling when mode active */
main.show-only-features{height:auto}
html,body{overflow:auto}
/* Enlarged benefits styles: make benefits fill viewport and scroll internally */
.benefits.enlarged{min-height:calc(100vh - var(--header-height));display:block;padding:calc(var(--header-height) + 24px) 40px 80px;overflow-y:auto}
.benefits.enlarged .benefit-grid{max-width:920px;margin:0 auto}
.benefits.enlarged h2{font-size:32px}
.benefits.enlarged .benefit{padding:20px;border-radius:14px}
/* Compact, no-scroll benefits layout on larger screens */
.benefits.enlarged{
  min-height:calc(100vh - var(--header-height));
  padding:calc(var(--header-height)/2) 20px 28px;
  overflow:hidden; /* hide scroll on large viewports */
  display:block;
}
.benefits.enlarged .benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  max-width:1100px;
  margin:0 auto;
}
.benefits.enlarged h2{font-size:clamp(18px,2.4vw,26px);margin-bottom:8px}
.benefits.enlarged .lead{font-size:clamp(12px,1.2vw,14px);margin-bottom:10px}
.benefits.enlarged .benefit{background:var(--card);padding:12px;border-radius:10px;font-size:clamp(12px,1.1vw,14px);line-height:1.25}

@media (max-width:1200px){
  .benefits.enlarged .benefit-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:880px){
  /* on small screens allow scrolling and use single column */
  .benefits.enlarged{overflow:auto;padding:calc(var(--header-height)/2) 16px 80px}
  .benefits.enlarged .benefit-grid{grid-template-columns:1fr;gap:14px}
  .benefits.enlarged .benefit{padding:14px}
}
/* Make Benefits fit-screen and centered like Features */
.benefits.enlarged{
  min-height:calc(100vh - var(--header-height));
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:24px 20px;
  overflow:hidden;
}
.benefits.enlarged .benefit-grid{max-width:1100px;margin:0 auto;transform:none;display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.benefits.enlarged .benefit{padding:16px}

@media (max-width:1200px){
  .benefits.enlarged .benefit-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:880px){
  .benefits.enlarged{display:block;overflow:auto;padding:calc(var(--header-height)/2) 16px 80px}
  .benefits.enlarged .benefit-grid{grid-template-columns:1fr}
}
/* Match Benefits enlarged to Features enlarged: larger, centered, 2-column grid */
.benefits.enlarged{
  min-height:calc(100vh - var(--header-height));
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:32px 24px;
  overflow:hidden;
}
.benefits.enlarged .benefit-grid{
  max-width:920px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  transform:scale(1.02);
}
.benefits.enlarged h2{font-size:32px}
.benefits.enlarged .benefit{padding:20px;border-radius:14px;font-size:16px;line-height:1.25}

@media (min-width:1400px){
  .benefits.enlarged .benefit-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:880px){
  .benefits.enlarged{display:block;overflow:auto;padding:calc(var(--header-height)/2) 16px 80px}
  .benefits.enlarged .benefit-grid{grid-template-columns:1fr}
}
/* Position nav top-right and style to match brand font */
.nav{position:fixed;right:16px;top:12px;z-index:70;display:flex;align-items:center;gap:12px}
.nav a{color:var(--muted);text-decoration:none;font-weight:600}
.nav a.btn-ghost{padding:8px 10px}

/* Contact enlarged behavior like Benefits */
.contact.enlarged{min-height:calc(100vh - var(--header-height));display:flex;flex-direction:column;justify-content:center;padding:32px 24px;overflow:hidden}
.contact.enlarged .panel{max-width:920px;margin:0 auto}

@media (max-width:880px){
  .nav{position:fixed;right:8px;top:8px}
  .nav a{font-size:13px}
}
/* Ensure benefit boxes appear in normal view */
.benefit{background:var(--card);padding:18px;border-radius:12px}
.benefit-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
@media (max-width:880px){.benefit-grid{grid-template-columns:1fr}}
/* Add spacing between Benefits heading and its grid */
.benefits h2{margin-bottom:18px}
.benefits .benefit-grid{margin-top:6px}
/* Increase spacing under Benefits heading and above grid */
.benefits h2{margin-bottom:40px !important}
.benefits .benefit-grid{margin-top:24px !important}
/* Match spacing for Features heading and grid like Benefits */
.features h2{margin-bottom:40px !important}
.features .feature-grid{margin-top:24px !important}
/* Ensure footer is exactly the page end and prevent extra blank scroll */
html,body{height:100%}
body{display:flex;flex-direction:column;min-height:100vh;}
main{flex:1}
.site-footer{flex-shrink:0}
/* Remove large bottom padding from last main section that can create extra scroll */
main > section:last-of-type{padding-bottom:0;margin-bottom:0}
/* Reduce any persistent large bottom paddings on panels */
.panel{margin-bottom:0}
/* Keep footer at viewport bottom and move scrolling into main */
body{overflow:hidden !important}
main{overflow:auto; -webkit-overflow-scrolling:touch}
/* Ensure main scrolls from top when navigating */
main:focus{outline:none}
/* Restore normal page flow and scrolling: override previous internal-scroll rules */
body{display:block !important;min-height:100vh;overflow:auto !important}
html{overflow:auto !important}
main{flex:none !important;overflow:visible !important;min-height:0 !important}
.site-footer{position:relative}
/* ensure last section doesn't add extra bottom space */
main > section:last-of-type{padding-bottom:24px !important;margin-bottom:0 !important}
/* remove forced body height if set earlier */
html,body{height:auto !important}
/* Make top-right Request Demo ghost button higher contrast */
.nav a.btn-ghost{color:#ffffff !important;border-color:rgba(255,255,255,0.14) !important;background:transparent !important}
.nav a.btn-ghost:hover{background:rgba(255,255,255,0.04);color:#ffffff !important}
/* Make top-right Request Demo use filled primary style matching hero CTA */
.nav a.btn-ghost{
  display:inline-block !important;
  background:var(--accent) !important;
  color:#022435 !important;
  border:none !important;
  padding:10px 16px !important;
  border-radius:12px !important;
  font-weight:700 !important;
  text-decoration:none !important;
  box-shadow:0 1px 0 rgba(0,0,0,0.12) inset;
  transition:transform .12s ease, filter .12s ease;
}
.nav a.btn-ghost:hover{filter:brightness(0.95);transform:translateY(-1px)}
/* Disable hover/active/focus color and transform changes for top-right CTA */
.nav a.btn-ghost,
.nav a.btn-ghost:hover,
.nav a.btn-ghost:active,
.nav a.btn-ghost:focus{
  background:var(--accent) !important;
  color:#022435 !important;
  transform:none !important;
  filter:none !important;
  transition:none !important;
  box-shadow:0 1px 0 rgba(0,0,0,0.12) inset !important;
}
/* Improve hero image clarity: remove scale and force crisp rendering */
.dashboard-preview .dash-img{
  transform:none !important;
  -webkit-transform:none !important;
  width:100% !important;
  height:auto !important;
  image-rendering:auto !important;
  image-rendering:optimizeQuality !important;
  will-change:auto !important;
  backface-visibility:visible !important;
  border-radius:12px !important;
}
/* Reduce hero left top padding to bring headline closer to top */
.hero-left{padding-top:20px !important;padding-bottom:12px !important}
@media (max-width:880px){
  .hero-left{padding-top:16px !important;padding-bottom:12px !important}
}
/* Reduce hero left top padding to bring headline closer to top */
.hero-left{padding-top:20px !important;padding-bottom:12px !important}
@media (max-width:880px){
  .hero-left{padding-top:16px !important;padding-bottom:12px !important}
}

/* Mask over hero image to hide specific card text */
.dashboard-preview{position:relative}
.dash-mask{position:absolute;right:8%;top:6%;width:140px;height:56px;background:#ffffff;border-radius:10px;box-shadow:0 1px 0 rgba(0,0,0,0.06);pointer-events:none;z-index:20}
@media (max-width:880px){.dash-mask{right:6%;top:4%;width:120px;height:48px}}

/* Ensure image is behind mask and enlarge mask to fully cover card */
.dashboard-preview{position:relative}
.dash-img{position:relative;z-index:10}
.dash-mask{position:absolute;right:6%;top:6%;width:260px;height:96px;background:#ffffff;border-radius:12px;box-shadow:0 1px 0 rgba(0,0,0,0.06);pointer-events:none;z-index:9999}
@media (max-width:1200px){ .dash-mask{right:5%;top:5%;width:220px;height:86px} }
@media (max-width:880px){ .dash-mask{right:6%;top:6%;width:160px;height:68px} }

/* Further reduce hero upper padding */
.hero-left{padding-top:8px !important}
@media (max-width:880px){ .hero-left{padding-top:6px !important} }


/* Further reduce hero upper padding */
.hero-left{padding-top:8px !important}
@media (max-width:880px){ .hero-left{padding-top:6px !important} }


/* Demo enlarged: make demo section fit viewport and form vertical */
.demo.enlarged{min-height:calc(100vh - var(--header-height));display:flex;flex-direction:column;justify-content:center;padding:32px 20px;overflow:auto}
.demo.enlarged .panel.demo-panel{max-width:920px;margin:0 auto;width:100%}
.demo.enlarged .demo-form{display:flex;flex-direction:column;gap:12px;align-items:stretch}
.demo.enlarged .demo-form input,.demo.enlarged .demo-form select,.demo.enlarged .demo-form textarea{width:100%;box-sizing:border-box;padding:12px;border-radius:8px}
.demo.enlarged .form-actions{display:flex;gap:12px;margin-top:16px;justify-content:flex-start}
@media (max-width:880px){ .demo.enlarged .panel.demo-panel{padding:18px} .demo.enlarged{padding:20px 16px} .demo.enlarged .form-actions{flex-direction:column} .demo.enlarged .form-actions .btn{width:100%} }
/* Logo image */
.logo{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border-radius:8px;padding:0;background:transparent}
.logo-img{width:44px;height:44px;display:block;border-radius:8px;object-fit:cover}
