/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DZINER — LANDING STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body { background: var(--cream); color: var(--ink); }

/* NAV */
.l-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 52px;
  display: flex; align-items: center; justify-content: space-between;
  mix-blend-mode: multiply;
  transition: background .2s, backdrop-filter .2s, border-bottom .2s;
}
.l-nav-logo {
  font-family: var(--sans); font-size: 17px; font-weight: 800;
  color: var(--ink); text-decoration: none; letter-spacing: -.4px;
}
.l-nav-logo em { color: var(--accent); font-style: normal; }
.l-nav-r { display: flex; align-items: center; gap: 20px; }
.l-nav-link { font-size: 12.5px; font-weight: 500; color: var(--mid); text-decoration: none; transition: color .14s; }
.l-nav-link:hover { color: var(--ink); }
.l-nav-link.active { color: var(--ink); border-bottom: 1.5px solid var(--ink); padding-bottom: 1px; }
[data-theme="dark"] .l-nav-link.active { color: #e8e8f0; border-color: #e8e8f0; }
.l-nav-open { font-size: 12.5px; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 1px; transition: all .14s; }
.l-nav-open:hover { color: var(--accent); border-color: var(--accent); }

/* ── HERO ── */
.l-hero {
  min-height: 100svh;
  padding: 140px 52px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  transition: background .35s;
}

/* animated gradient blobs */
.l-hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.l-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 1;
  will-change: transform;
}
.l-hero-blob-1 {
  width: 520px; height: 520px;
  top: -120px; right: -80px;
  background: radial-gradient(ellipse, rgba(108,79,255,.12) 0%, transparent 70%);
  animation: blob1 14s ease-in-out infinite;
}
.l-hero-blob-2 {
  width: 420px; height: 420px;
  bottom: 20px; left: -100px;
  background: radial-gradient(ellipse, rgba(108,79,255,.08) 0%, transparent 70%);
  animation: blob2 18s ease-in-out infinite;
}
.l-hero-blob-3 {
  width: 340px; height: 340px;
  top: 30%; right: 25%;
  background: radial-gradient(ellipse, rgba(180,140,255,.09) 0%, transparent 70%);
  animation: blob3 22s ease-in-out infinite;
}
/* dark mode: blobs more vivid */
[data-theme="dark"] .l-hero-blob-1 {
  background: radial-gradient(ellipse, rgba(108,79,255,.28) 0%, transparent 70%);
}
[data-theme="dark"] .l-hero-blob-2 {
  background: radial-gradient(ellipse, rgba(108,79,255,.18) 0%, transparent 70%);
}
[data-theme="dark"] .l-hero-blob-3 {
  background: radial-gradient(ellipse, rgba(180,140,255,.16) 0%, transparent 70%);
}

/* all direct hero children sit above blobs */
.l-hero > *:not(.l-hero-blobs) { position: relative; z-index: 1; }

