/* ============================================================
   OWNIQ MARKETING · One-Page Website
   CI nach Owniq Brand Playbook v1.0 — Amber führt, light-only,
   Navy nur als punktuelles Akzent-Element.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,700;0,800;1,300;1,400;1,500;1,800&display=swap');

:root{
  --amber:#D97706;
  --amber-soft:#FEF3C7;
  --amber-wash:#FBE5C0;
  --navy:#0F1B3D;
  --ink:#1C1917;
  --bg:#FAFAF9;
  --white:#FFFFFF;
  --muted:#6B6660;      /* secondary / grau */
  --faint:#9C968E;      /* captions */
  --line:#ECE9E4;       /* hairlines */

  --font:'Plus Jakarta Sans','Inter',system-ui,-apple-system,sans-serif;

  --r-card:14px;
  --r-btn:18px;

  --shadow:0 4px 24px rgba(217,119,6,0.08);
  --shadow-lift:0 12px 40px rgba(217,119,6,0.14);
  --shadow-soft:0 2px 12px rgba(15,27,61,0.06);

  --maxw:1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font-family:var(--font);font-weight:400;font-size:16px;line-height:1.65;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
img,svg{display:block;}
a{color:inherit;text-decoration:none;}

/* ---------- LAYOUT ---------- */
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}
section{padding:96px 0;}
.center{text-align:center;}
.section-head{max-width:760px;margin:0 auto;}
.section-head.left{margin:0;}

/* ---------- TYPE ---------- */
.eyebrow{
  font-size:11px;font-weight:800;letter-spacing:0.15em;text-transform:uppercase;
  color:var(--amber);margin:0 0 18px;
}
.display{
  font-weight:300;font-size:64px;line-height:1.04;letter-spacing:-1.5px;
  color:var(--navy);margin:0;text-wrap:balance;
}
.display em,.h1 em,.h2 em,.sec-head em{
  font-style:italic;font-weight:300;color:var(--amber);display:block;
}
h1,.h1{font-weight:300;font-size:44px;line-height:1.08;letter-spacing:-1px;color:var(--navy);margin:0;text-wrap:balance;}
h2,.h2,.sec-head{font-weight:300;font-size:38px;line-height:1.14;letter-spacing:-0.6px;color:var(--navy);margin:0;text-wrap:balance;}
.sec-head em{font-size:1em;}
h3,.h3{font-weight:500;font-size:24px;line-height:1.25;letter-spacing:-0.3px;color:var(--navy);margin:0;}
.lead{font-size:18px;line-height:1.7;color:var(--muted);margin:18px 0 0;text-wrap:pretty;}
.body{font-size:16px;line-height:1.75;color:var(--ink);margin:0;text-wrap:pretty;}
.body.muted{color:var(--muted);}
.caption{font-size:12px;line-height:1.6;color:var(--faint);margin:0;}
.amber{color:var(--amber);}
strong,.em{font-weight:800;}

/* ---------- WORDMARK ---------- */
.wordmark{font-weight:300;letter-spacing:-0.4px;white-space:nowrap;}
.wordmark b{font-weight:800;color:var(--navy);}
.wordmark span{font-weight:300;color:var(--amber);margin-left:0.24em;}
.wordmark.on-navy b{color:var(--white);}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;align-items:center;gap:9px;cursor:pointer;border:2px solid transparent;
  font-family:var(--font);font-size:16px;font-weight:800;letter-spacing:-0.2px;
  padding:14px 32px;border-radius:var(--r-btn);transition:all .18s cubic-bezier(.2,.8,.2,1);
}
.btn i{width:18px;height:18px;}
.btn-primary{background:var(--amber);color:var(--white);box-shadow:var(--shadow);}
.btn-primary:hover{filter:brightness(1.06);box-shadow:var(--shadow-lift);transform:translateY(-1px);}
.btn-ghost{background:transparent;color:var(--amber);border-color:var(--amber);}
.btn-ghost:hover{background:var(--amber-soft);}
.btn-white{background:var(--white);color:var(--navy);box-shadow:var(--shadow-soft);}
.btn-white:hover{transform:translateY(-1px);box-shadow:0 14px 40px rgba(15,27,61,0.18);}
.btn-sm{padding:10px 22px;font-size:15px;}
.btn-lg{padding:18px 40px;font-size:18px;}
.tlink{color:var(--amber);font-weight:700;display:inline-flex;align-items:center;gap:7px;}
.tlink:hover{text-decoration:underline;}
.tlink i{width:16px;height:16px;}

