:root{
  --bg: #ffffff;
  --bg2: #f6f7f8;
  --text: #0c0d10;
  --muted: #5f6672;
  --line: rgba(12, 13, 16, 0.10);
  --shadow: 0 18px 55px rgba(16, 24, 40, .12);
  --shadow2: 0 10px 30px rgba(16, 24, 40, .10);

  /* Constructive brand vibe: black + yellow */
  --black: #0b0b0d;
  --yellow: #ffc22e;
  --yellow2: #ffd400;

  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(900px 500px at 20% 0%, rgba(255, 212, 0, 0.14), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(0, 0, 0, 0.06), transparent 60%),
              var(--bg);
  line-height: 1.45;
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

/* Announcement */
.announce{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255,212,0,.90), rgba(255,234,97,.92));
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.announce__inner{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 0;
}
.pill{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.10);
}
.announce__text{
  font-size: 13px;
  color: rgba(0,0,0,.78);
}
.announce__link{
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,.35);
}

/* Nav */
.nav{
  position: sticky;
  top: 42px; /* below announce bar */
  z-index: 40;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand__mark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,212,0,1), rgba(255,234,97,1));
  box-shadow: 0 10px 25px rgba(255,212,0,.35);
  position: relative;
}
.brand__mark::after{
  content:"";
  position:absolute;
  inset: 9px;
  border-radius: 8px;
  background: rgba(0,0,0,.85);
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%, 30% 50%);
  opacity:.95;
}
.brand__text{
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 13px;
}

.nav__links{
  display:flex;
  gap: 18px;
  color: rgba(0,0,0,.72);
  font-weight: 600;
  font-size: 14px;
}
.nav__links a{
  padding: 8px 10px;
  border-radius: 12px;
}
.nav__links a:hover{
  background: rgba(0,0,0,.04);
}

.nav__cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

.hamburger{
  display:none;
  width: 44px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  cursor: pointer;
  padding: 0 12px;
}
.hamburger span{
  display:block;
  width: 100%;
  height: 2px;
  background: black;
  margin: 3px 0;
}

/* Drawer */
.drawer{
  display:none;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.92);
}
.drawer__inner{
  padding: 14px 0 18px;
  display:grid;
  gap: 10px;
}
.drawer__link{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.02);
}
.drawer__btn{ width: fit-content; }

/* Buttons */
.btn{
  display:inline-flex;
  text-align: center;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  cursor: pointer;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color: #09090b;
  box-shadow: 0 14px 40px rgba(255,212,0,.28);
  border-color: rgba(0,0,0,.10);
}
.btn--primary:hover{
  background :#09090b;
  color:#ffc22e;
  box-shadow: 0 20px 55px rgba(255,212,0,.35);
}

.btn--ghost{
  background:rgba(0,0,0,.82);
  border-color: var(--line);
  color: #ffc22e;
}
.btn--ghost:hover{
  background: #ffc22e;
  color:#09090b;
  box-shadow: 0 14px 40px rgba(255,212,0,.28);
}

