:root{
  /* lighter purple backdrop */
  --bg0:#f3efff;
  --bg1:#efeaff;

  --ink:#0b0714;
  --muted: rgba(11,7,20,.62);

  --stroke: rgba(11,7,20,.10);
  --stroke2: rgba(11,7,20,.16);

  /* logo-inspired purple */
  --p:#6f2a86;
  --p2:#8a46a1;
  --p3:#4e1d61;

  /* 0px corners everywhere */
  --r: 0px;

  /* PREVIOUS STYLE: softer drop shadows (no directional print slabs) */
  --shadow: 0 22px 70px rgba(20, 10, 35, .18);
  --shadow2: 0 10px 30px rgba(20, 10, 35, .12);

  --max: 1160px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(1200px 720px at 18% -10%, rgba(111,42,134,.20), transparent 62%),
    radial-gradient(1000px 680px at 92% 10%, rgba(138,70,161,.16), transparent 58%),
    radial-gradient(900px 740px at 70% 112%, rgba(78,29,97,.10), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  letter-spacing:-0.015em;
  overflow-x:hidden;
}

/* subtle grain (lighter) */
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.06;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}

a{ color:inherit; text-decoration:none; }
.wrap{ max-width:var(--max); margin:0 auto; padding: 34px 24px 92px; }

/* NAV */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin: 6px auto 26px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-0.03em;
}
.logo-img{
  width:40px;
  height:40px;
  display:block;
  object-fit:contain;
}
.brand-text{ display:flex; flex-direction:column; }
.brand-name{ font-size:16px; line-height:1; font-weight:950; }
.brand-sub{ font-size:12px; color:rgba(11,7,20,.55); font-weight:750; margin-top:3px; }

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

/* BUTTONS — previous style shadows */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow2);
  font-weight:900;
  font-size:14px;
  letter-spacing:-0.01em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space:nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.78);
  border-color: var(--stroke2);
  box-shadow: var(--shadow);
}
.btn:active{ transform: translateY(0px); }

.btn.primary{
  border-color: rgba(111,42,134,.25);
  color: #fff;
  background: linear-gradient(135deg, rgba(111,42,134,.96), rgba(138,70,161,.90));
  box-shadow: 0 22px 70px rgba(111,42,134,.22);
}
.btn.primary:hover{
  background: linear-gradient(135deg, rgba(111,42,134,1), rgba(138,70,161,.95));
  box-shadow: 0 28px 90px rgba(111,42,134,.26);
}

/* Sections — more vertical spacing */
.section{ margin-top: 26px; }
.anchor{ scroll-margin-top: 18px; }

/* HERO */
.hero-full{
  border-radius: var(--r);
  padding: 54px 34px 34px;
  background: rgba(255,255,255,.62);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-full:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(1050px 420px at 18% 0%, rgba(111,42,134,.16), transparent 62%),
    radial-gradient(980px 380px at 85% 20%, rgba(138,70,161,.12), transparent 64%);
  z-index:0;
}
.hero-full > *{ position:relative; z-index:1; }

h1{
  margin: 0 0 30px;
  font-weight: 1000;
  letter-spacing: -0.06em;
  line-height: 1.02;
  font-size: clamp(44px, 4.8vw, 80px);
}
.gradient-text{
  background: linear-gradient(90deg, rgba(11,7,20,.95), rgba(78,29,97,.92), rgba(111,42,134,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.subhead{
  margin: 0 0 24px;
  color: rgba(11,7,20,.74);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.6;
  max-width: 70ch;
}

.hero-ctas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 4px;
  margin-bottom: 18px;
}

/* Banner */
.banner{
  margin-top: 18px;
  border-radius: var(--r);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  overflow:hidden;
  position:relative;
}
.banner:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(980px 360px at 20% 25%, rgba(111,42,134,.14), transparent 64%),
    radial-gradient(980px 360px at 80% 55%, rgba(138,70,161,.10), transparent 64%);
  z-index:0;
}
.banner-inner{
  position:relative;
  z-index:1;
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.banner strong{
  font-size: clamp(18px, 1.55vw, 22px);
  letter-spacing:-0.03em;
}
.banner .mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: rgba(11,7,20,.78);
  background: rgba(255,255,255,.55);
  border:1px solid rgba(11,7,20,.10);
  padding: 10px 12px;
  border-radius: var(--r);
  font-weight: 850;
  font-size: 13px;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.arrow{ opacity:.75; }

/* Ultra-minimal outlined circles */
.icon-circle{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(111,42,134,.70);
  display:inline-block;
}
.icon-circle.sm{
  width: 10px;
  height: 10px;
  border-width: 2px;
}

/* Section header */
.section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin: 42px 4px 18px;
}
.section-header h2{
  margin:0;
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 1000;
  letter-spacing:-0.04em;
  line-height: 1.1;
}
.section-header p{
  margin:0;
  color: rgba(11,7,20,.60);
  max-width: 58ch;
  line-height: 1.4;
  font-weight: 800;
}

/* Offerings split */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
}