/* ---------- NAV ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;background:var(--white);
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.nav-in{max-width:var(--maxw);margin:0 auto;padding:14px 32px;display:flex;align-items:center;justify-content:space-between;gap:24px;}
.nav-brand{font-size:21px;}
.nav-links{display:flex;align-items:center;gap:28px;}
.nav-links a{font-size:15px;font-weight:500;color:var(--ink);transition:color .15s;}
.nav-links a:hover{color:var(--amber);}
.nav-right{display:flex;align-items:center;gap:18px;}
.page{padding-top:64px;}

/* ---------- CARDS ---------- */
.card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-card);
  box-shadow:var(--shadow);padding:32px;transition:transform .2s ease, box-shadow .2s ease;
}
.card.hover:hover{transform:translateY(-3px);box-shadow:var(--shadow-lift);}
.card-ic{width:30px;height:30px;color:var(--amber);margin-bottom:18px;}
.card-ic i{width:30px;height:30px;}
.card h3{margin-bottom:8px;}
.card .body{color:var(--muted);}

/* topline accent */
.card.topline{border-top:2px solid var(--amber);}

/* numbered cards */
.num{font-size:15px;font-weight:800;color:var(--amber);letter-spacing:0.04em;}
.num-lg{font-size:34px;font-weight:800;color:var(--amber);line-height:1;}

