@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --text:#06194a;
  --muted:#334362;
  --line:#dfe7f4;
  --blue:#1668e5;
  --green:#31933a;
  --purple:#7044c0;
  --orange:#f0691c;
  --container:1260px;
  --shadow:0 18px 48px rgba(30,54,100,.1);
}
html[data-theme="dark"]{
  --bg:#0d1423;
  --surface:#151f31;
  --text:#f4f7ff;
  --muted:#aebbd0;
  --line:#2a3852;
  --shadow:0 18px 48px rgba(0,0,0,.34);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:90px}
body{
  margin:0;min-width:320px;background:var(--bg);color:var(--text);
  font-family:Manrope,system-ui,sans-serif;line-height:1.55;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit}
img{display:block;max-width:100%}
.container{width:min(var(--container),calc(100% - 42px));margin:auto}
.scroll-progress{position:fixed;left:0;top:0;width:0;height:3px;background:linear-gradient(90deg,var(--blue),#54a3ff);z-index:9999}

.site-header{
  height:78px;position:sticky;top:0;z-index:1000;
  background:color-mix(in srgb,var(--bg) 90%,transparent);
  backdrop-filter:blur(18px);border-bottom:1px solid transparent;
}
.site-header.scrolled{border-color:var(--line);box-shadow:0 8px 26px rgba(20,40,80,.07)}
.header-inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:28px}
.brand{display:grid;line-height:1.1}
.brand strong{font-size:1.16rem}
.brand span{font-size:.76rem;color:var(--muted);margin-top:5px}
.main-nav{display:flex;gap:30px;font-size:.83rem;font-weight:800}
.main-nav a{position:relative}
.main-nav a:after{content:"";position:absolute;left:0;right:100%;bottom:-9px;height:2px;background:var(--blue);transition:.2s}
.main-nav a:hover:after,.main-nav a.active:after{right:0}
.header-actions{display:flex;align-items:center;gap:9px}
.theme-toggle,.language-toggle,.menu-toggle{
  border:1px solid var(--line);background:var(--surface);color:var(--text);
  border-radius:999px;cursor:pointer;
}
.theme-toggle{width:52px;height:36px;display:flex;align-items:center;justify-content:center;gap:4px;font-size:.8rem}
html[data-theme="dark"] .theme-toggle .sun{opacity:.35}
html[data-theme="light"] .theme-toggle .moon{opacity:.35}
.language-toggle{height:36px;padding:0 15px;font-size:.78rem;font-weight:800}
.menu-toggle{display:none;width:42px;height:38px;padding:9px;border-radius:12px}
.menu-toggle span{display:block;height:2px;background:currentColor;margin:5px 0;transition:.2s}

.hero{min-height:455px;overflow:hidden;background:linear-gradient(105deg,#fff 0%,#f9fbff 48%,#edf5ff 100%)}
html[data-theme="dark"] .hero{background:linear-gradient(105deg,#10192a,#13213a)}
.hero-grid{display:grid;grid-template-columns:1.03fr .97fr;min-height:455px}
.hero-copy{align-self:center;padding:48px 0;position:relative;z-index:2}
.hero h1{margin:0 0 24px;font-size:clamp(3rem,5vw,5.05rem);line-height:1.06;letter-spacing:-.055em}
.hero-copy p{max-width:680px;color:var(--muted);font-size:1.04rem}
.hero-copy .hero-lead{font-size:1.1rem;color:var(--text)}
.hero-visual{position:relative;height:455px;align-self:end}
.hero-character{position:absolute;left:65px;bottom:0;height:440px;width:auto;z-index:2;filter:drop-shadow(0 16px 22px rgba(32,55,95,.12))}
.hero-blob{position:absolute;border-radius:45% 55% 58% 42% / 43% 36% 64% 57%}
.hero-blob--one{width:390px;height:350px;right:45px;top:38px;background:#d9e9ff}
.hero-blob--two{width:270px;height:245px;left:0;bottom:-112px;background:#fff0df}
.plant{position:absolute;right:-15px;bottom:0;width:130px;height:230px;z-index:3}
.stem{position:absolute;left:62px;bottom:0;width:5px;height:210px;background:#356c41;border-radius:99px;transform:rotate(4deg)}
.leaf{position:absolute;width:56px;height:92px;background:#67a85e;border-radius:80% 0 80% 0;transform-origin:bottom right}
.l1{left:10px;bottom:125px;transform:rotate(-42deg)}
.l2{right:0;bottom:145px;transform:scaleX(-1) rotate(-38deg)}
.l3{left:0;bottom:70px;transform:rotate(-58deg)}
.l4{right:-5px;bottom:88px;transform:scaleX(-1) rotate(-58deg)}
.l5{left:16px;bottom:15px;transform:rotate(-72deg)}
.l6{right:0;bottom:25px;transform:scaleX(-1) rotate(-68deg)}

.frameworks{padding:12px 0 16px}
.cards-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.method-card{
  --accent:var(--blue);--soft:#e2edff;position:relative;min-height:375px;
  overflow:hidden;padding:24px 24px 0;border-radius:18px;border:1px solid rgba(20,45,90,.04);
}
.method-card--scrum{background:linear-gradient(135deg,#eef5ff,#fafdff);--accent:var(--blue);--soft:#dceaff}
.method-card--kanban{background:linear-gradient(135deg,#f0faee,#fbfdf9);--accent:var(--green);--soft:#dff2dc}
.method-card--safe{background:linear-gradient(135deg,#f3efff,#fbf9ff);--accent:var(--purple);--soft:#e8ddff}
.method-card--less{background:linear-gradient(135deg,#fff4e9,#fffaf5);--accent:var(--orange);--soft:#ffe2cc}
html[data-theme="dark"] .method-card{background:var(--surface)}
.method-card__heading{display:flex;align-items:flex-start;gap:17px;position:relative;z-index:3}
.method-icon{
  width:68px;height:68px;flex:0 0 auto;border-radius:50%;display:grid;place-items:center;
  background:var(--soft);color:var(--accent);font-size:1.9rem;font-weight:900;
}
.people-icon{font-size:.65rem;letter-spacing:-2px}
.method-card h2{font-size:2.45rem;line-height:1;margin:2px 0 5px;letter-spacing:-.045em}
.method-card h3{margin:0;color:var(--accent);font-size:.98rem;line-height:1.32}
.method-card__body{display:grid;grid-template-columns:190px 1fr;min-height:255px;align-items:end}
.method-character{
  width:195px;height:285px;object-fit:contain;object-position:center bottom;
  align-self:end;margin-left:-12px;filter:drop-shadow(0 10px 14px rgba(34,48,72,.12));
}
.method-list{list-style:none;margin:0;padding:25px 0 62px;display:grid;gap:14px}
.method-list li{position:relative;padding-left:30px;color:#172440;font-size:.84rem}
html[data-theme="dark"] .method-list li{color:#d6dfef}
.method-list li:before{
  content:"✓";position:absolute;left:0;top:1px;width:18px;height:18px;border-radius:50%;
  display:grid;place-items:center;background:var(--accent);color:#fff;font-size:.67rem;font-weight:900;
}
.method-result{
  position:absolute;left:182px;right:12px;bottom:0;min-height:60px;display:flex;align-items:center;gap:10px;
  padding:9px 14px;background:rgba(255,255,255,.65);border-radius:17px 17px 0 0;backdrop-filter:blur(7px);
}
html[data-theme="dark"] .method-result{background:rgba(8,16,30,.38)}
.method-result>span{
  width:39px;height:39px;flex:0 0 auto;border:2px solid color-mix(in srgb,var(--accent) 45%,white);
  border-radius:50%;display:grid;place-items:center;color:var(--accent);font-size:1.1rem;font-weight:900;
}
.method-result p{margin:0;font-size:.74rem;color:#293752}
html[data-theme="dark"] .method-result p{color:#d2dbea}
.method-result strong{color:var(--accent)}

.approach{padding:0 0 12px}
.approach-panel{
  min-height:175px;border-radius:18px;overflow:hidden;display:grid;grid-template-columns:250px 1fr;
  align-items:center;background:linear-gradient(100deg,#edf5ff,#f8fbff);
}
html[data-theme="dark"] .approach-panel{background:var(--surface)}
.approach-character{height:175px;align-self:end;display:flex;justify-content:center}
.approach-character img{height:175px;width:210px;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 8px 12px rgba(34,48,72,.1))}
.approach-copy{padding:22px 28px 22px 0}
.approach-copy h2{font-size:2.3rem;margin:0 0 6px;letter-spacing:-.045em}
.approach-copy>p{margin:0 0 18px;color:#1b2947;font-size:.9rem}
html[data-theme="dark"] .approach-copy>p{color:#d3ddec}
.principles-grid{display:grid;grid-template-columns:repeat(3,1fr)}
.principles-grid article{display:flex;align-items:center;gap:12px;padding:0 19px;border-left:1px solid #b8cde8}
.principles-grid article:first-child{padding-left:0;border-left:0}
.principles-grid span{
  width:47px;height:47px;flex:0 0 auto;border:2px solid #78a9ee;border-radius:50%;
  display:grid;place-items:center;color:var(--blue);font-size:1.2rem;font-weight:900;
}
.principles-grid p{margin:0;color:#263652;font-size:.76rem}
html[data-theme="dark"] .principles-grid p{color:#ced8e9}

.results{padding:0 0 30px}
.results-panel{
  padding:12px 24px 22px;border-radius:18px;background:linear-gradient(100deg,#f4f8ff,#fafdff);
  border:1px solid #e4ebf7;
}
html[data-theme="dark"] .results-panel{background:var(--surface);border-color:var(--line)}
.section-heading{text-align:center;margin-bottom:10px}
.section-heading h2{font-size:2.15rem;margin:0 0 2px;letter-spacing:-.04em}
.section-heading p{margin:0;color:var(--muted);font-size:.82rem}
.results-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}
.results-grid article{display:flex;align-items:center;gap:12px;padding:8px}
.results-grid p{margin:0;color:#20304d;font-size:.76rem}
html[data-theme="dark"] .results-grid p{color:#d1daea}
.result-round{width:48px;height:48px;flex:0 0 auto;border-radius:50%;display:grid;place-items:center;font-size:1.22rem;font-weight:900}
.result-round--blue{background:#e1edff;color:var(--blue)}
.result-round--green{background:#e5f5e4;color:var(--green)}
.result-round--purple{background:#ede4ff;color:var(--purple);font-size:.65rem}
.result-round--orange{background:#ffead8;color:var(--orange)}

.site-footer{padding:28px 0;background:#071329;color:#fff}
.footer-inner{display:grid;grid-template-columns:1fr auto 1fr;align-items:center}
.footer-inner>div{display:grid}
.footer-inner span{font-size:.72rem;color:#aebbd0}
.footer-inner p{margin:0;color:#aebbd0;font-size:.76rem}
.footer-inner small{text-align:right;color:#aebbd0}
.scroll-top{
  position:fixed;right:18px;bottom:18px;width:45px;height:45px;border:0;border-radius:50%;
  background:var(--blue);color:#fff;box-shadow:var(--shadow);cursor:pointer;
  opacity:0;visibility:hidden;transform:translateY(12px);transition:.2s;
}
.scroll-top.visible{opacity:1;visibility:visible;transform:none}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .65s,transform .65s}
.reveal.visible{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;animation:none!important;transition:none!important}.reveal{opacity:1;transform:none}}

/* Image 1 layout overrides */
.theme-toggle{width:auto;height:36px;padding:0 9px;display:flex;align-items:center;gap:6px;border-radius:999px}
.theme-sun{color:#ffab00;font-size:.85rem;line-height:1}
.theme-moon{color:#102961;font-size:.92rem;line-height:1}
.theme-track{position:relative;width:44px;height:22px;border-radius:999px;background:#e7eefb;border:1px solid #afc3e6;flex:0 0 auto}
.theme-thumb{position:absolute;top:2px;left:2px;width:16px;height:16px;border-radius:50%;background:#fff;box-shadow:0 2px 5px rgba(20,40,75,.28);transition:transform .25s,background .25s}
html[data-theme="dark"] .theme-track{background:#1b2e59;border-color:#3b5284}
html[data-theme="dark"] .theme-thumb{transform:translateX(22px);background:#071b4f}
html[data-theme="dark"] .theme-sun{opacity:.45}
html[data-theme="light"] .theme-moon{opacity:.45}

.plant{display:none!important}
.hero-character{height:410px;left:50%;transform:translateX(-50%);object-fit:contain;mix-blend-mode:multiply}
.hero-blob--one{right:25px;width:420px;height:350px}

.cards-grid{grid-template-columns:1fr;gap:12px}
.method-card{min-height:220px;display:grid;grid-template-columns:220px minmax(0,1fr) 330px;align-items:center;padding:12px 24px;border-radius:18px}
.method-card__heading{grid-column:2;align-self:end;margin:0 18px 0;gap:0}
.method-card__heading .method-icon{position:absolute;left:24px;top:18px}
.method-card__body{grid-column:1/3;grid-row:1/3;display:grid;grid-template-columns:220px minmax(0,1fr);min-height:220px;align-items:center}
.method-character{width:205px;height:210px;margin:0;object-fit:contain;object-position:center bottom;align-self:end;mix-blend-mode:multiply}
.method-list{padding:76px 18px 20px 18px;gap:10px}
.method-result{position:static;grid-column:3;grid-row:1/3;min-height:128px;margin:0;padding:20px 22px;border-radius:17px;background:rgba(255,255,255,.5)}
html[data-theme="dark"] .method-result{background:rgba(8,16,30,.28)}
.method-card h2{font-size:2.4rem}
.method-card h3{font-size:.92rem}
.method-list li{font-size:.8rem}
.method-result p{font-size:.79rem}

.approach-panel{grid-template-columns:240px 1fr}
.approach-character img{width:210px;height:170px;object-fit:contain;object-position:center bottom;mix-blend-mode:multiply}
