
:root{
  --bg:#06111f;
  --bg-2:#0b1b31;
  --ink:#07101d;
  --text:#ecf6ff;
  --muted:#9fb4c8;
  --muted-2:#61768d;
  --surface:#ffffff;
  --surface-2:#f5f8fc;
  --surface-3:#eef4fb;
  --line:rgba(15, 32, 55, .12);
  --line-dark:rgba(255,255,255,.11);
  --brand:#54f2c2;
  --brand-2:#20b8ff;
  --brand-3:#7c5cff;
  --accent:#d8ff63;
  --danger:#ff6b85;
  --warning:#ffd166;
  --success:#54f2c2;
  --shadow:0 24px 70px rgba(3, 14, 28, .16);
  --shadow-strong:0 30px 95px rgba(2, 10, 22, .42);
  --radius:24px;
  --radius-sm:16px;
  --container:1180px;
  --header-h:78px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(84,242,194,.14), transparent 28rem),
    radial-gradient(circle at 88% 2%, rgba(32,184,255,.14), transparent 30rem),
    linear-gradient(180deg,#f8fbff 0%,#ffffff 34%,#f5f8fc 100%);
  line-height:1.55;
  text-rendering:optimizeLegibility;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(6,17,31,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(6,17,31,.03) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(to bottom, black 0%, transparent 70%);
  z-index:-1;
}

a{color:inherit;text-decoration:none}
img,svg{display:block;max-width:100%}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
.container{width:min(var(--container), calc(100% - 40px)); margin-inline:auto}
.narrow{max-width:820px}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; clip:rect(0,0,0,0); overflow:hidden; white-space:nowrap; border:0}
.skip-link{position:absolute;top:-100px;left:18px;background:#fff;color:#07101d;padding:10px 14px;border-radius:10px;z-index:1000;box-shadow:var(--shadow)}
.skip-link:focus{top:18px}

.site-header{
  position:sticky;
  top:0;
  z-index:200;
  backdrop-filter:saturate(160%) blur(18px);
  background:rgba(255,255,255,.76);
  border-bottom:1px solid rgba(6,17,31,.08);
  transition:box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled{box-shadow:0 12px 40px rgba(3,14,28,.08);background:rgba(255,255,255,.9)}
.header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}
.brand-mark{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  filter:drop-shadow(0 12px 18px rgba(32,184,255,.18));
}
.brand-copy{display:grid;line-height:1.05}
.brand-copy strong{font-size:1.03rem;letter-spacing:-.03em}
.brand-copy span{font-size:.78rem;color:var(--muted-2);font-weight:700;margin-top:5px}
.site-nav{
  display:flex;
  align-items:center;
  gap:4px;
  padding:6px;
  border:1px solid rgba(6,17,31,.08);
  background:rgba(255,255,255,.58);
  border-radius:999px;
  box-shadow:0 10px 30px rgba(3,14,28,.05);
}
.site-nav a{
  padding:10px 13px;
  border-radius:999px;
  color:#23344a;
  font-size:.92rem;
  font-weight:800;
  white-space:nowrap;
  transition:background .16s ease, color .16s ease, transform .16s ease;
}
.site-nav a:hover{background:#eef4fb;color:#07101d;transform:translateY(-1px)}
.site-nav a.active,.site-nav a[aria-current="page"]{background:#06111f;color:#fff}
.site-nav .nav-cta{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#06111f;
  box-shadow:0 10px 22px rgba(32,184,255,.2);
}
.site-nav .nav-cta:hover{background:linear-gradient(135deg,var(--accent),var(--brand));color:#06111f}
.nav-toggle{display:none;border:0;background:#07101d;color:#fff;border-radius:14px;width:46px;height:44px;padding:11px}
.nav-toggle span:not(.sr-only){height:2px;background:currentColor;border-radius:999px;display:block;margin:5px 0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 18px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#04111f;
  box-shadow:0 18px 40px rgba(32,184,255,.24);
}
.btn-primary:hover{box-shadow:0 24px 55px rgba(32,184,255,.32)}
.btn-secondary{
  color:#07101d;
  background:#fff;
  border-color:rgba(7,16,29,.12);
  box-shadow:0 16px 45px rgba(3,14,28,.08);
}
.btn-secondary:hover{border-color:rgba(32,184,255,.38)}
.btn-ghost{color:#fff;border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.08)}
.btn-block{width:100%}
.btn-large{padding:15px 22px}
.button-row,.hero-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}

.hero{
  position:relative;
  overflow:hidden;
  padding:82px 0 54px;
  background:
    radial-gradient(circle at 20% 20%, rgba(84,242,194,.2), transparent 22rem),
    radial-gradient(circle at 80% 16%, rgba(124,92,255,.22), transparent 26rem),
    linear-gradient(135deg,#06111f 0%,#0b1b31 48%,#102a46 100%);
  color:var(--text);
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto -10% -45% -10%;
  height:340px;
  background:radial-gradient(ellipse at center, rgba(32,184,255,.32), transparent 60%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px, .92fr);
  align-items:center;
  gap:56px;
}
.eyebrow,.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#147a69;
  background:rgba(84,242,194,.13);
  border:1px solid rgba(84,242,194,.28);
  border-radius:999px;
  padding:7px 12px;
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero .eyebrow{color:#caffef;background:rgba(84,242,194,.12);border-color:rgba(84,242,194,.25)}
.pulse-dot{width:8px;height:8px;border-radius:50%;background:var(--brand);box-shadow:0 0 0 6px rgba(84,242,194,.14)}
h1,h2,h3,p{margin-top:0}
h1,h2,h3,p,a,strong,span,li{overflow-wrap:break-word}
.hero h1{
  margin:20px 0 18px;
  font-size:clamp(3rem, 7vw, 6.8rem);
  line-height:.9;
  letter-spacing:-.08em;
  max-width:850px;
}
.hero-lead{
  color:#c4d4e5;
  font-size:clamp(1.05rem, 2vw, 1.28rem);
  max-width:690px;
}
.hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:28px 0 16px;
}
.hero-proof div{
  padding:16px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:18px;
  background:rgba(255,255,255,.06);
}
.hero-proof strong{display:block;color:#fff;font-size:1rem}
.hero-proof span{display:block;color:#adc2d6;font-size:.84rem;margin-top:4px}
.licence-note{
  color:#9fb4c8;
  font-size:.86rem;
  max-width:760px;
}
.hero-visual{perspective:1200px}
.floating-card{animation:floatCard 6s ease-in-out infinite}
@keyframes floatCard{0%,100%{transform:translateY(0) rotateX(0) rotateY(-4deg)}50%{transform:translateY(-14px) rotateX(2deg) rotateY(1deg)}}
.browser-shell{
  border:1px solid rgba(255,255,255,.14);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-strong);
  background:linear-gradient(145deg,rgba(255,255,255,.16),rgba(255,255,255,.06));
  backdrop-filter:blur(18px);
}
.browser-bar{
  display:flex;
  align-items:center;
  gap:8px;
  padding:14px 16px;
  background:rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.1);
}
.browser-bar span{width:11px;height:11px;border-radius:50%;background:rgba(255,255,255,.34)}
.browser-bar div{margin-left:auto;color:#c4d4e5;font-size:.82rem;font-weight:800}
.portal-frame{
  display:grid;
  grid-template-columns:132px 1fr;
  min-height:430px;
}
.portal-sidebar{
  padding:18px 12px;
  background:rgba(4,13,26,.64);
  border-right:1px solid rgba(255,255,255,.09);
}
.portal-logo{
  width:42px;height:42px;border-radius:15px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#06111f;font-weight:950;margin-bottom:18px;
}
.portal-sidebar button{
  width:100%;
  border:0;
  background:transparent;
  color:#9fb4c8;
  text-align:left;
  padding:10px 11px;
  border-radius:12px;
  font-size:.82rem;
  font-weight:850;
}
.portal-sidebar button.active,.portal-sidebar button:hover{background:rgba(84,242,194,.12);color:#fff}
.portal-main{padding:20px;background:#081728}
.portal-top{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:16px}
.portal-top span{font-size:.78rem;color:#8fa5bb;font-weight:800}
.portal-top strong{display:block;font-size:1.4rem;letter-spacing:-.04em}
.status-pill{
  border:1px solid rgba(84,242,194,.3);
  background:rgba(84,242,194,.12);
  color:#caffef!important;
  border-radius:999px;
  padding:7px 10px;
}
.metric-row{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:14px}
.metric-row article{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:14px}
.metric-row span{display:block;color:#8fa5bb;font-size:.76rem;font-weight:800}
.metric-row strong{display:block;font-size:1.45rem;margin-top:4px;letter-spacing:-.04em}
.demo-chart{
  height:126px;
  display:flex;
  align-items:end;
  gap:10px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));
  margin-bottom:14px;
}
.demo-chart span{
  flex:1;
  min-height:18px;
  border-radius:999px 999px 6px 6px;
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  opacity:.86;
}
.portal-table{display:grid;gap:8px}
.portal-table div{display:grid;grid-template-columns:1fr auto auto;gap:10px;align-items:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.09);border-radius:14px;padding:10px 12px}
.portal-table strong{font-size:.88rem}
.portal-table span{font-size:.78rem;color:#adc2d6}

.logo-strip{
  padding:18px 0;
  background:#fff;
  border-bottom:1px solid rgba(6,17,31,.08);
}
.logo-strip .container{display:flex;align-items:center;justify-content:center;gap:22px;flex-wrap:wrap}
.logo-strip span{font-size:.78rem;text-transform:uppercase;letter-spacing:.1em;font-weight:950;color:var(--muted-2)}
.logo-strip strong{font-size:.95rem;color:#20364f}

.section{padding:96px 0}
.section-muted{background:linear-gradient(180deg,#f7fbff,#eef5fb)}
.section-dark{
  background:
    radial-gradient(circle at 12% 0%, rgba(84,242,194,.12), transparent 28rem),
    linear-gradient(135deg,#06111f,#0b1b31);
  color:var(--text);
}
.section-gradient{
  color:#fff;
  background:
    radial-gradient(circle at 75% 12%, rgba(124,92,255,.30), transparent 26rem),
    radial-gradient(circle at 8% 50%, rgba(84,242,194,.18), transparent 24rem),
    linear-gradient(135deg,#07101d,#0d2542);
}
.split-section{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.8fr);
  gap:54px;
  align-items:center;
}
.split-section.reverse{grid-template-columns:minmax(360px,.82fr) minmax(0,1fr)}
.section h2,.page-hero h1{
  font-size:clamp(2.2rem, 4vw, 4.3rem);
  line-height:.96;
  letter-spacing:-.065em;
  margin:16px 0 18px;
}
.section p,.page-hero p{font-size:1.06rem;color:var(--muted-2)}
.section-dark p,.section-gradient p{color:#b7c8da}
.section-heading{max-width:760px;margin-bottom:34px}
.section-heading.centered{text-align:center;margin-inline:auto}
.section-heading.with-action{max-width:none;display:flex;align-items:end;justify-content:space-between;gap:28px}
.section-heading.with-action>div{max-width:730px}
.check-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:24px}
.check-list span{
  position:relative;
  padding:12px 14px 12px 38px;
  background:#fff;
  border:1px solid rgba(6,17,31,.08);
  border-radius:14px;
  font-weight:850;
  color:#20364f;
  box-shadow:0 10px 28px rgba(3,14,28,.05);
}
.section-dark .check-list span,.section-gradient .check-list span{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.1);color:#fff}
.check-list span::before{
  content:"";
  position:absolute;
  left:14px;
  top:50%;
  width:11px;height:11px;
  border-radius:50%;
  transform:translateY(-50%);
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
}
.stacked-cards{display:grid;gap:16px}
.stacked-cards article,.card-list article,.module-stack-card,.pricing-summary-card,.implementation-card,.contact-card,.discovery-card{
  border:1px solid rgba(6,17,31,.09);
  background:rgba(255,255,255,.82);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
.stacked-cards article span,.module-card span,.price-card-top span,.module-detail-card .module-tag,.module-stack-card span,.pricing-summary-card span,.implementation-card span,.contact-card span,.sandbox-login-card span{
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:950;
  color:#147a69;
}
.stacked-cards h3,.card-list h3{font-size:1.55rem;letter-spacing:-.04em;margin:8px 0 8px}
.stacked-cards .accent-card{
  margin-left:36px;
  background:linear-gradient(135deg,#06111f,#102a46);
  color:#fff;
  border-color:rgba(255,255,255,.12);
}
.stacked-cards .accent-card p{color:#b7c8da}

.core-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.core-grid article{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.11);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 18px 55px rgba(0,0,0,.16);
}
.icon-chip{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#06111f;
  font-weight:950;
  margin-bottom:18px;
}
.core-grid h3,.module-card h3,.module-detail-card h3,.price-card h3{letter-spacing:-.04em;font-size:1.35rem;margin-bottom:8px}
.core-grid p{font-size:.96rem}

.module-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.module-card{
  display:flex;
  flex-direction:column;
  min-height:250px;
  border:1px solid rgba(6,17,31,.09);
  background:#fff;
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 16px 42px rgba(3,14,28,.07);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.module-card:hover{transform:translateY(-5px);box-shadow:0 22px 58px rgba(3,14,28,.12);border-color:rgba(32,184,255,.32)}
.module-card.featured{
  color:#fff;
  background:linear-gradient(135deg,#07101d,#123456);
  border-color:rgba(255,255,255,.12);
}
.module-card.featured p{color:#c4d4e5}
.module-card.featured span{color:#caffef}
.module-card strong{margin-top:auto;color:#07101d}
.module-card.featured strong{color:var(--brand)}

.sandbox-card{
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  padding:18px;
  background:rgba(255,255,255,.08);
  box-shadow:var(--shadow-strong);
}
.sandbox-card-top{display:flex;gap:10px;align-items:center;padding:4px 6px 16px;color:#d9ebff;font-weight:900}
.sandbox-card-top strong{margin-left:auto;color:var(--brand)}
.status-dot{width:10px;height:10px;border-radius:50%;background:var(--brand);box-shadow:0 0 0 7px rgba(84,242,194,.13)}
.sandbox-screen{background:#081728;border-radius:24px;padding:18px;min-height:320px;border:1px solid rgba(255,255,255,.09)}
.mini-window-row{display:flex;gap:8px;margin-bottom:18px}
.mini-window-row span{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.3)}
.sandbox-menu{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:10px;margin-bottom:16px}
.sandbox-menu span{height:34px;border-radius:999px;background:rgba(255,255,255,.08)}
.sandbox-menu span.active{background:linear-gradient(135deg,var(--brand),var(--brand-2))}
.sandbox-panels{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:16px}
.sandbox-panels article{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.09);border-radius:16px;padding:14px}
.sandbox-panels strong{display:block;color:#9fb4c8;font-size:.78rem}
.sandbox-panels span{display:block;font-size:1.8rem;font-weight:950}
.sandbox-lines{display:grid;gap:10px}
.sandbox-lines span{height:34px;border-radius:12px;background:rgba(255,255,255,.07)}
.center-note{text-align:center;max-width:860px;margin:22px auto 0;color:var(--muted-2)!important}

.pricing-cards{display:grid;gap:20px}
.pricing-cards.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.price-card{
  border:1px solid rgba(6,17,31,.1);
  border-radius:var(--radius);
  padding:30px;
  background:#fff;
  box-shadow:var(--shadow);
}
.price-card.highlighted{
  color:#fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(84,242,194,.22), transparent 18rem),
    linear-gradient(135deg,#06111f,#123456);
  border-color:rgba(255,255,255,.12);
}
.price-card.highlighted p,.price-card.highlighted li{color:#bfd0e1}
.price-card-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:22px}
.price-card-top strong{
  padding:7px 10px;
  border-radius:999px;
  background:rgba(84,242,194,.14);
  color:#147a69;
  font-size:.75rem;
}
.price-card.highlighted .price-card-top span{color:#caffef}
.price-card.highlighted .price-card-top strong{color:#06111f;background:linear-gradient(135deg,var(--brand),var(--brand-2))}
.price-card h3{font-size:1.9rem}
.price{
  font-size:clamp(2.3rem,4vw,3.5rem)!important;
  letter-spacing:-.06em;
  font-weight:950;
  color:#06111f!important;
  margin:4px 0 14px;
}
.price-card.highlighted .price{color:#fff!important}
.price span{font-size:1rem;letter-spacing:0;color:var(--muted-2);font-weight:850}
.price-card ul{padding-left:20px;color:var(--muted-2)}
.price-card li{margin-bottom:9px}

.flow{display:grid;grid-template-columns:1fr 42px 1fr 42px 1fr 42px 1fr;align-items:center;gap:8px}
.flow article{
  min-height:230px;
  padding:24px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.07);
}
.flow article span,.timeline article span{display:grid;place-items:center;width:40px;height:40px;border-radius:13px;background:linear-gradient(135deg,var(--brand),var(--brand-2));color:#06111f;font-weight:950;margin-bottom:16px}
.flow-line{height:2px;background:linear-gradient(90deg,rgba(84,242,194,.25),rgba(32,184,255,.8));border-radius:999px}
.faq-wrap{display:grid;grid-template-columns:minmax(0,.75fr) minmax(400px,1fr);gap:54px}
.faq-list{display:grid;gap:12px}
details{
  border:1px solid rgba(6,17,31,.09);
  background:#fff;
  border-radius:18px;
  padding:0 18px;
  box-shadow:0 12px 30px rgba(3,14,28,.05);
}
summary{
  cursor:pointer;
  list-style:none;
  font-weight:950;
  padding:18px 0;
}
summary::-webkit-details-marker{display:none}
details p{padding-bottom:18px;margin:0;color:var(--muted-2);font-size:.98rem!important}

.final-cta{
  padding:74px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(84,242,194,.20), transparent 26rem),
    radial-gradient(circle at 90% 40%, rgba(32,184,255,.20), transparent 26rem),
    linear-gradient(135deg,#06111f,#102a46);
  color:#fff;
}
.final-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:34px}
.final-cta h2{font-size:clamp(2rem,4vw,3.7rem);line-height:1;letter-spacing:-.06em;margin:14px 0 12px}
.final-cta p{color:#bdd0e2;max-width:720px}

.page-hero{
  padding:78px 0 64px;
  background:
    radial-gradient(circle at 12% 0%, rgba(84,242,194,.16), transparent 28rem),
    radial-gradient(circle at 92% 0%, rgba(32,184,255,.12), transparent 28rem);
}
.page-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(330px,.55fr);gap:44px;align-items:center}
.page-hero h1{max-width:830px}
.page-hero p{font-size:1.15rem;max-width:720px}
.module-stack-card,.pricing-summary-card,.implementation-card,.contact-card,.sandbox-login-card{align-self:stretch;display:flex;flex-direction:column;justify-content:center}
.module-stack-card h2,.pricing-summary-card h2,.implementation-card h2,.contact-card h2,.sandbox-login-card h2{letter-spacing:-.05em;font-size:2rem;line-height:1.05;margin:10px 0}
.module-stack-card ul{margin:16px 0 0;padding-left:20px;color:var(--muted-2)}
.module-stack-card li{margin-bottom:8px}

.module-detail{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.36fr);
  gap:28px;
  border:1px solid rgba(6,17,31,.1);
  border-radius:30px;
  padding:34px;
  background:#fff;
  box-shadow:var(--shadow);
}
.module-detail aside{
  border-radius:22px;
  background:linear-gradient(135deg,#06111f,#123456);
  color:#fff;
  padding:26px;
}
.module-detail aside span{color:#caffef;font-weight:950;text-transform:uppercase;font-size:.75rem;letter-spacing:.08em}
.module-detail aside strong{display:block;font-size:2rem;letter-spacing:-.05em;line-height:1.05;margin:12px 0}
.module-detail-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.module-detail-card{
  border:1px solid rgba(6,17,31,.1);
  background:#fff;
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 14px 38px rgba(3,14,28,.06);
  scroll-margin-top:100px;
}
.module-detail-card.featured{
  border-color:rgba(32,184,255,.4);
  box-shadow:0 24px 70px rgba(32,184,255,.16);
}
.module-detail-card ul{padding-left:20px;color:var(--muted-2)}
.module-detail-card li{margin-bottom:8px}
.module-detail-card strong{display:block;margin-top:18px;color:#07101d}

.table-card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  background:rgba(255,255,255,.07);
  padding:12px;
  overflow:auto;
  box-shadow:0 18px 60px rgba(0,0,0,.16);
}
.section:not(.section-dark) .table-card{
  background:#fff;
  border-color:rgba(6,17,31,.08);
  box-shadow:var(--shadow);
}
table{width:100%;border-collapse:collapse;min-width:540px}
th,td{text-align:left;padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.1)}
.section:not(.section-dark) th,.section:not(.section-dark) td{border-bottom:1px solid rgba(6,17,31,.08)}
th{font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted)}
td{font-weight:800}
.section-dark td{color:#ecf6ff}

.calculator{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.42fr);
  gap:24px;
  align-items:start;
}
.calculator-panel,.calculator-result{
  border:1px solid rgba(6,17,31,.1);
  background:#fff;
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
.calculator-panel h3{margin:24px 0 12px;font-size:1.1rem}
.calculator-panel h3:first-child{margin-top:0}
.choice-card{
  display:flex;align-items:center;gap:12px;
  border:1px solid rgba(6,17,31,.1);
  border-radius:18px;
  padding:14px;
  margin-bottom:10px;
  cursor:pointer;
}
.choice-card:has(input:checked){border-color:rgba(32,184,255,.55);background:#effaff}
.choice-card input{accent-color:#20b8ff}
.choice-card strong{display:block}
.choice-card small{display:block;color:var(--muted-2);font-weight:750}
.select-input{
  width:100%;
  border:1px solid rgba(6,17,31,.13);
  border-radius:16px;
  padding:13px 14px;
  background:#fff;
  color:#07101d;
  font-weight:800;
}
.module-checks{display:grid;gap:10px}
.module-checks label{
  display:flex;align-items:center;gap:10px;justify-content:space-between;
  border:1px solid rgba(6,17,31,.09);
  border-radius:16px;
  padding:12px 14px;
  background:#fbfdff;
  font-weight:850;
}
.module-checks input{margin-right:4px;accent-color:#20b8ff}
.module-checks span{margin-left:auto;color:var(--muted-2);font-size:.88rem}
.calculator-result{
  position:sticky;
  top:calc(var(--header-h) + 24px);
  color:#fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(84,242,194,.18), transparent 18rem),
    linear-gradient(135deg,#06111f,#123456);
  border-color:rgba(255,255,255,.12);
}
.calculator-result>span{color:#caffef;text-transform:uppercase;letter-spacing:.09em;font-size:.76rem;font-weight:950}
.calculator-result h3{font-size:1.6rem;letter-spacing:-.04em;margin:10px 0 18px}
.result-row{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(255,255,255,.1);padding:16px 0}
.result-row span{color:#b7c8da}
.result-row strong{font-size:2rem;letter-spacing:-.05em}
.selected-list{display:flex;flex-wrap:wrap;gap:8px;margin:18px 0}
.selected-list span{padding:7px 10px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.11);border-radius:999px;color:#dcecff;font-size:.82rem;font-weight:800}
.calculator-result p{font-size:.84rem;color:#aabed2}

.compare-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.compare-grid article{
  border:1px solid rgba(6,17,31,.1);
  background:#fff;
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}
.compare-grid article span{color:#147a69;font-weight:950;text-transform:uppercase;font-size:.76rem;letter-spacing:.09em}
.compare-grid h3{font-size:1.7rem;letter-spacing:-.04em;margin:10px 0}
.compare-grid ul{padding-left:20px;color:var(--muted-2)}
.compare-grid strong{display:block;margin-top:20px}
.requirement-list,.security-grid{display:grid;gap:12px}
.requirement-list article,.security-grid article{
  display:grid;
  gap:4px;
  padding:16px 18px;
  border:1px solid rgba(6,17,31,.1);
  background:#fff;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(3,14,28,.05);
}
.requirement-list article strong,.security-grid article strong{letter-spacing:-.02em}
.requirement-list article span,.security-grid article span{color:var(--muted-2)}
.requirement-list.compact article{padding:14px 16px}
.timeline{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
.timeline article{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  padding:22px;
}
.timeline h3{font-size:1.18rem;letter-spacing:-.03em}

.sandbox-login-card{
  border:1px solid rgba(6,17,31,.1);
  border-radius:var(--radius);
  padding:28px;
  background:linear-gradient(135deg,#06111f,#123456);
  color:#fff;
  box-shadow:var(--shadow-strong);
}
.sandbox-login-card p{color:#b7c8da}
.sandbox-login-card strong{color:var(--brand)}
.sandbox-app{
  border:1px solid rgba(6,17,31,.1);
  border-radius:32px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
}
.sandbox-header{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  padding:28px;
  border-bottom:1px solid rgba(6,17,31,.08);
}
.sandbox-header h2{font-size:2rem;margin:10px 0 0;letter-spacing:-.04em}
.sandbox-pills{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.sandbox-pills span{
  padding:8px 10px;
  border-radius:999px;
  background:#eef8ff;
  color:#165376;
  font-weight:850;
  font-size:.8rem;
}
.sandbox-shell{
  display:grid;
  grid-template-columns:220px 1fr;
  min-height:600px;
}
.sandbox-nav{
  display:grid;
  align-content:start;
  gap:8px;
  padding:18px;
  background:#07101d;
}
.sandbox-nav button{
  border:0;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  color:#bed2e6;
  text-align:left;
  padding:12px 14px;
  font-weight:850;
}
.sandbox-nav button.active,.sandbox-nav button:hover{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#06111f;
}
.sandbox-content{padding:28px;background:#f6faff}
.sandbox-view-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:20px}
.sandbox-view-head h3{font-size:2rem;letter-spacing:-.05em;margin:0 0 6px}
.sandbox-view-head p{color:var(--muted-2);margin:0}
.sandbox-badge{display:inline-flex;padding:8px 10px;border-radius:999px;background:#fff;border:1px solid rgba(6,17,31,.09);font-weight:850;color:#147a69}
.sandbox-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-bottom:18px}
.sandbox-metrics article{
  background:#fff;
  border:1px solid rgba(6,17,31,.08);
  border-radius:20px;
  padding:18px;
  box-shadow:0 10px 28px rgba(3,14,28,.05);
}
.sandbox-metrics span{display:block;color:var(--muted-2);font-size:.84rem;font-weight:850}
.sandbox-metrics strong{display:block;font-size:2rem;letter-spacing:-.05em}
.sandbox-panel-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,.38fr);gap:18px}
.demo-table-card,.demo-side-card{
  background:#fff;
  border:1px solid rgba(6,17,31,.08);
  border-radius:22px;
  padding:18px;
  box-shadow:0 10px 28px rgba(3,14,28,.05);
}
.demo-table-card h4,.demo-side-card h4{margin:0 0 12px;font-size:1.05rem}
.demo-row{display:grid;grid-template-columns:1fr auto auto;gap:14px;align-items:center;padding:12px 0;border-bottom:1px solid rgba(6,17,31,.08)}
.demo-row:last-child{border-bottom:0}
.demo-row strong{font-size:.94rem}
.demo-row span{color:var(--muted-2);font-size:.88rem}
.demo-status{padding:6px 9px;border-radius:999px;background:#eef8ff;color:#165376!important;font-weight:850}
.demo-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.demo-actions button{
  border:1px solid rgba(6,17,31,.09);
  background:#fff;
  border-radius:999px;
  padding:9px 12px;
  font-weight:850;
}
.demo-actions button:hover{background:#eef8ff}
.form-grid-demo{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.form-grid-demo label{display:grid;gap:6px;color:#23344a;font-weight:850;font-size:.9rem}
.form-grid-demo input,.form-grid-demo select{
  border:1px solid rgba(6,17,31,.12);
  border-radius:12px;
  padding:10px;
  background:#fbfdff;
}
.audit-list{display:grid;gap:10px}
.audit-list div{display:grid;grid-template-columns:auto 1fr auto;gap:10px;align-items:center;border:1px solid rgba(6,17,31,.08);background:#fff;border-radius:16px;padding:12px}
.audit-list em{width:11px;height:11px;border-radius:50%;background:var(--brand);font-style:normal}
.audit-list span{color:var(--muted-2);font-size:.85rem}

.contact-points{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}
.contact-points span{
  padding:9px 11px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(6,17,31,.08);
  font-weight:850;
  box-shadow:0 10px 28px rgba(3,14,28,.05);
}
.contact-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.42fr);gap:28px;align-items:start}
.enquiry-form{
  display:grid;gap:16px;
  border:1px solid rgba(6,17,31,.1);
  background:#fff;
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}
.enquiry-form label{display:grid;gap:7px;font-weight:850;color:#20364f}
.enquiry-form input,.enquiry-form select,.enquiry-form textarea{
  width:100%;
  border:1px solid rgba(6,17,31,.13);
  border-radius:15px;
  padding:13px 14px;
  background:#fbfdff;
  color:#07101d;
}
.enquiry-form textarea{resize:vertical}
.enquiry-form input:focus,.enquiry-form select:focus,.enquiry-form textarea:focus,.select-input:focus{
  outline:3px solid rgba(32,184,255,.18);
  border-color:rgba(32,184,255,.55);
}
.form-note{font-size:.88rem!important;color:var(--muted-2)!important}
.form-note code{background:#eef4fb;border-radius:6px;padding:2px 5px}
.legal-content{
  max-width:860px;
  background:#fff;
  border:1px solid rgba(6,17,31,.08);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
}
.legal-content h2{font-size:1.8rem;letter-spacing:-.04em;margin-top:26px}
.legal-content h2:first-child{margin-top:0}
.legal-content p{color:var(--muted-2)}

.site-footer{
  padding:64px 0 28px;
  background:#04101d;
  color:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(280px,1.4fr) repeat(3,minmax(140px,.62fr));
  gap:32px;
}
.site-footer .brand-copy span{color:#9fb4c8}
.footer-brand p{color:#b2c6da;max-width:470px}
.footer-badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:18px}
.footer-badges span{font-size:.76rem;font-weight:850;padding:7px 9px;border-radius:999px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);color:#c4d4e5}
.site-footer h3{font-size:.86rem;text-transform:uppercase;letter-spacing:.1em;color:#9fb4c8}
.site-footer a:not(.brand){display:block;color:#dcecff;margin:9px 0;font-weight:800}
.site-footer a:not(.brand):hover{color:var(--brand)}
.small-print{font-size:.82rem;color:#9fb4c8}
.footer-bottom{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:40px;
  padding-top:20px;
  color:#9fb4c8;
  font-size:.84rem;
}
.footer-bottom span:last-child{max-width:720px;text-align:right}
.toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%) translateY(20px);
  background:#06111f;
  color:#fff;
  padding:13px 16px;
  border-radius:999px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  z-index:500;
  font-weight:850;
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

@media (max-width:1060px){
  .hero-grid,.page-hero-grid,.split-section,.split-section.reverse,.calculator,.contact-grid,.faq-wrap{grid-template-columns:1fr}
  .hero h1{font-size:clamp(3rem, 10vw, 5.7rem)}
  .hero-visual{max-width:720px;margin-inline:auto;width:100%}
  .core-grid,.module-grid,.module-detail-grid,.timeline{grid-template-columns:repeat(2,minmax(0,1fr))}
  .flow{grid-template-columns:1fr}
  .flow-line{height:34px;width:2px;margin:auto;background:linear-gradient(180deg,rgba(84,242,194,.25),rgba(32,184,255,.8))}
  .calculator-result{position:static}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:860px){
  .nav-toggle{display:block}
  .site-nav{
    position:fixed;
    top:calc(var(--header-h) + 10px);
    left:20px;
    right:20px;
    display:grid;
    border-radius:22px;
    padding:14px;
    background:#fff;
    box-shadow:var(--shadow-strong);
    transform-origin:top;
    transform:scale(.98) translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
  }
  .site-nav.is-open{opacity:1;pointer-events:auto;transform:scale(1) translateY(0)}
  .site-nav a{border-radius:14px;padding:12px 14px}
  .hero{padding-top:58px}
  .hero-proof,.metric-row,.sandbox-panels,.pricing-cards.two,.compare-grid,.sandbox-metrics,.sandbox-panel-grid,.module-detail{grid-template-columns:1fr}
  .sandbox-shell{grid-template-columns:1fr}
  .sandbox-nav{grid-template-columns:repeat(2,1fr)}
  .sandbox-header,.section-heading.with-action,.final-cta-inner{display:grid}
  .footer-bottom{display:grid}
  .footer-bottom span:last-child{text-align:left}
}
@media (max-width:620px){
  .container{width:min(100% - 28px,var(--container))}
  :root{--header-h:70px}
  .brand-mark{width:40px;height:40px}
  .brand-copy span{display:none}
  .hero h1{letter-spacing:-.07em}
  .portal-frame{grid-template-columns:1fr}
  .portal-sidebar{display:flex;gap:8px;overflow:auto;border-right:0;border-bottom:1px solid rgba(255,255,255,.09)}
  .portal-logo{display:none}
  .portal-sidebar button{min-width:max-content}
  .portal-table div,.demo-row{grid-template-columns:1fr}
  .check-list,.core-grid,.module-grid,.module-detail-grid,.timeline,.footer-grid,.form-grid-demo{grid-template-columns:1fr}
  .stacked-cards .accent-card{margin-left:0}
  .section{padding:70px 0}
  .page-hero{padding:58px 0 48px}
  .footer-grid{gap:22px}
}

/* Product-site refresh: Sage 200 inspired, calmer, denser, and more software-led. */
:root{
  --bg:#071a16;
  --bg-2:#0e2a24;
  --ink:#13211d;
  --text:#f7fbf8;
  --muted:#6b7c75;
  --muted-2:#6a7a73;
  --surface:#ffffff;
  --surface-2:#f4f8f5;
  --surface-3:#eaf2ed;
  --line:rgba(19,33,29,.12);
  --line-dark:rgba(255,255,255,.14);
  --brand:#00d639;
  --brand-2:#00a376;
  --brand-3:#146b59;
  --accent:#f6b445;
  --success:#00c866;
  --warning:#f6b445;
  --danger:#d95757;
  --shadow:0 16px 44px rgba(12,31,26,.10);
  --shadow-strong:0 24px 70px rgba(4,20,16,.30);
  --radius:8px;
  --radius-sm:8px;
  --container:1200px;
}

body{
  color:var(--ink);
  background:
    linear-gradient(180deg,#f6faf7 0%,#ffffff 28%,#f2f7f4 100%);
  font-size:16px;
}

body::before{
  background-image:
    linear-gradient(rgba(19,33,29,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,33,29,.028) 1px, transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(to bottom, black 0%, transparent 62%);
}

.site-header{
  background:rgba(248,252,249,.88);
  border-bottom:1px solid rgba(19,33,29,.10);
}
.site-header.is-scrolled{
  background:rgba(255,255,255,.94);
  box-shadow:0 12px 34px rgba(12,31,26,.09);
}
.header-inner{gap:18px}
.brand-mark{
  position:relative;
  width:42px;
  height:42px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--brand),#7df08e);
  box-shadow:0 12px 24px rgba(0,163,118,.20);
  filter:none;
}
.brand-mark svg{display:none}
.brand-mark::before{
  content:"SA";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#052219;
  font-size:.88rem;
  font-weight:950;
  letter-spacing:-.04em;
}
.brand-copy strong{letter-spacing:-.02em;color:#10241d}
.brand-copy span{color:#5e7169}

.site-nav{
  border-radius:8px;
  background:rgba(255,255,255,.72);
  border-color:rgba(19,33,29,.10);
  box-shadow:0 10px 28px rgba(12,31,26,.06);
}
.site-nav a{
  border-radius:6px;
  color:#315048;
  letter-spacing:0;
}
.site-nav a:hover{background:#edf6f0;color:#0f231d}
.site-nav a.active,
.site-nav a[aria-current="page"]{
  background:#09251d;
  color:#fff;
}
.site-nav .nav-cta{
  background:var(--brand);
  color:#052219;
  box-shadow:none;
}
.site-nav .nav-cta:hover{background:#7df08e}
.nav-toggle{border-radius:8px;background:#09251d}

.btn{
  border-radius:8px;
  letter-spacing:0;
  box-shadow:none;
}
.btn-primary{
  background:var(--brand);
  color:#052219;
  box-shadow:0 14px 30px rgba(0,214,57,.22);
}
.btn-primary:hover{
  background:#72ef8a;
  box-shadow:0 18px 38px rgba(0,214,57,.26);
}
.btn-secondary{
  background:#fff;
  color:#11251f;
  border-color:rgba(19,33,29,.14);
  box-shadow:0 12px 28px rgba(12,31,26,.08);
}
.btn-secondary:hover{border-color:rgba(0,163,118,.42);background:#f8fcf9}
.btn-ghost{
  color:#fff;
  border-color:rgba(255,255,255,.25);
  background:rgba(255,255,255,.10);
}

.hero{
  min-height:720px;
  padding:104px 0 90px;
  background:
    linear-gradient(125deg,rgba(4,29,22,.97) 0%,rgba(7,47,36,.96) 48%,rgba(17,92,74,.92) 100%),
    linear-gradient(90deg,#071a16,#0e2a24);
  color:#f7fbf8;
}
.hero::after{
  inset:auto 0 0 0;
  height:1px;
  background:rgba(255,255,255,.16);
}
.hero-grid{
  grid-template-columns:minmax(0,.92fr) minmax(430px,.88fr);
  gap:42px;
}
.hero-copy{position:relative;z-index:2}
.hero .eyebrow,
.section-dark .section-kicker,
.section-gradient .section-kicker,
.final-cta .section-kicker{
  color:#d9ffe1;
  background:rgba(0,214,57,.12);
  border-color:rgba(125,240,142,.30);
}
.eyebrow,.section-kicker{
  border-radius:999px;
  color:#0a6c35;
  background:#e9f8ed;
  border-color:#cfeedd;
  letter-spacing:.07em;
}
.pulse-dot{background:var(--brand);box-shadow:0 0 0 5px rgba(0,214,57,.16)}
.hero h1{
  font-size:clamp(3.1rem, 6.6vw, 6.2rem);
  max-width:820px;
  letter-spacing:-.06em;
}
.hero-lead{
  max-width:660px;
  color:#d7e8df;
}
.licence-note{color:#b6c8bf}
.hero-proof div{
  border-radius:8px;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
}
.hero-proof strong{color:#f7fff9}
.hero-proof span{color:#c3d6cd}

.hero-visual{
  position:relative;
  z-index:1;
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset:34px -8px -20px 26px;
  background:
    linear-gradient(135deg,rgba(0,214,57,.28),rgba(246,180,69,.16));
  border-radius:8px;
  transform:rotate(2deg);
}
.floating-card{animation:floatCard 7s ease-in-out infinite}
@keyframes floatCard{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.browser-shell{
  position:relative;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.18);
  background:#f8fcf9;
  color:#12231e;
  box-shadow:0 30px 90px rgba(0,0,0,.32);
  backdrop-filter:none;
}
.browser-bar{
  background:#ffffff;
  border-bottom:1px solid rgba(19,33,29,.10);
  padding:13px 15px;
}
.browser-bar span{background:#cfdad4}
.browser-bar span:first-child{background:#f35f5f}
.browser-bar span:nth-child(2){background:#f2bd48}
.browser-bar span:nth-child(3){background:#00c866}
.browser-bar div{
  color:#61746c;
  background:#f1f6f3;
  border:1px solid rgba(19,33,29,.08);
  border-radius:6px;
  padding:4px 10px;
}
.portal-frame{
  min-height:458px;
  grid-template-columns:148px 1fr;
}
.portal-sidebar{
  background:#0a241d;
  border-right:1px solid rgba(255,255,255,.10);
}
.portal-logo{
  border-radius:8px;
  background:var(--brand);
  color:#052219;
}
.portal-sidebar button{border-radius:6px;color:#bad0c7}
.portal-sidebar button.active,
.portal-sidebar button:hover{
  background:var(--brand);
  color:#052219;
}
.portal-main{background:#f4f8f5;color:#13211d;padding:22px}
.portal-top span{color:#6a7a73}
.portal-top strong{color:#13211d}
.status-pill{
  border-color:#bdebc9;
  background:#e7f9eb;
  color:#0b7035!important;
}
.metric-row article,
.demo-chart,
.portal-table div{
  background:#fff;
  border-color:rgba(19,33,29,.10);
  border-radius:8px;
}
.metric-row span,.portal-table span{color:#6a7a73}
.demo-chart{
  background:
    linear-gradient(180deg,#ffffff,#f7fbf8);
  box-shadow:inset 0 0 0 1px rgba(19,33,29,.02);
}
.demo-chart span{
  border-radius:6px 6px 2px 2px;
  background:linear-gradient(180deg,#00d639,#00a376);
}

.logo-strip{
  background:#fff;
  border-block:1px solid rgba(19,33,29,.09);
}
.logo-strip .container{justify-content:space-between}
.logo-strip strong{color:#17342b}

.section{padding:88px 0}
.section-muted{
  background:linear-gradient(180deg,#f4f8f5,#eef5f0);
}
.section-dark{
  background:linear-gradient(135deg,#071a16 0%,#0d2d24 62%,#164d40 100%);
  color:#f7fbf8;
}
.section-gradient{
  background:linear-gradient(135deg,#0a241d 0%,#146b59 100%);
}
.section h2,.page-hero h1{
  letter-spacing:-.052em;
  line-height:1.01;
}
.section p,.page-hero p{color:#60736b}
.section-dark p,.section-gradient p{color:#c6d9d0}
.section-heading{margin-bottom:30px}

.stacked-cards article,
.card-list article,
.module-stack-card,
.pricing-summary-card,
.implementation-card,
.contact-card,
.discovery-card,
.module-card,
.price-card,
.module-detail,
.module-detail-card,
.calculator-panel,
.calculator-result,
.compare-grid article,
.requirement-list article,
.security-grid article,
.timeline article,
.sandbox-login-card,
.sandbox-app,
.demo-table-card,
.demo-side-card,
.enquiry-form,
.legal-content,
details,
.sandbox-card,
.table-card{
  border-radius:8px;
}
.stacked-cards article,
.card-list article,
.module-stack-card,
.pricing-summary-card,
.implementation-card,
.contact-card,
.discovery-card,
.module-card,
.price-card,
.module-detail,
.module-detail-card,
.calculator-panel,
.compare-grid article,
.requirement-list article,
.security-grid article,
.enquiry-form,
.legal-content,
details{
  background:#fff;
  border-color:rgba(19,33,29,.10);
  box-shadow:var(--shadow);
}
.stacked-cards .accent-card,
.module-card.featured,
.price-card.highlighted,
.module-detail aside,
.calculator-result,
.sandbox-login-card{
  background:linear-gradient(135deg,#08221b,#145342);
  border-color:rgba(255,255,255,.14);
}
.module-card.featured span,
.price-card.highlighted .price-card-top span,
.module-detail aside span,
.calculator-result>span,
.sandbox-login-card span{
  color:#d9ffe1;
}
.module-card:hover{
  transform:translateY(-4px);
  border-color:rgba(0,163,118,.30);
  box-shadow:0 20px 46px rgba(12,31,26,.13);
}
.module-card strong,
.module-detail-card strong{
  color:#0a6c35;
}
.module-card.featured strong{color:#7df08e}
.icon-chip,
.flow article span,
.timeline article span{
  border-radius:8px;
  background:var(--brand);
  color:#052219;
}

.check-list span,
.contact-points span,
.footer-badges span,
.sandbox-pills span,
.selected-list span,
.price-card-top strong,
.sandbox-badge{
  border-radius:999px;
}
.check-list span{
  background:#fff;
  border-color:rgba(19,33,29,.10);
  color:#203c33;
}
.check-list span::before{background:var(--brand)}
.core-grid article,
.flow article,
.timeline article{
  border-radius:8px;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
}
.flow-line{background:linear-gradient(90deg,rgba(0,214,57,.22),rgba(0,214,57,.80))}

.price-card-top strong{
  background:#e6f9ea;
  color:#0a6c35;
}
.price{color:#13211d!important}
.price span{color:#6a7a73}
.choice-card,
.module-checks label,
.select-input,
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.demo-actions button,
.sandbox-nav button{
  border-radius:8px;
}
.choice-card:has(input:checked){background:#ebfaef;border-color:#86e99b}
.choice-card input,
.module-checks input{accent-color:#00a376}
.module-checks label{
  align-items:flex-start;
  gap:10px;
}
.module-checks span{
  text-align:right;
  min-width:max-content;
}
.calculator-result{
  background:linear-gradient(135deg,#071a16,#145342);
  color:#fff;
}
.result-row strong{color:#fff}

.page-hero{
  padding:82px 0 66px;
  background:
    linear-gradient(180deg,#f6faf7 0%,#ffffff 100%);
  border-bottom:1px solid rgba(19,33,29,.08);
}
.page-hero-grid{align-items:stretch}
.module-stack-card,
.pricing-summary-card,
.implementation-card,
.contact-card{
  background:linear-gradient(180deg,#ffffff,#f7fbf8);
  border-top:4px solid var(--brand);
}

.sandbox-card{
  background:#0a241d;
  border-color:rgba(255,255,255,.14);
}
.sandbox-screen{border-radius:8px;background:#f4f8f5}
.sandbox-card-top{color:#f7fbf8}
.sandbox-menu span,
.sandbox-panels article,
.sandbox-lines span{
  border-radius:8px;
}
.sandbox-menu span{background:#dce9e0}
.sandbox-menu span.active{background:var(--brand)}
.sandbox-panels article{
  background:#fff;
  border-color:rgba(19,33,29,.10);
  color:#13211d;
}
.sandbox-panels strong{color:#60736b}
.sandbox-lines span{background:#dce9e0}
.sandbox-app{overflow:hidden}
.sandbox-header{background:#fff}
.sandbox-shell{grid-template-columns:224px 1fr}
.sandbox-nav{background:#0a241d}
.sandbox-nav button.active,
.sandbox-nav button:hover{
  background:var(--brand);
  color:#052219;
}
.sandbox-content{background:#f4f8f5}
.sandbox-metrics article,
.demo-table-card,
.demo-side-card{
  border-radius:8px;
  border-color:rgba(19,33,29,.10);
  box-shadow:0 10px 24px rgba(12,31,26,.07);
}
.demo-status{background:#e8f8ec;color:#0a6c35!important;border-radius:999px}
.audit-list div{border-radius:8px}

.table-card{
  border-color:rgba(255,255,255,.14);
}
th{color:#7f9189}
.section:not(.section-dark) .table-card{border-color:rgba(19,33,29,.10)}

.final-cta{
  background:linear-gradient(135deg,#071a16 0%,#145342 100%);
}
.site-footer{
  background:#071a16;
}
.site-footer h3{color:#9db5aa}
.site-footer a:not(.brand){color:#dfeee7}
.site-footer a:not(.brand):hover{color:#7df08e}
.footer-bottom{color:#9db5aa}

@media (max-width:1060px){
  .hero{min-height:auto;padding:76px 0 72px}
  .hero-grid{grid-template-columns:1fr}
  .hero-copy{max-width:860px}
  .hero-visual{max-width:780px}
}
@media (max-width:860px){
  .site-nav{
    border-radius:8px;
    background:#fff;
  }
  .site-nav a{border-radius:6px}
  .sandbox-shell{grid-template-columns:1fr}
  .module-checks label{
    display:grid;
    grid-template-columns:auto 1fr;
  }
  .module-checks span{
    grid-column:2;
    margin-left:0;
    text-align:left;
  }
}

.module-expand{
  padding:0;
  overflow:hidden;
}
.module-expand summary{
  position:relative;
  display:grid;
  align-items:start;
  gap:10px;
  padding:24px;
  cursor:pointer;
  list-style:none;
}
.module-expand summary::-webkit-details-marker{
  display:none;
}
.module-expand summary h3,
.module-expand summary p,
.module-expand summary strong{
  margin:0;
}
.module-expand summary h3{
  padding-right:30px;
}
.module-expand summary p{
  color:var(--muted-2);
  font-size:1rem;
  font-weight:700;
}
.module-expand summary > strong{
  color:#0a6c35;
  font-weight:950;
  margin-top:4px;
}
.module-expand summary::after{
  content:"+";
  position:absolute;
  top:22px;
  right:24px;
  width:30px;
  height:30px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:#e6f9ea;
  color:#0a6c35;
  font-size:1.25rem;
  font-weight:950;
  line-height:1;
}
.module-expand[open] summary::after{
  content:"-";
  background:#0a6c35;
  color:#fff;
}
.summary-button{
  justify-self:start;
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 13px;
  border-radius:8px;
  background:#13211d;
  color:#fff;
  font-size:.86rem;
  font-weight:900;
  line-height:1;
}
.module-expand[open] .summary-button{
  font-size:0;
}
.module-expand[open] .summary-button::after{
  content:"Hide details";
  font-size:.86rem;
}
.module-expand-body{
  border-top:1px solid rgba(19,33,29,.10);
  padding:18px 24px 24px;
  background:linear-gradient(180deg,#fbfdfb 0%,#fff 100%);
}
.module-capability-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
  color:inherit;
}
.module-detail-card .module-capability-list li{
  margin:0;
  padding:14px;
  border:1px solid rgba(19,33,29,.09);
  border-radius:8px;
  background:#fff;
}
.module-capability-list strong{
  display:block;
  margin:0 0 5px;
  color:#13211d;
  font-size:.95rem;
}
.module-capability-list span{
  display:block;
  color:#60736b;
  font-size:.93rem;
  line-height:1.55;
}
.module-expand.featured summary::after{
  background:#caffef;
  color:#052219;
}
.module-expand.featured[open] summary::after,
.module-expand.featured .summary-button{
  background:var(--brand);
  color:#052219;
}

@media (max-width:620px){
  .module-expand summary{
    padding:20px;
  }
  .module-expand-body{
    padding:16px 20px 20px;
  }
  .summary-button{
    width:100%;
    justify-content:center;
  }
}
@media (max-width:620px){
  .hero{
    padding:54px 0 58px;
  }
  .hero h1{
    font-size:clamp(2.65rem, 13vw, 4.25rem);
    letter-spacing:-.05em;
  }
  .hero-proof{grid-template-columns:1fr}
  .portal-frame{grid-template-columns:1fr}
  .portal-sidebar{
    display:flex;
    align-items:center;
    padding:12px;
  }
  .browser-bar div{display:none}
  .section{padding:64px 0}
  .logo-strip .container{justify-content:center}
  .page-hero h1,
  .section h2{
    font-size:clamp(2rem, 10.5vw, 3rem);
    letter-spacing:-.04em;
  }
  .page-hero p,
  .section p{
    font-size:1rem;
  }
  .button-row,
  .hero-actions{
    align-items:stretch;
  }
  .button-row .btn,
  .hero-actions .btn{
    width:100%;
    min-height:58px;
  }
  .sandbox-login-card h2,
  .contact-card h2,
  .pricing-summary-card h2,
  .implementation-card h2,
  .module-stack-card h2{
    font-size:clamp(1.35rem, 8vw, 2rem);
    overflow-wrap:anywhere;
  }
  .sandbox-pills{
    justify-content:flex-start;
  }
  .sandbox-pills span{
    max-width:100%;
  }
  body{
    overflow-x:hidden;
  }
}