/* Cards */
.card, .how-card{
  border-radius: var(--r);
  padding: 26px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.card:before, .how-card:before{
  content:"";
  position:absolute; inset:-2px;
  opacity:.9;
  z-index:0;
}
.card > *, .how-card > *{ position:relative; z-index:1; }

.card.enterprise:before{
  background:
    radial-gradient(900px 340px at 18% 0%, rgba(111,42,134,.14), transparent 64%),
    radial-gradient(900px 340px at 90% 22%, rgba(138,70,161,.10), transparent 66%);
}
.card.prosumer:before{
  background:
    radial-gradient(900px 340px at 18% 0%, rgba(138,70,161,.12), transparent 64%),
    radial-gradient(900px 340px at 90% 22%, rgba(111,42,134,.10), transparent 66%);
}

/* Card top row */
.tagrow{
  display:flex; justify-content:space-between; align-items:center;
  gap: 12px;
  margin-bottom: 18px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: var(--r);
  background: rgba(255,255,255,.55);
  border:1px solid rgba(11,7,20,.10);
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(11,7,20,.78);
}
.tag .mini{
  width:10px; height:10px;
  border-radius: 999px;
  border: 2px solid rgba(111,42,134,.70);
}
.taghint{
  color: rgba(11,7,20,.56);
  font-weight: 900;
  font-size: 13px;
}

/* Product heading */
.product{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin: 6px 0 6px;
}
.product h3{
  margin:0;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 1100;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

/* ONLY CHANGE KEPT: hint below title */
.product-hint{
  margin: 0 0 16px;
  color: rgba(11,7,20,.58);
  font-weight: 900;
  font-size: 13.5px;
  line-height: 1.25;
  max-width: 60ch;
}

.lead{
  margin: 0 0 18px;
  color: rgba(11,7,20,.70);
  line-height: 1.65;
  font-size: 15px;
  max-width: 62ch;
}

/* Subpanels */
.subpanels{
  display:grid;
  gap: 12px;
  margin-top: 18px;
}
.subpanel{
  padding: 14px 14px;
  border-radius: var(--r);
  border:1px solid rgba(11,7,20,.10);
  background: rgba(255,255,255,.60);
  box-shadow: var(--shadow2);
}
.subpanel-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(11,7,20,.85);
}
.subpanel-text{
  color: rgba(11,7,20,.62);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.5;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* How it works */
.how-card:before{
  background:
    radial-gradient(980px 380px at 20% 25%, rgba(111,42,134,.12), transparent 66%),
    radial-gradient(980px 380px at 80% 55%, rgba(138,70,161,.10), transparent 66%);
}

.flow{
  display:grid;
  gap: 14px;
  margin-top: 2px;
}

.step{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  padding: 16px 16px;
  border-radius: var(--r);
  border:1px solid rgba(11,7,20,.10);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow2);
}

.stepicon{
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  border:1px solid rgba(11,7,20,.10);
  background: rgba(255,255,255,.60);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}

/* Numbered outlined circle */
.num-circle{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid rgba(111,42,134,.72);
  color: rgba(78,29,97,.92);
  font-weight: 1000;
  font-size: 12px;
  line-height: 1;
  display:grid;
  place-items:center;
}

.step h3{
  margin:0 0 6px;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing:-0.02em;
  color: rgba(11,7,20,.88);
}
.step p{
  margin:0;
  color: rgba(11,7,20,.62);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 800;
}

/* Footer */
footer{
  margin-top: 34px;
  color: rgba(11,7,20,.55);
  font-size: 13px;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  padding: 18px 6px 0;
}
.tiny a{
  color: rgba(78,29,97,.88);
  border-bottom: 1px solid rgba(78,29,97,.25);
}
.tiny a:hover{ color: rgba(78,29,97,1); }
.rightlinks{ display:flex; gap:10px; flex-wrap:wrap; }
.sep{ opacity:.45; }

:focus-visible{
  outline: 2px solid rgba(111,42,134,.45);
  outline-offset: 3px;
  border-radius: 0px;
}