.l-hero-overline {
  grid-column: 1; grid-row: 1;
  font-family: var(--mono); font-size: 10.5px; color: var(--mid);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: up .6s .1s ease forwards;
}
.l-hero-overline::before { content: ''; width: 28px; height: 1px; background: var(--mid); flex-shrink: 0; }
.l-hero-title-block {
  grid-column: 1; grid-row: 2;
  align-self: center;
  opacity: 0; animation: up .7s .15s ease forwards;
}
.l-hero-title {
  font-family: var(--sans);
  font-size: clamp(68px, 9vw, 128px);
  font-weight: 800; line-height: .96;
  letter-spacing: -4px; color: var(--ink);
  transition: color .35s;
}
.l-hero-em {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; color: var(--mid); letter-spacing: -3px;
  transition: color .35s;
}
.l-hero-side {
  grid-column: 2; grid-row: 1 / 3;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-left: 64px; padding-bottom: 8px;
  opacity: 0; animation: fade .8s .4s ease forwards;
}
.l-hero-desc {
  font-size: 16px; line-height: 1.72; color: var(--mid);
  font-weight: 400; max-width: 360px; margin-bottom: 36px;
  transition: color .35s;
}
.l-hero-desc strong { color: var(--ink); font-weight: 600; transition: color .35s; }
.l-hero-cta-row { display: flex; align-items: center; gap: 18px; }
.l-cta-main {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; background: var(--ink); color: var(--cream);
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  border-radius: 4px; transition: all .2s; font-family: var(--sans);
}
.l-cta-main:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(108,79,255,.3); }
.l-cta-main svg { width: 13px; height: 13px; transition: transform .2s; }
.l-cta-main:hover svg { transform: translateX(3px); }
.l-cta-ghost {
  font-size: 13px; color: var(--mid); text-decoration: none;
  font-weight: 500; border-bottom: 1px solid var(--cream3);
  padding-bottom: 1px; transition: all .14s;
}
.l-cta-ghost:hover { color: var(--ink); border-color: var(--ink); }
.l-hero-footnote {
  grid-column: 1 / 3; grid-row: 3;
  margin-top: 80px; padding-top: 28px;
  border-top: 1px solid var(--cream3);
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; animation: up .6s .6s ease forwards;
  transition: border-color .35s;
}
.l-hero-fn-left {
  font-family: var(--mono); font-size: 10px; color: var(--mid2);
  letter-spacing: .5px; display: flex; gap: 32px;
  transition: color .35s;
}
.l-hero-fn-right { font-family: var(--mono); font-size: 10px; color: var(--mid2); letter-spacing: .5px; transition: color .35s; }

/* STATEMENT */
.l-statement { background: var(--ink); color: var(--cream); padding: 120px 52px; }
.l-statement-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.l-statement-label { font-family: var(--mono); font-size: 10px; color: var(--mid2); letter-spacing: 2px; text-transform: uppercase; padding-top: 8px; }
.l-statement-text { font-family: var(--serif); font-size: clamp(32px, 4vw, 56px); line-height: 1.18; font-weight: 400; color: var(--cream); letter-spacing: -.5px; }
.l-statement-text em { font-style: italic; color: var(--accent2); }
.l-statement-text strong { font-style: normal; font-family: var(--sans); font-weight: 800; color: #fff; }
.l-statement-sub { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.l-st-item { border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; }
.l-st-num { font-family: var(--sans); font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1.5px; margin-bottom: 6px; }
.l-st-lbl { font-size: 12.5px; color: var(--mid2); line-height: 1.5; }

/* MARQUEE */
.l-marquee { background: var(--ink2); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); overflow: hidden; padding: 18px 0; }
.l-mtrack { display: flex; animation: marquee 28s linear infinite; width: max-content; }
.l-mitem { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.2); padding: 0 32px; white-space: nowrap; letter-spacing: .5px; display: flex; align-items: center; gap: 10px; }
.l-mitem span { color: var(--accent); font-size: 14px; }

/* PROCESS */
.l-process { background: var(--cream); padding: 120px 52px; transition: background .35s; }
.l-process-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; }
.l-process-title { font-family: var(--sans); font-size: clamp(38px, 5vw, 72px); font-weight: 800; letter-spacing: -2.5px; line-height: 1; color: var(--ink); transition: color .35s; }
.l-process-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--mid); }
.l-process-note { font-size: 13px; color: var(--mid); max-width: 240px; text-align: right; line-height: 1.6; }
.l-pstep { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 32px; align-items: start; padding: 32px 0; border-top: 1px solid var(--cream3); transition: background .2s, border-color .35s; }
.l-pstep:last-child { border-bottom: 1px solid var(--cream3); }
.l-pstep:hover { background: rgba(108,79,255,.025); }
.l-pstep-n { font-family: var(--mono); font-size: 11px; color: var(--mid2); letter-spacing: .5px; padding-top: 4px; }
.l-pstep-title { font-size: 22px; font-weight: 700; letter-spacing: -.4px; color: var(--ink); line-height: 1.2; transition: color .35s; }
.l-pstep-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--mid); }
.l-pstep-desc { font-size: 13.5px; color: var(--mid); line-height: 1.68; font-weight: 400; }