/* ---------- GRIDS ---------- */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.cols-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.cols-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.cols-2{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.steps-7{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.steps-7 .card:nth-child(5){grid-column:1;}

/* ---------- HERO ---------- */
.hero{padding:120px 0 96px;}
.hero .cta-row{display:flex;gap:16px;margin-top:36px;flex-wrap:wrap;}
.trust{margin-top:34px;font-size:13px;color:var(--muted);line-height:1.6;max-width:520px;}

/* hero module tiles visual */
.mods{
  background:var(--white);border:1px solid var(--line);border-radius:22px;
  box-shadow:var(--shadow);padding:28px;display:grid;grid-template-columns:repeat(4,1fr);gap:14px;
}
.mod{
  background:var(--bg);border:1px solid var(--line);border-radius:12px;padding:16px 14px;
  box-shadow:var(--shadow-soft);min-height:96px;display:flex;flex-direction:column;justify-content:space-between;
}
.mod .n{font-size:13px;font-weight:800;color:var(--amber);}
.mod .bar{height:3px;width:24px;background:var(--amber);border-radius:2px;margin:10px 0;}
.mod .lbl{font-size:13px;font-weight:700;color:var(--navy);line-height:1.2;}
.mod.wide{grid-column:span 1;}

/* ---------- STATS ---------- */
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:56px;}
.stat{text-align:center;}
.stat .v{font-size:64px;font-weight:800;color:var(--amber);line-height:1;letter-spacing:-2px;}
.stat .k{font-size:16px;color:var(--muted);margin-top:12px;line-height:1.5;max-width:300px;margin-left:auto;margin-right:auto;}

/* ---------- DIVIDER ---------- */
.amber-rule{height:2px;background:var(--amber);width:100%;}

/* ---------- SYSTEM INFOGRAPHIC (sec 3) ---------- */
.sysfig{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.sysfig .col-head{font-size:14px;font-weight:800;letter-spacing:0.04em;margin-bottom:18px;text-align:center;}
.sysfig .col-head.grey{color:var(--muted);}
.sysfig .col-head.amber{color:var(--amber);}
.figbox{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-card);
  box-shadow:var(--shadow);padding:24px;height:300px;position:relative;
}
/* loose / chaotic side */
.loose{display:flex;flex-wrap:wrap;gap:16px;align-content:center;justify-content:center;height:100%;}
.loose .ic{
  width:64px;height:64px;border-radius:12px;background:var(--bg);border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;color:var(--faint);box-shadow:var(--shadow-soft);
}
.loose .ic i{width:26px;height:26px;}
.loose .ic:nth-child(1){transform:rotate(-6deg);}
.loose .ic:nth-child(2){transform:rotate(5deg);}
.loose .ic:nth-child(3){transform:rotate(-3deg);}
.loose .ic:nth-child(4){transform:rotate(7deg);}
/* connected system side */
.system{height:100%;}
.system svg.lines{position:absolute;inset:0;width:100%;height:100%;}
.system .node{
  position:absolute;width:58px;height:58px;border-radius:12px;background:var(--amber-soft);
  border:1px solid var(--amber-wash);display:flex;align-items:center;justify-content:center;color:var(--amber);
  box-shadow:var(--shadow-soft);z-index:2;
}
.system .node i{width:24px;height:24px;}
.system .n-tl{top:30px;left:32px;} .system .n-tr{top:30px;right:32px;}
.system .n-bl{bottom:30px;left:32px;} .system .n-br{bottom:30px;right:32px;}
.system .core{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:96px;height:96px;border-radius:50%;
  background:var(--amber);color:var(--white);display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:800;z-index:3;box-shadow:0 8px 28px rgba(217,119,6,0.45);
}
.bigquote{font-size:32px;font-weight:300;font-style:italic;color:var(--amber);line-height:1.25;letter-spacing:-0.5px;text-wrap:balance;}

/* ---------- STEPS (sec 6) ---------- */
.twostep{display:flex;flex-direction:column;gap:0;}
.step{display:flex;gap:20px;align-items:flex-start;}
.step .dot{
  width:48px;height:48px;border-radius:50%;background:var(--amber);color:var(--white);
  font-size:20px;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0;
  box-shadow:0 6px 18px rgba(217,119,6,0.3);
}
.step .txt{padding-top:10px;font-size:18px;font-weight:500;color:var(--navy);line-height:1.4;}
.step-line{width:2px;height:48px;background:var(--amber);margin-left:23px;}

/* ---------- CHECKLIST (sec 7) ---------- */
.checks{display:flex;flex-direction:column;gap:18px;margin-top:8px;}
.check{display:flex;gap:14px;align-items:flex-start;}
.check .ck{width:26px;height:26px;border-radius:50%;background:var(--amber-soft);color:var(--amber);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.check .ck i{width:15px;height:15px;}
.check .t{font-size:16px;color:var(--ink);line-height:1.5;padding-top:1px;}
.navy-card{
  background:var(--navy);color:var(--white);border-radius:var(--r-card);padding:36px;
  box-shadow:0 16px 48px rgba(15,27,61,0.22);
}
.navy-card .body{color:rgba(255,255,255,0.86);}
.navy-card .em-line{font-style:italic;font-weight:300;font-size:18px;color:var(--white);margin:18px 0 26px;}

/* ---------- TEAM (sec 8) ---------- */
.avatar{
  width:48px;height:48px;border-radius:50%;background:var(--navy);color:var(--white);
  font-size:20px;font-weight:800;display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.role{font-size:12px;font-weight:800;letter-spacing:0.12em;text-transform:uppercase;color:var(--amber);margin:6px 0 14px;}

/* ---------- FINAL CTA (sec 10) ---------- */
.cta-amber{background:var(--amber);color:var(--white);text-align:center;}
.cta-amber .display{color:var(--white);}
.cta-amber .display em{color:var(--white);opacity:0.92;}
.cta-amber .cards{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:680px;margin:48px auto 40px;}
.cta-amber .card{text-align:left;}
.cta-amber .card h3{color:var(--navy);}
.cta-amber .card .body{color:var(--muted);}
.cta-link{color:var(--white);font-size:13px;opacity:0.9;margin-top:22px;display:inline-block;}

/* ---------- NAV / FOOTER LOGO ---------- */
.nav-logo{height:30px;width:auto;display:block;}
.footer-logo{height:30px;width:auto;display:block;}

/* ---------- TEAM PHOTO AVATARS ---------- */
.avatar-photo{
  width:88px;height:88px;border-radius:50%;object-fit:cover;object-position:center top;
  margin-bottom:18px;border:3px solid #fff;box-shadow:0 8px 22px rgba(15,27,61,0.18);
}

/* ---------- HERO DASHBOARD MOCK ---------- */
.hero-visual-wrap{position:relative;}
.hero-blob{
  position:absolute;width:420px;height:420px;border-radius:50%;right:-80px;top:-40px;z-index:0;
  background:radial-gradient(circle, rgba(217,119,6,0.16) 0%, rgba(217,119,6,0) 70%);
  filter:blur(4px);pointer-events:none;
}
.hero-nodes{position:absolute;left:-46px;bottom:-40px;width:170px;height:170px;z-index:0;opacity:.85;
  animation:floaty 7s ease-in-out infinite;}
.dash{
  position:relative;z-index:2;background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;
  box-shadow:0 34px 80px rgba(15,27,61,0.18);
  transform:perspective(1500px) rotateY(-7deg) rotateX(2.5deg) rotate(-0.4deg);
  translate:0 0;animation:floaty 6s ease-in-out infinite;transition:transform .55s cubic-bezier(.2,.8,.2,1);
}
.dash:hover{transform:perspective(1500px) rotateY(0deg) rotateX(0deg) rotate(0deg);}
@keyframes floaty{0%,100%{translate:0 0;}50%{translate:0 -11px;}}
.dash-bar{display:flex;align-items:center;gap:8px;padding:11px 15px;border-bottom:1px solid var(--line);background:var(--bg);}
.dash-bar .dots{display:flex;gap:6px;}
.dash-bar .dots span{width:9px;height:9px;border-radius:50%;background:#E3DED6;}
.dash-bar .url{font-size:11px;color:var(--faint);margin-left:6px;font-weight:600;}
.dash-bar .mlogo{height:15px;margin-left:auto;}
.dash-body{padding:20px;}
.dash-hello{font-size:21px;font-weight:300;color:var(--navy);letter-spacing:-0.4px;line-height:1.15;}
.dash-hello b{font-weight:800;color:var(--amber);}
.dash-sub{font-size:11.5px;color:var(--muted);margin-top:4px;}
.dash-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:9px;margin-top:16px;}
.dstat{background:var(--bg);border:1px solid var(--line);border-radius:10px;padding:10px 9px;}
.dstat .l{font-size:7.5px;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;color:var(--amber);}
.dstat .v{font-size:19px;font-weight:800;color:var(--navy);margin-top:5px;line-height:1;}
.dstat .v small{font-size:11px;color:var(--faint);font-weight:700;}
.dstat .k{font-size:8.5px;color:var(--muted);margin-top:4px;line-height:1.25;}
.dash-h{font-size:12.5px;font-weight:800;color:var(--navy);margin:18px 0 10px;letter-spacing:-0.2px;}
.dmods{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;}
.dmod{background:#fff;border:1px solid var(--line);border-radius:9px;padding:9px 9px 10px;box-shadow:var(--shadow-soft);}
.dmod .mn{font-size:7.5px;font-weight:800;color:var(--amber);letter-spacing:0.05em;}
.dmod .mt{font-size:10px;font-weight:700;color:var(--navy);margin:3px 0 8px;line-height:1.12;min-height:22px;}
.dmod .pbar{height:4px;border-radius:2px;background:var(--amber-soft);overflow:hidden;}
.dmod .pbar i{display:block;height:100%;background:var(--amber);border-radius:2px;}
.dmod .pct{font-size:8px;font-weight:800;color:var(--muted);margin-top:5px;}

/* ---------- FLOW CONNECTOR (sec 5) ---------- */
.flowline{position:relative;}
.flowline::before{
  content:"";position:absolute;left:6%;right:6%;top:38px;height:2px;z-index:0;
  background:repeating-linear-gradient(90deg,var(--amber-wash) 0 14px,transparent 14px 26px);
}
.flowline .card{position:relative;z-index:1;}

/* ---------- SCROLL REVEAL ---------- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);}
.reveal.in{opacity:1;transform:none;}
.reveal.d1{transition-delay:.07s;} .reveal.d2{transition-delay:.14s;}
.reveal.d3{transition-delay:.21s;} .reveal.d4{transition-delay:.28s;}
.reveal.d5{transition-delay:.35s;} .reveal.d6{transition-delay:.42s;}

/* ---------- FOOTER (light, CI) ---------- */
.footer{background:var(--white);border-top:1px solid var(--line);color:var(--ink);padding:44px 0 30px;}
.footer-in{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;}
.footer a{color:var(--muted);transition:color .15s;}
.footer a:hover{color:var(--amber);}
.footer .mid{font-size:15px;font-weight:600;}
.footer .right{display:flex;gap:14px;font-size:14px;align-items:center;}
.footer-bottom{text-align:center;color:var(--faint);font-size:12px;margin-top:28px;padding-top:22px;border-top:1px solid var(--line);}

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px){
  .display{font-size:52px;}
  h2,.h2,.sec-head{font-size:32px;}
  .grid-2{gap:40px;}
  .cols-4,.steps-7{grid-template-columns:repeat(2,1fr);}
  .flowline::before{display:none;}
}
@media (max-width:760px){
  section{padding:72px 0;}
  .wrap{padding:0 22px;}
  .display{font-size:42px;letter-spacing:-1px;}
  h1,.h1{font-size:34px;}
  h2,.h2,.sec-head{font-size:28px;}
  .bigquote{font-size:24px;}
  .stat .v{font-size:48px;}
  .grid-2,.cols-3,.cols-2,.stats,.sysfig,.cta-amber .cards{grid-template-columns:1fr;display:grid;}
  .grid-2{gap:36px;}
  .nav-links{display:none;}
  .hero{padding:96px 0 72px;}
  .dash{transform:none;animation:floaty 6s ease-in-out infinite;}
  .hero-nodes{display:none;}
}
@media (max-width:460px){
  .cols-4,.steps-7{grid-template-columns:1fr;}
  .footer-in{flex-direction:column;text-align:center;}
  .dash-stats,.dmods{grid-template-columns:repeat(2,1fr);}
}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none;}
  .dash,.hero-nodes{animation:none;}
}
