:root{
  --ink:#0a1020;
  --navy:#07111f;
  --navy2:#0e1c31;
  --muted:#687386;
  --violet:#743cff;
  --blue:#2368ff;
  --pink:#ef2d88;
  --cyan:#00c7eb;
  --green:#44f39d;
  --red:#ff3047;
  --line:#e5e9f1;
  --card:#ffffff;
  --soft:#f5f7fb;
  --shadow:0 20px 55px rgba(21,32,59,.10);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.shell{
  width:min(1240px,calc(100% - 48px));
  margin:auto;
}


/* LIVE */

.live-strip{
  height:38px;
  display:flex;
  background:#0a1020;
  color:#fff;
  overflow:hidden;
  position:relative;
  z-index:50;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.live-badge{
  flex:0 0 auto;
  min-width:108px;
  display:flex;
  gap:9px;
  justify-content:center;
  align-items:center;
  background:var(--red);
  color:#fff;
  font-size:12px;
  font-weight:950;
  letter-spacing:.12em;
  z-index:2;
  box-shadow:12px 0 28px rgba(255,48,71,.25);
}

.live-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 0 rgba(255,255,255,.8);
  animation:livePulse 1.15s infinite;
}

@keyframes livePulse{
  0%{box-shadow:0 0 0 0 rgba(255,255,255,.75)}
  70%{box-shadow:0 0 0 7px rgba(255,255,255,0)}
  100%{box-shadow:0 0 0 0 rgba(255,255,255,0)}
}

.ticker-window{
  overflow:hidden;
  flex:1;
}

.ticker-track{
  height:100%;
  width:max-content;
  display:flex;
  align-items:center;
  gap:26px;
  padding-left:32px;
  font-size:12px;
  font-weight:750;
  color:#e8edf7;
  animation:ticker 42s linear infinite;
}

.ticker-track b{color:#7f8ba1}

@keyframes ticker{
  to{transform:translateX(-50%)}
}


/* HEADER */

.site-header{
  height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand img{
  width:225px;
  height:62px;
  object-fit:contain;
}

.studio-pill{
  margin-left:-15px;
  padding:6px 10px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(90deg,var(--pink),var(--violet));
  font-size:11px;
  font-weight:900;
}

nav{
  display:flex;
  gap:29px;
}

nav a{
  text-decoration:none;
  color:#20283a;
  font-size:13px;
  font-weight:800;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border:0;
  border-radius:11px;
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
}

.btn.primary{
  color:#fff;
  background:linear-gradient(90deg,var(--blue),var(--violet),var(--pink));
  box-shadow:0 12px 28px rgba(83,65,224,.22);
}

.btn.secondary{
  color:#24304b;
  border:1px solid #dce2ec;
  background:#fff;
}

.btn.small{padding:12px 18px}

.btn.white{
  color:#17233c;
  background:#fff;
}


/* HERO */

.hero{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:56px;
  align-items:center;
  padding:46px 0 88px;
}

.eyebrow{
  display:inline-flex;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid #dad0ff;
  color:#6636e5;
  background:#fff;
  font-size:11px;
  font-weight:950;
  letter-spacing:.05em;
}

h1{
  margin:21px 0 24px;
  font-size:61px;
  line-height:1.01;
  letter-spacing:-.05em;
}

.gradient-text{
  background:linear-gradient(90deg,var(--pink),var(--violet),var(--blue),var(--cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  max-width:610px;
  color:#475168;
  font-size:18px;
  line-height:1.65;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin:29px 0 26px;
}

.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  color:#556178;
  font-size:12px;
  font-weight:800;
}


/* HERO MACHINE */

.hero-machine{
  overflow:hidden;
  color:#eaf2ff;
  border-radius:21px;
  background:
    radial-gradient(circle at 90% 0,rgba(66,68,255,.28),transparent 35%),
    linear-gradient(145deg,#07111f,#0b1729 65%,#111d35);
  box-shadow:0 32px 75px rgba(13,26,55,.28);
}

.machine-head{
  height:61px;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #223047;
  font-size:11px;
  font-weight:900;
}

.machine-head i{
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#42f599;
  box-shadow:0 0 13px #42f599;
  margin-right:8px;
}

.machine-head strong{
  color:#58f2a4;
  font-size:10px;
}

.machine-body{padding:25px}

.intent-box{
  padding:18px;
  border:1px solid #273850;
  border-radius:13px;
  background:#111f32;
}

.intent-box small{
  color:#8fa2bd;
  font-weight:900;
}

.intent-box p{
  margin:9px 0 0;
  color:#fff;
  line-height:1.5;
}

.machine-flow{
  display:grid;
  gap:9px;
  margin:18px 0;
}

.machine-flow div{
  display:grid;
  grid-template-columns:35px 1fr auto;
  align-items:center;
  padding:11px 13px;
  border:1px solid #25344b;
  border-radius:10px;
  background:#0e1a2b;
  font-size:12px;
}

.machine-flow b{color:#8190a9}
.machine-flow em{
  color:#51f4a1;
  font-style:normal;
}

.machine-output{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.machine-output span,
.machine-output strong{
  padding:11px;
  border-radius:8px;
  text-align:center;
  font-size:10px;
  letter-spacing:.04em;
}

.machine-output span{background:#722bff}
.machine-output strong{
  color:#b9c8de;
  background:#14243a;
}


/* GENERIC SECTIONS */

.section{
  padding:90px 0;
}

.section-head{
  max-width:760px;
  margin:0 auto 44px;
  text-align:center;
}

.section-head h2,
.difference h2,
.embed-copy h2,
.demo-copy h2,
.partner-cta h2{
  margin:15px 0 15px;
  font-size:43px;
  line-height:1.08;
  letter-spacing:-.035em;
}

.section-head p,
.difference-copy>p,
.embed-copy>p,
.demo-copy>p{
  color:#627087;
  font-size:16px;
  line-height:1.65;
}


/* ENGINES */

.engine-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.engine-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow);
}

.engine-top{
  padding:14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#edf4ff;
  background:#07111f;
  font-size:11px;
  font-weight:900;
}

.engine-live{
  color:#56f2a3;
}

.engine-live i{
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  margin-right:6px;
  background:#56f2a3;
  box-shadow:0 0 9px #56f2a3;
}

.engine-preview{
  height:340px;
  display:grid;
  grid-template-columns:92px 1fr;
  background:#081321;
}

.preview-toolbar{
  padding:17px 11px;
  display:flex;
  flex-direction:column;
  gap:14px;
  border-right:1px solid #223049;
  color:#aab8ce;
  font-size:9px;
}

.preview-toolbar span{
  padding:9px 5px;
  border-radius:7px;
  background:#122136;
}

.preview-canvas{
  display:grid;
  place-items:center;
  padding:25px;
  background:
    radial-gradient(circle,#19314f 1px,transparent 1px);
  background-size:18px 18px;
}

.sample-card{
  width:87%;
  aspect-ratio:1.6/1;
  padding:34px;
  color:#fff;
  background:
    linear-gradient(120deg,#061426 0 57%,#204dea 57% 68%,#fff 68%);
  box-shadow:0 20px 40px rgba(0,0,0,.28);
}

.sample-card small{font-size:10px}
.sample-card h3{
  font-size:28px;
  margin:31px 0 4px;
}
.sample-card p{
  margin:0;
  color:#4884ff;
  font-weight:800;
}

.card-lines{
  width:43%;
  height:4px;
  margin-top:35px;
  background:#fff;
  box-shadow:0 12px #fff,0 24px #fff;
}

.sample-flyer{
  width:58%;
  height:100%;
  max-height:285px;
  padding:37px 25px;
  text-align:center;
  background:#fff;
  color:#10182b;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.sample-flyer small{
  color:#7040ef;
  font-weight:900;
}

.sample-flyer h3{
  margin:36px 0 12px;
  font-size:31px;
}

.sample-flyer p{
  color:#667085;
  font-size:11px;
}

.sample-flyer button{
  margin-top:25px;
  padding:10px 15px;
  border:0;
  border-radius:6px;
  color:#fff;
  background:linear-gradient(90deg,#245cff,#ec2b8a);
  font-weight:900;
}

.engine-copy{padding:25px}

.engine-copy h3{
  margin:0 0 10px;
  font-size:24px;
}

.engine-copy p{
  color:#606d82;
  line-height:1.6;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin:17px 0;
}

.chips span{
  padding:7px 9px;
  border-radius:999px;
  background:#f1f4fa;
  color:#48566c;
  font-size:10px;
  font-weight:850;
}

.text-link{
  color:#6234df;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
}


/* RESULTS */

.results-section{
  padding:86px 0;
  color:#fff;
  background:
    radial-gradient(circle at 15% 15%,rgba(116,60,255,.26),transparent 27rem),
    #07111f;
}

.section-head.light h2{color:#fff}
.section-head.light p{color:#aebbd0}
.dark-eyebrow{
  color:#fff;
  border-color:#46536a;
  background:#142238;
}

.results-label{
  margin-bottom:14px;
  color:#9caac0;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
}

.result-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:15px;
}

.result-grid article{
  overflow:hidden;
  border:1px solid #26354d;
  border-radius:14px;
  background:#101d30;
}

.result-grid img{
  width:100%;
  height:205px;
  display:block;
  object-fit:cover;
}

.result-grid span{
  display:block;
  padding:12px;
  color:#dce5f3;
  font-size:11px;
  font-weight:800;
}

.results-note{
  margin-top:16px;
  color:#71829b;
  font-size:10px;
}


/* DIFFERENCE */

.difference{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.difference-points{
  display:grid;
  gap:9px;
  margin-top:28px;
}

.difference-points div{
  display:flex;
  align-items:center;
  gap:14px;
  padding:13px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
}

.difference-points b{
  color:#7040ef;
  font-size:11px;
}

.difference-points span{
  font-weight:850;
}

.layer-demo{
  padding:23px;
  border-radius:18px;
  color:#dbe6f6;
  background:#0a1627;
  box-shadow:0 28px 65px rgba(12,28,58,.22);
}

.layer-title{
  margin-bottom:15px;
  color:#7f91a9;
  font-size:10px;
  font-weight:900;
}

.layer{
  margin:7px 0;
  padding:12px 13px;
  display:flex;
  justify-content:space-between;
  border:1px solid #2c3d54;
  border-radius:9px;
  background:#122137;
  font-size:12px;
}

.layer.active{
  border-color:#6a43ff;
  box-shadow:0 0 0 1px #6a43ff;
}

.layer-editor{
  margin-top:16px;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:7px;
  border-radius:12px;
  color:#13203a;
  background:#fff;
}

.layer-editor small{
  color:#79869c;
  font-weight:900;
}

.layer-editor button{
  margin-top:8px;
  padding:9px;
  border:0;
  border-radius:6px;
  color:#fff;
  background:#7040ef;
  font-weight:850;
}


/* BUSINESS */

.business-section{
  padding:88px 0;
  background:#f5f7fb;
}

.business-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.business-grid article{
  min-height:190px;
  padding:24px;
  border:1px solid #e3e8f1;
  border-radius:15px;
  background:#fff;
}

.business-grid article>span{
  color:#7943f7;
  font-size:11px;
  font-weight:950;
}

.business-grid h3{
  margin:13px 0 8px;
  font-size:18px;
}

.business-grid p{
  margin:0;
  color:#687489;
  line-height:1.55;
  font-size:13px;
}

.business-highlight{
  color:#fff;
  background:linear-gradient(135deg,#101e34,#263c68)!important;
}

.business-highlight p{color:#b9c5d9}


/* EMBED */

.embed-section{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:65px;
  align-items:center;
}

.embed-benefits{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:25px 0 29px;
}

.embed-benefits span{
  font-size:12px;
  font-weight:800;
  color:#405069;
}

.embed-visual{
  overflow:hidden;
  border:1px solid #dae0e9;
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
}

.browser-bar{
  height:45px;
  padding:0 16px;
  display:flex;
  align-items:center;
  gap:18px;
  color:#bbc2cf;
  background:#f3f5f8;
  font-size:11px;
}

.browser-bar strong{
  flex:1;
  padding:6px 12px;
  border:1px solid #e2e5eb;
  border-radius:7px;
  color:#667085;
  background:#fff;
}

.partner-site{
  padding:20px;
  background:#f8faff;
}

.partner-nav{
  padding:12px;
  color:#2c3446;
  background:#fff;
  font-size:11px;
  font-weight:950;
}

.embedded-box{
  margin:18px 0 8px;
  padding:45px 25px;
  border-radius:14px;
  text-align:center;
  color:#fff;
  background:
    radial-gradient(circle at 80% 0,rgba(127,54,255,.55),transparent 40%),
    #081525;
}

.embedded-box small{
  color:#77f6ad;
  font-weight:900;
}

.embedded-box strong{
  display:block;
  margin:12px;
  font-size:29px;
}

.embedded-box p{color:#bcc8dc}

.embedded-box button{
  padding:10px 18px;
  border:0;
  border-radius:7px;
  color:#fff;
  background:linear-gradient(90deg,#225fff,#e92c8c);
  font-weight:900;
}

.powered{
  text-align:center;
  color:#7c8799;
  font-size:9px;
}


/* DEMO */

.demo-section{
  padding:76px 0;
  color:#fff;
  background:
    radial-gradient(circle at 20% 50%,rgba(126,50,255,.45),transparent 26rem),
    linear-gradient(115deg,#0a1425,#192b4e);
}

.demo-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.demo-copy p{color:#b7c4d8}

.demo-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.demo-options>div{
  min-height:180px;
  padding:23px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:1px solid #3a4b67;
  border-radius:15px;
  background:rgba(11,24,43,.65);
}

.demo-options .lock{font-size:26px}
.demo-options small{
  margin-top:13px;
  color:#60f3a8;
  font-weight:900;
}
.demo-options strong{
  margin:8px 0;
  font-size:18px;
}
.demo-options em{
  color:#94a4bb;
  font-size:11px;
  font-style:normal;
}


/* PARTNER */

.partner-cta{
  padding:72px 0;
  display:grid;
  grid-template-columns:1fr 1.15fr auto;
  gap:38px;
  align-items:center;
}

.partner-cta h2{
  margin-bottom:0;
  font-size:33px;
}

.partner-paths{
  display:grid;
  gap:9px;
  color:#5e6c82;
  font-size:12px;
}

.partner-paths b{color:#17233c}


/* FOOTER */

footer{
  padding:58px 0 20px;
  color:#a9b7ca;
  background:#06101d;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.6fr repeat(4,1fr);
  gap:35px;
}

.footer-brand img{
  width:190px;
  filter:brightness(0) invert(1);
}

.footer-brand p{
  max-width:310px;
  line-height:1.6;
  font-size:12px;
}

.footer-grid>div:not(.footer-brand){
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:11px;
}

.footer-grid strong{
  margin-bottom:5px;
  color:#fff;
}

.footer-grid a{
  color:#a9b7ca;
  text-decoration:none;
}

.footer-bottom{
  margin-top:42px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  border-top:1px solid #1e2d40;
  font-size:10px;
}


/* RESPONSIVE */

@media(max-width:980px){
  nav{display:none}

  .hero,
  .difference,
  .embed-section,
  .demo-inner{
    grid-template-columns:1fr;
  }

  .engine-grid{grid-template-columns:1fr}

  .business-grid{grid-template-columns:1fr 1fr}

  .result-grid{grid-template-columns:repeat(3,1fr)}

  .partner-cta{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr 1fr;
  }
}

@media(max-width:620px){
  .shell{width:min(100% - 26px,1240px)}

  .live-badge{min-width:88px}

  .brand img{width:170px}
  .studio-pill{display:none}

  h1{font-size:43px}

  .section-head h2,
  .difference h2,
  .embed-copy h2,
  .demo-copy h2{
    font-size:34px;
  }

  .hero{padding-top:25px}

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .business-grid,
  .result-grid,
  .demo-options,
  .embed-benefits{
    grid-template-columns:1fr;
  }

  .engine-preview{
    grid-template-columns:70px 1fr;
    height:300px;
  }

  .sample-card{padding:18px}

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-brand{grid-column:1/-1}
}

/* =========================================================
   A3-POLISH1 — LIVE / TICKER COLOR HIERARCHY
   ========================================================= */

.live-strip{
  background:#050608 !important;
}

.live-badge{
  background:#39ff14 !important;
  color:#ff1738 !important;
  box-shadow:
    0 0 12px rgba(57,255,20,.75),
    0 0 26px rgba(57,255,20,.30);
  font-weight:950;
}

.live-badge .live-dot{
  background:#ff1738 !important;
  box-shadow:0 0 10px rgba(255,23,56,.9);
  animation:dl-red-live-pulse 1s ease-in-out infinite;
}

@keyframes dl-red-live-pulse{
  0%,100%{
    opacity:1;
    transform:scale(1);
  }
  50%{
    opacity:.35;
    transform:scale(.78);
  }
}

.ticker-window{
  background:#050608 !important;
}

.ticker-track{
  color:#39ff14 !important;
  text-shadow:0 0 7px rgba(57,255,20,.22);
}

.ticker-track b{
  color:#6dff58 !important;
  opacity:.65;
}


/* =========================================================
   A3-POLISH2 — LIVE STATUS REFINEMENT
   Black status field + red LIVE + pulsing red indicator
   ========================================================= */

.live-badge{
  background:#050608 !important;
  color:#ff304f !important;
  box-shadow:none !important;
  border-right:1px solid rgba(255,255,255,.16);
}

.live-badge::before{
  background:#ff304f !important;
  box-shadow:0 0 0 rgba(255,48,79,.55);
  animation:designlive-live-pulse 1.45s ease-in-out infinite !important;
}

@keyframes designlive-live-pulse{
  0%,100%{
    opacity:1;
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(255,48,79,.48);
  }
  50%{
    opacity:.55;
    transform:scale(.82);
    box-shadow:0 0 0 7px rgba(255,48,79,0);
  }
}

/* =========================================================
   A3-POLISH3A — Faster Business Live Ticker
   ========================================================= */

.ticker-track{
  animation-duration:18s !important;
}


/* =========================================================
   A3-POLISH4 — REAL FLYER ENGINE HERO
   ========================================================= */

.hero-engine-proof{
  overflow:hidden;
  border:1px solid #dfe5ee;
  border-radius:20px;
  background:#07111f;
  box-shadow:0 32px 75px rgba(13,26,55,.24);
}

.hero-engine-label{
  height:52px;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:#eaf2ff;
  border-bottom:1px solid #223047;
  background:#07111f;
  font-size:10px;
  font-weight:900;
  letter-spacing:.03em;
}

.hero-engine-label i{
  display:inline-block;
  width:8px;
  height:8px;
  margin-right:7px;
  border-radius:50%;
  background:#42f599;
  box-shadow:0 0 12px #42f599;
}

.hero-engine-label strong{
  color:#58f2a4;
  font-size:10px;
  white-space:nowrap;
}

.hero-engine-proof img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  background:#07111f;
}

.hero-engine-caption{
  padding:12px 16px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  background:#0b1729;
  border-top:1px solid #223047;
}

.hero-engine-caption span{
  padding:6px 8px;
  border-radius:999px;
  color:#b9c8de;
  background:#14243a;
  font-size:9px;
  font-weight:850;
}

@media(max-width:980px){
  .hero-engine-label{
    height:auto;
    padding:14px;
    flex-direction:column;
    align-items:flex-start;
  }
}


/* =========================================================
   DesignLive Official Branding — A3 Branding Install
   ========================================================= */

.brand img{
  width:240px;
  height:auto;
  max-height:72px;
  object-fit:contain;
  display:block;
}

.footer-brand img{
  width:260px;
  height:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}

@media (max-width:760px){
  .brand img{
    width:170px;
    height:auto;
  }

  .footer-brand img{
    width:220px;
    height:auto;
  }
}

/* =========================================================
   A3 Branding Final Fix
   ========================================================= */

/* Header: keep STUDIO clearly separated from logo */
.brand{
  gap:18px;
}

.studio-pill{
  margin-left:0 !important;
}

/* Footer: preserve original DesignLive logo colors */
.footer-brand img{
  width:230px;
  height:auto;
  max-width:100%;
  object-fit:contain;
  filter:none !important;
}

/* Mobile */
@media(max-width:620px){
  .brand{
    gap:10px;
  }

  .footer-brand img{
    width:210px;
  }
}

/* A3 Footer Official Dark Background Logo */
.footer-brand img{
  width:230px;
  height:auto;
  max-width:100%;
  object-fit:contain;
  filter:none !important;
}


/* ============================================================
   A4 — INDUSTRY SOLUTION LANDING PAGE
   2026-09-04
   Appended only — preserves previous approved styling.
   ============================================================ */


/* HERO BUSINESS POSITIONING */

.a4-hero .hero-copy h1{
  max-width:700px;
}

.hero-business-line{
  max-width:660px;
  margin:20px 0 0;
  padding-left:16px;
  border-left:3px solid #7040ef;
  color:#34445e;
  font-size:14px;
  font-weight:800;
  line-height:1.65;
}


/* PAIN SECTION */

.a4-pain{
  padding:95px 0;
  background:
    radial-gradient(circle at 10% 5%,rgba(111,64,239,.07),transparent 27rem),
    #f6f8fc;
}

.workflow-compare{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.workflow-card{
  padding:30px;
  border:1px solid #dfe5ee;
  border-radius:20px;
  background:#fff;
  box-shadow:0 22px 55px rgba(20,35,65,.08);
}

.workflow-card.new-way{
  color:#eaf2ff;
  border-color:#263957;
  background:
    radial-gradient(circle at 90% 0,rgba(111,64,239,.32),transparent 19rem),
    #07111f;
}

.workflow-label{
  margin-bottom:12px;
  color:#7b8799;
  font-size:10px;
  font-weight:950;
  letter-spacing:.12em;
}

.new-way .workflow-label{
  color:#67f0aa;
}

.workflow-card h3{
  margin:0 0 22px;
  font-size:24px;
  line-height:1.2;
}

.workflow-steps{
  display:grid;
  gap:8px;
}

.workflow-steps span{
  display:grid;
  grid-template-columns:34px 1fr;
  align-items:center;
  gap:10px;
  padding:11px 12px;
  border:1px solid #e8ecf2;
  border-radius:9px;
  color:#526078;
  background:#fafbfd;
  font-size:12px;
  font-weight:750;
}

.workflow-steps b{
  color:#8a96a9;
  font-size:9px;
}

.new-way .workflow-steps span{
  color:#d9e5f5;
  border-color:#293b56;
  background:#0f1e32;
}

.new-way .workflow-steps b{
  color:#64efaa;
}

.d-heading{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.d-heading img{
  width:50px;
  height:50px;
  object-fit:contain;
  flex:none;
}

.speed-proof{
  margin-top:18px;
  padding:18px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:16px;
  align-items:center;
  border:1px solid #304763;
  border-radius:12px;
  background:#102139;
}

.speed-proof strong{
  color:#62f0aa;
  font-size:22px;
  white-space:nowrap;
}

.speed-proof span{
  color:#aebdd1;
  font-size:11px;
  line-height:1.5;
}

.pain-conclusion{
  max-width:900px;
  margin:27px auto 0;
  padding:22px 27px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:#fff;
  box-shadow:0 16px 35px rgba(18,34,65,.06);
  text-align:center;
}

.pain-conclusion strong{
  color:#18243b;
}

.pain-conclusion span{
  color:#66738a;
}


/* THREE BUSINESS VALUE LAYERS */

.value-layer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.value-layer-card{
  position:relative;
  overflow:hidden;
  min-height:330px;
  padding:30px;
  border:1px solid #e0e5ed;
  border-radius:19px;
  background:#fff;
  box-shadow:0 20px 45px rgba(17,31,61,.07);
}

.value-layer-highlight{
  color:#fff;
  border-color:#283a56;
  background:
    radial-gradient(circle at 100% 0,rgba(112,64,239,.5),transparent 20rem),
    #081523;
}

.d-mark{
  width:48px;
  height:48px;
  margin-bottom:24px;
  object-fit:contain;
}

.value-number{
  display:block;
  color:#7141ef;
  font-size:10px;
  font-weight:950;
  letter-spacing:.11em;
}

.value-layer-highlight .value-number{
  color:#63f1aa;
}

.value-layer-card h3{
  margin:12px 0;
  font-size:23px;
  line-height:1.18;
}

.value-layer-card p{
  color:#647186;
  font-size:13px;
  line-height:1.65;
}

.value-layer-card>strong{
  display:block;
  margin-top:20px;
  color:#293754;
  font-size:12px;
  line-height:1.5;
}

.value-layer-highlight p{
  color:#b8c5d8;
}

.value-layer-highlight>strong{
  color:#fff;
}


/* ONLINE CUSTOMER SELF SERVICE */

.a4-selfservice{
  padding:90px 0;
  color:#fff;
  background:
    radial-gradient(circle at 8% 50%,rgba(118,62,255,.34),transparent 28rem),
    linear-gradient(120deg,#07111f,#142641);
}

.selfservice-grid{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:75px;
  align-items:center;
}

.selfservice-grid h2{
  margin:15px 0;
  font-size:43px;
  line-height:1.08;
  letter-spacing:-.035em;
}

.selfservice-grid>div>p{
  max-width:650px;
  color:#b8c5d8;
  font-size:16px;
  line-height:1.65;
}

.selfservice-points{
  margin-top:27px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:11px;
}

.selfservice-points span{
  color:#d9e5f3;
  font-size:12px;
  font-weight:800;
}

.night-order-card{
  overflow:hidden;
  border:1px solid #354761;
  border-radius:20px;
  background:#0e1c30;
  box-shadow:0 28px 70px rgba(0,0,0,.25);
}

.night-top{
  padding:17px 20px;
  display:flex;
  align-items:center;
  gap:12px;
  color:#6af2ae;
  border-bottom:1px solid #293c56;
  font-size:9px;
  font-weight:950;
  letter-spacing:.11em;
}

.night-top img{
  width:30px;
  height:30px;
  object-fit:contain;
}

.night-story{
  padding:30px;
}

.night-story small{
  color:#63f1aa;
  font-weight:950;
}

.night-story h3{
  margin:7px 0 10px;
  font-size:20px;
}

.night-story p{
  color:#aebdd0;
  font-size:12px;
  line-height:1.65;
}

.night-arrow{
  margin:23px 0;
  color:#7547ff;
  font-size:32px;
  font-weight:950;
}


/* INDUSTRIES */

.industry-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.industry-grid article{
  min-height:210px;
  padding:26px;
  border:1px solid #e1e6ef;
  border-radius:16px;
  background:#fff;
  box-shadow:0 12px 35px rgba(18,32,60,.05);
}

.industry-grid article>span{
  color:#7845f4;
  font-size:9px;
  font-weight:950;
  letter-spacing:.11em;
}

.industry-grid h3{
  margin:12px 0 9px;
  font-size:19px;
}

.industry-grid p{
  margin:0;
  color:#69758a;
  font-size:12px;
  line-height:1.6;
}

.industry-grid .industry-partner{
  color:#fff;
  border-color:#203651;
  background:
    radial-gradient(circle at 90% 5%,rgba(116,58,255,.46),transparent 17rem),
    #091625;
}

.industry-grid .industry-partner>span{
  color:#66efaa;
}

.industry-grid .industry-partner p{
  color:#b6c4d8;
}

.employee-time{
  margin-top:24px;
  padding:24px 28px;
  display:flex;
  gap:20px;
  align-items:center;
  border-radius:17px;
  background:#f4f7fc;
}

.employee-time img{
  width:58px;
  height:58px;
  object-fit:contain;
  flex:none;
}

.employee-time span{
  display:block;
  margin-bottom:5px;
  color:#7444ef;
  font-size:9px;
  font-weight:950;
  letter-spacing:.11em;
}

.employee-time strong{
  display:block;
  color:#1b2942;
  font-size:16px;
}

.employee-time p{
  margin:6px 0 0;
  color:#7a8699;
  font-size:10px;
}


/* SIX STEP PROCESS */

.process-section{
  padding:88px 0;
  color:#fff;
  background:
    radial-gradient(circle at 50% -20%,rgba(107,53,255,.42),transparent 34rem),
    #06101d;
}

.process-green{
  color:#62f1aa;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
}

.process-grid article{
  min-height:205px;
  padding:20px;
  border:1px solid #263850;
  border-radius:13px;
  background:#0e1b2e;
}

.process-grid b{
  color:#63f1aa;
  font-size:10px;
}

.process-grid h3{
  margin:20px 0 10px;
  color:#fff;
  font-size:18px;
}

.process-grid p{
  margin:0;
  color:#aebbd0;
  font-size:11px;
  line-height:1.55;
}


/* REAL ENGINE SHOWCASES */

.real-engine-showcase{
  margin:0 0 35px;
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:40px;
  align-items:center;
  padding:34px;
  border:1px solid #e0e5ed;
  border-radius:22px;
  background:#fff;
  box-shadow:0 24px 60px rgba(15,31,61,.09);
}

.real-engine-showcase.reverse{
  grid-template-columns:.78fr 1.22fr;
}

.real-engine-showcase.reverse .real-engine-copy{
  order:2;
}

.real-engine-showcase.reverse .real-proof-window{
  order:1;
}

.engine-live-title{
  margin-bottom:14px;
  color:#647188;
  font-size:10px;
  font-weight:950;
  letter-spacing:.1em;
}

.real-engine-copy h3{
  margin:0 0 13px;
  font-size:28px;
  line-height:1.14;
}

.real-engine-copy p{
  color:#667388;
  font-size:13px;
  line-height:1.65;
}

.real-proof-window{
  overflow:hidden;
  border:1px solid #273a55;
  border-radius:15px;
  background:#07111f;
}

.real-proof-bar{
  min-height:46px;
  padding:0 15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  color:#dce7f5;
  border-bottom:1px solid #263750;
  background:#081321;
  font-size:9px;
  font-weight:900;
}

.real-proof-bar i{
  display:inline-block;
  width:7px;
  height:7px;
  margin-right:6px;
  border-radius:50%;
  background:#51f2a2;
  box-shadow:0 0 8px #51f2a2;
}

.real-proof-bar strong{
  color:#58f0a5;
}

.real-proof-window img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}


/* D INSIDE LAYER DEMO */

.d-layer-head{
  margin-bottom:15px;
  display:flex;
  align-items:center;
  gap:10px;
}

.d-layer-head img{
  width:32px;
  height:32px;
  object-fit:contain;
}

.d-layer-head .layer-title{
  margin:0;
}


/* EMBED D MARK */

.embed-d{
  width:48px;
  height:48px;
  margin:0 auto 12px;
  object-fit:contain;
}


/* GROWTH SECTION */

.growth-section{
  padding:82px 0;
  color:#fff;
  background:
    radial-gradient(circle at 90% 20%,rgba(115,53,255,.4),transparent 25rem),
    linear-gradient(115deg,#07111f,#172d50);
}

.growth-grid{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:42px;
  align-items:center;
}

.growth-mark{
  width:130px;
  height:130px;
  display:grid;
  place-items:center;
  border:1px solid #334964;
  border-radius:30px;
  background:#0d1c31;
  box-shadow:0 20px 55px rgba(0,0,0,.2);
}

.growth-mark img{
  width:90px;
  height:90px;
  object-fit:contain;
}

.growth-grid h2{
  margin:14px 0;
  font-size:41px;
  line-height:1.08;
}

.growth-grid h2 span{
  color:#62f1aa;
}

.growth-grid p{
  max-width:820px;
  color:#b6c4d8;
  font-size:15px;
  line-height:1.7;
}

.growth-points{
  margin-top:21px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.growth-points span{
  padding:8px 11px;
  border:1px solid #37506c;
  border-radius:999px;
  color:#dce7f5;
  background:#102139;
  font-size:9px;
  font-weight:900;
}


/* RESPONSIVE A4 */

@media(max-width:1100px){

  .process-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:980px){

  .workflow-compare,
  .value-layer-grid,
  .selfservice-grid,
  .real-engine-showcase,
  .real-engine-showcase.reverse{
    grid-template-columns:1fr;
  }

  .industry-grid{
    grid-template-columns:1fr 1fr;
  }

  .real-engine-showcase.reverse .real-engine-copy,
  .real-engine-showcase.reverse .real-proof-window{
    order:initial;
  }

  .growth-grid{
    grid-template-columns:1fr;
  }

  .growth-mark{
    width:90px;
    height:90px;
  }

  .growth-mark img{
    width:62px;
    height:62px;
  }

}

@media(max-width:620px){

  .a4-pain,
  .a4-selfservice,
  .process-section,
  .growth-section{
    padding:65px 0;
  }

  .workflow-card,
  .real-engine-showcase{
    padding:20px;
  }

  .speed-proof{
    grid-template-columns:1fr;
  }

  .pain-conclusion{
    flex-direction:column;
  }

  .selfservice-grid h2,
  .growth-grid h2{
    font-size:34px;
  }

  .selfservice-points,
  .industry-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .value-layer-grid{
    grid-template-columns:1fr;
  }

  .employee-time{
    align-items:flex-start;
  }

  .employee-time img{
    width:43px;
    height:43px;
  }

  .real-engine-copy h3{
    font-size:24px;
  }

  .growth-mark{
    width:72px;
    height:72px;
    border-radius:20px;
  }

  .growth-mark img{
    width:50px;
    height:50px;
  }

}


/* =========================================================
   A5 — DESIGNLIVE TRANSLATOR
   ========================================================= */

.translator{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1000;
}

.translator>button{
  background:#fff;
  color:#17192b;
  border:1px solid #e5e4ee;
  box-shadow:0 10px 28px rgba(31,24,60,.18);
  border-radius:999px;
  padding:11px 15px;
  font-weight:850;
  cursor:pointer;
}

.lang-menu{
  display:none;
  position:absolute;
  right:0;
  bottom:52px;
  width:210px;
  background:#fff;
  border:1px solid #e4e3ed;
  border-radius:14px;
  box-shadow:0 18px 45px rgba(27,24,52,.18);
  padding:8px;
}

.lang-menu.open{
  display:block;
}

.lang-menu button{
  display:block;
  width:100%;
  padding:9px 10px;
  border:0;
  background:transparent;
  color:#17192b;
  text-align:left;
  border-radius:7px;
  cursor:pointer;
  font:inherit;
}

.lang-menu button:hover,
.lang-menu button:focus-visible{
  background:#f4f1ff;
}

.lang-note{
  font-size:10px;
  color:#858ba0;
  padding:8px 10px;
  border-top:1px solid #eee;
}

@media(max-width:620px){
  .translator{
    right:12px;
    bottom:12px;
  }

  .translator>button{
    padding:10px 13px;
  }

  .lang-menu{
    width:200px;
  }
}

/* =========================================================
   A5.1 — TRANSLATOR FLOATING DROPDOWN FIX
   ========================================================= */

body .translator{
  position:fixed !important;
  right:18px !important;
  bottom:18px !important;
  left:auto !important;
  top:auto !important;
  z-index:99999 !important;
  display:block !important;
  width:auto !important;
  margin:0 !important;
  padding:0 !important;
}

body .translator > #langToggle{
  display:inline-flex !important;
  align-items:center !important;
  gap:5px !important;
  width:auto !important;
  min-width:0 !important;
  margin:0 !important;
  padding:10px 14px !important;
  background:#fff !important;
  color:#17192b !important;
  border:1px solid #e5e4ee !important;
  border-radius:999px !important;
  box-shadow:0 10px 28px rgba(31,24,60,.22) !important;
  font:inherit !important;
  font-weight:800 !important;
  line-height:1 !important;
  cursor:pointer !important;
}

body .translator > .lang-menu{
  display:none !important;
  position:absolute !important;
  right:0 !important;
  bottom:50px !important;
  left:auto !important;
  top:auto !important;
  width:210px !important;
  margin:0 !important;
  padding:8px !important;
  background:#fff !important;
  border:1px solid #e4e3ed !important;
  border-radius:14px !important;
  box-shadow:0 18px 45px rgba(27,24,52,.22) !important;
}

body .translator > .lang-menu.open{
  display:block !important;
}

body .translator .lang-menu button{
  display:block !important;
  width:100% !important;
  margin:0 !important;
  padding:9px 10px !important;
  border:0 !important;
  border-radius:7px !important;
  background:transparent !important;
  color:#17192b !important;
  text-align:left !important;
  font:inherit !important;
  cursor:pointer !important;
}

body .translator .lang-menu button:hover,
body .translator .lang-menu button:focus-visible{
  background:#f4f1ff !important;
}

body .translator .lang-note{
  display:block !important;
  margin-top:4px !important;
  padding:8px 10px !important;
  border-top:1px solid #eee !important;
  color:#858ba0 !important;
  font-size:10px !important;
  line-height:1.35 !important;
}

@media(max-width:620px){
  body .translator{
    right:12px !important;
    bottom:12px !important;
  }

  body .translator > .lang-menu{
    width:200px !important;
  }
}