/* TRUTH */
.l-truth { background: var(--ink2); padding: 2px; }
.l-truth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.l-truth-cell { padding: 48px 40px; background: var(--ink2); border: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden; transition: background .2s; }
.l-truth-cell:hover { background: var(--ink3); }
.l-accent-cell { background: var(--accent) !important; border-color: var(--accent) !important; }
.l-accent-cell:hover { background: var(--accent2) !important; }
.l-tc-tag { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; display: block; }
.l-accent-cell .l-tc-tag { color: rgba(255,255,255,.6); }
.l-tc-title { font-size: clamp(22px, 3vw, 38px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; color: rgba(255,255,255,.9); margin-bottom: 14px; }
.l-accent-cell .l-tc-title { color: #fff; }
.l-tc-desc { font-size: 13.5px; line-height: 1.68; color: rgba(255,255,255,.45); }
.l-accent-cell .l-tc-desc { color: rgba(255,255,255,.75); }
.l-tc-num { position: absolute; bottom: 24px; right: 32px; font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.12); }
.l-accent-cell .l-tc-num { color: rgba(255,255,255,.3); }

/* CAPABILITIES */
.l-cap { background: var(--cream); padding: 120px 52px; transition: background .35s; }
.l-cap-header { margin-bottom: 80px; }
.l-cap-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid2); margin-bottom: 16px; }
.l-cap-title { font-size: clamp(36px, 5vw, 72px); font-weight: 800; letter-spacing: -2.5px; line-height: 1; color: var(--ink); transition: color .35s; }
.l-cap-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--mid); }
.l-cap-item { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; padding: 28px 0; border-bottom: 1px solid var(--cream3); transition: all .18s; }
.l-cap-item:first-child { border-top: 1px solid var(--cream3); }
.l-cap-item:hover .l-cap-arrow { transform: translateX(4px); opacity: 1; }
.l-cap-item:hover .l-cap-item-title { color: var(--accent); }
.l-cap-item-l { display: flex; align-items: baseline; gap: 24px; }
.l-cap-item-n { font-family: var(--mono); font-size: 10px; color: var(--mid2); letter-spacing: .5px; flex-shrink: 0; width: 24px; }
.l-cap-item-title { font-size: clamp(20px, 2.5vw, 32px); font-weight: 700; letter-spacing: -.8px; color: var(--ink); transition: color .14s; }
.l-cap-item-tag { font-family: var(--mono); font-size: 10px; color: var(--mid2); letter-spacing: .5px; }
.l-cap-arrow { width: 20px; height: 20px; opacity: .2; transition: all .18s; flex-shrink: 0; color: var(--ink); }

/* CLOSE */
.l-close { background: var(--ink); min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 120px 52px; text-align: center; position: relative; overflow: hidden; }
.l-close-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(108,79,255,.15) 0%, transparent 70%); pointer-events: none; animation: breathe 5s ease-in-out infinite; }
.l-close-pre { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.25); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 32px; position: relative; z-index: 1; }
.l-close-title { font-family: var(--sans); font-size: clamp(52px, 8vw, 110px); font-weight: 800; letter-spacing: -4px; line-height: .96; color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.l-close-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: rgba(255,255,255,.3); }
.l-close-sub { font-size: 16px; color: rgba(255,255,255,.4); max-width: 440px; line-height: 1.7; margin-bottom: 52px; position: relative; z-index: 1; }
.l-close-cta { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border-radius: 5px; background: #fff; color: var(--ink); font-size: 15px; font-weight: 800; text-decoration: none; transition: all .2s; position: relative; z-index: 1; font-family: var(--sans); }
.l-close-cta:hover { background: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(108,79,255,.4); }
.l-close-cta svg { width: 15px; height: 15px; transition: transform .2s; }
.l-close-cta:hover svg { transform: translateX(3px); }

/* FOOTER */
.l-footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); padding: 32px 52px; display: flex; align-items: center; justify-content: space-between; }
.l-footer-logo { font-family: var(--sans); font-size: 15px; font-weight: 800; color: rgba(255,255,255,.7); text-decoration: none; letter-spacing: -.3px; }
.l-footer-logo em { color: var(--accent); font-style: normal; }
.l-footer-links { display: flex; gap: 24px; }
.l-footer-links a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .14s; font-weight: 500; }
.l-footer-links a:hover { color: rgba(255,255,255,.7); }
.l-footer-mono { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .5px; }