/* Hero */
.hero{
  padding: 54px 0 30px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items:center;
}
.hero h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.highlight{
  background: linear-gradient(135deg, rgba(0,0,0,.90), rgba(0,0,0,.55));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.lead{
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 56ch;
}
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.trust{
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.trust__label{
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.trust__row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.logo{
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,.58);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
}

/* Product visual */
.hero__visual{
  position: relative;
  padding: 18px;
}
.hero__glow{
  position:absolute;
  inset: -20px;
  background:
    radial-gradient(420px 260px at 30% 10%, rgba(255,212,0,.35), transparent 65%),
    radial-gradient(520px 320px at 80% 70%, rgba(0,0,0,.08), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}
.glass{
  position: relative;
  z-index: 1;
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass__top{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.hero_image{
    max-width: 100%; /* Image will not exceed its container's width */
  height: auto;
}

.dot{
  width: 10px; height: 10px; border-radius: 99px;
  opacity: .9;
}
.dot--r{ background: #ff5c5c; }
.dot--y{ background: #ffcc00; }
.dot--g{ background: #33d17a; }
.glass__title{
  margin-left: 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .03em;
  color: rgba(0,0,0,.70);
}
.glass__chip{
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  border: 1px solid var(--line);
  color: rgba(0,0,0,.72);
}
.glass__content{
  padding: 16px;
  display:grid;
  gap: 14px;
}
.kpi{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kpi__card{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow2);
}
.kpi__label{
  font-size: 12px;
  color: rgba(0,0,0,.55);
  font-weight: 700;
}
.kpi__value{
  font-size: 18px;
  font-weight: 900;
  margin-top: 6px;
}
.kpi__sub{
  font-size: 12px;
  color: rgba(0,0,0,.55);
  margin-top: 4px;
}

.chart{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow2);
}
.chart__header{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.chart__title{ font-weight: 900; font-size: 13px; }
.chart__meta{ font-size: 12px; color: rgba(0,0,0,.55); }
.chart__bars{
  display:flex;
  gap: 8px;
  align-items:flex-end;
  height: 92px;
}
.bar{
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.18));
  border: 1px solid rgba(0,0,0,.10);
  position: relative;
  overflow:hidden;
}
.bar::after{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(120px 90px at 50% 0%, rgba(255,212,0,.30), transparent 60%);
  opacity: .65;
}

.list{
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow2);
}
.list__row{
  display:grid;
  grid-template-columns: 110px 1fr 74px;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid var(--line);
  align-items:center;
}
.list__row:first-child{ border-top: 0; }
.badge{
  font-size: 11px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,212,0,.18);
  border: 1px solid rgba(255,212,0,.35);
  color: rgba(0,0,0,.78);
  width: fit-content;
}
.list__text{
  color: rgba(0,0,0,.66);
  font-size: 12px;
  font-weight: 600;
}
.status{
  justify-self: end;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.ok{ background: rgba(51,209,122,.14); border-color: rgba(51,209,122,.30); }
.warn{ background: rgba(255,212,0,.18); border-color: rgba(255,212,0,.35); }

/* Sections */
.section{
  padding: 56px 0;
}
.section--alt{
  background: linear-gradient(180deg, var(--bg2), rgba(255,255,255,.75));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  margin-bottom: 22px;
}
.section__head h2{
  margin: 0 0 10px;
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.01em;
}
.section__head p{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
}

/* Cards */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
}
.card h3{ margin: 0 0 8px; }
.card p{ margin:0; color: var(--muted); }

.card--link{
  transition: transform .12s ease, box-shadow .12s ease;
}
.card--link:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.linkRow{
  display:inline-flex;
  margin-top: 12px;
  font-weight: 800;
  color: rgba(0,0,0,.78);
}

/* Products */
.productGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.productCard{
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow2);
  padding: 18px;
  transition: transform .12s ease, box-shadow .12s ease;
  position: relative;
}
.productCard:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.productCard[aria-disabled="true"]{
  opacity: .85;
  cursor: default;
}
.productCard__top{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.productIcon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 900;
  font-size: 12px;
  background: rgba(0,0,0,.86);
  color: var(--yellow);
}
.productName{
  font-weight: 900;
  letter-spacing: -0.01em;
}
.productArrow{
  margin-left:auto;
  font-weight: 900;
  opacity: .75;
}
.muted{ opacity:.45; }

.productCard p{
  margin: 0 0 12px;
  color: var(--muted);
}
.productTags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.productTags span{
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.02);
  color: rgba(0,0,0,.70);
}

/* Split section */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.feature{
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  margin-bottom: 12px;
}
.feature h3{ margin:0 0 6px; }
.feature p{ margin:0; color: var(--muted); }

.quoteCard{
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.75));
  box-shadow: var(--shadow);
  padding: 18px;
}
.quoteCard__top{
  display:flex;
  gap: 12px;
  align-items: baseline;
}
.quoteMark{
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,.40);
}
.quoteTitle{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(0,0,0,.62);
}
.quoteText{
  margin: 12px 0 16px;
  color: rgba(0,0,0,.72);
  font-weight: 600;
}
.quoteMeta{
  display:flex;
  align-items:center;
  gap: 10px;
}
.avatar{
  width: 40px; height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,212,0,.9), rgba(0,0,0,.08));
  border: 1px solid rgba(0,0,0,.10);
}
.quoteName{ font-weight: 900; }
.quoteRole{ font-size: 12px; color: rgba(0,0,0,.55); font-weight: 700; }

.miniCTA{
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.86);
  color: rgba(255,255,255,.92);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow);
}
.miniCTA__title{ font-weight: 900; }
.miniCTA__sub{ font-size: 12px; color: rgba(255,255,255,.72); font-weight: 600; }

/* Security */
.security{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;
}
.checklist{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(0,0,0,.72);
  font-weight: 600;
}
.checklist li{ margin: 8px 0; }
.security__panel{
  border-radius: 28px;
  border: 1px solid var(--line);
  background: radial-gradient(420px 260px at 30% 10%, rgba(255,212,0,.22), transparent 60%),
              rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  padding: 18px;
}
.logomark__shield{
  width: 64px; height: 64px;
  border-radius: 22px;
  background: url('/assets/icons/Constructive-Dark-Logomark.png') center/contain no-repeat;
  border: 1px solid rgba(0,0,0,.10);
  position: relative;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.logomark__shield::after{
  display: none;
}
.security__stats{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.stat{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.85);
}
.stat__k{ font-weight: 900; }
.stat__l{ font-size: 12px; color: rgba(0,0,0,.55); font-weight: 700; }

/* CTA section */
.section--cta{
  background: radial-gradient(900px 500px at 30% 0%, rgba(255,212,0,.22), transparent 62%),
              radial-gradient(900px 500px at 80% 20%, rgba(0,0,0,.07), transparent 60%),
              var(--bg2);
  border-top: 1px solid var(--line);
}
.cta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.form{
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label span{
  display:block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0,0,0,.62);
  margin-bottom: 6px;
}
input, select, textarea{
  width: 100%;
  font-family: var(--font);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 12px;
  background: rgba(255,255,255,.92);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(0,0,0,.28);
  box-shadow: 0 0 0 4px rgba(255,212,0,.18);
}
textarea{ resize: vertical; }

.form__actions{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.form__note{
  font-size: 13px;
  color: rgba(0,0,0,.70);
  font-weight: 700;
}
.fineprint{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0,0,0,.52);
  font-weight: 600;
}

/* Footer */
.footer{
  background-color: rgba(0,0,0,.8);
  color: rgba(255,255,255,.86);
  padding: 44px 0 22px;
}
.footer__grid{
  display:flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
  margin-left: -20px;
}
.footer__desc{
  margin: 0;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
.footer__cols{
  display:flex;
  gap: 38px;
  flex-wrap: wrap;
}
.footer__col{
  display:grid;
  gap: 10px;
  min-width: 160px;
}
.footer__title{
  font-weight: 900;
  color: rgba(255,255,255,.82);
  margin-bottom: 4px;
}
.footer__col a{
  color: rgba(255,255,255,.62);
  font-weight: 600;
  font-size: 14px;
}
.footer__col a:hover{ color: rgba(255,255,255,.92); }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 14px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.58);
  font-weight: 600;
  font-size: 13px;
}
.footer__bottomLinks{
  display:flex;
  gap: 14px;
}
.footer__bottomLinks a{ color: rgba(255,255,255,.58); }
.footer__bottomLinks a:hover{ color: rgba(255,255,255,.90); }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .security{ grid-template-columns: 1fr; }
  .cta{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .nav__cta .btn{
    display: none;
  }
  /* ...existing styles */
}
@media (max-width: 860px){
  .logomark__shield{
    margin: 0 auto;
  }
  /* ...existing styles */
}
@media (max-width: 860px){
  .announce__inner{
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .announce__link{
    margin-left: 0;
  }
  /* existing styles */
}
@media (max-width: 860px){
  .nav__links{ display:none; }
  .hamburger{ display:inline-flex; flex-direction: column; justify-content: center; }
  .drawer.show{ display:block; }
  .grid3{ grid-template-columns: 1fr; }
  .productGrid{ grid-template-columns: 1fr; }
  .kpi{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }
}
