:root {
      --ink: #0d1526;
      --muted: #5d6677;
      --line: rgba(13, 21, 38, 0.12);
      --paper: #f7f4ee;
      --white: #fffdf8;
      --blue: #183b8f;
      --blue-2: #2758c7;
      --gold: #c69a4a;
      --green: #1d6b59;
      --shadow: 0 24px 70px rgba(13, 21, 38, 0.12);
      --radius: 28px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(39, 88, 199, 0.13), transparent 34rem),
        radial-gradient(circle at 82% 8%, rgba(198, 154, 74, 0.16), transparent 28rem),
        var(--paper);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(247, 244, 238, 0.82);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 760;
      letter-spacing: -0.03em;
      font-size: 18px;
    }

    .mark {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--blue), var(--green));
      display: grid;
      place-items: center;
      color: white;
      font-weight: 800;
      box-shadow: 0 12px 28px rgba(24, 59, 143, 0.25);
    }

    .links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 18px;
      border-radius: 999px;
      background: var(--ink);
      color: white;
      font-weight: 720;
      box-shadow: 0 16px 36px rgba(13, 21, 38, 0.18);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .button:hover { transform: translateY(-2px); box-shadow: 0 20px 45px rgba(13, 21, 38, 0.22); }
    .button.secondary { background: white; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }

    .hero {
      max-width: var(--max);
      margin: 0 auto;
      padding: 96px 24px 54px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 56px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      background: rgba(255, 253, 248, 0.72);
      border-radius: 999px;
      color: var(--blue);
      font-weight: 760;
      font-size: 13px;
    }

    .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--gold); }

    h1 {
      margin: 22px 0 22px;
      font-size: clamp(48px, 7vw, 88px);
      line-height: 0.94;
      letter-spacing: -0.075em;
      max-width: 820px;
    }

    .lead {
      max-width: 660px;
      font-size: clamp(18px, 2vw, 22px);
      color: var(--muted);
      margin: 0 0 34px;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

    .visual {
      position: relative;
      min-height: 560px;
      border-radius: 42px;
      background:
        linear-gradient(160deg, rgba(255,255,255,.78), rgba(255,255,255,.25)),
        linear-gradient(135deg, rgba(24, 59, 143, .16), rgba(29, 107, 89, .12));
      border: 1px solid rgba(255,255,255,.7);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .orb {
      position: absolute;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(39,88,199,.26), rgba(39,88,199,0));
      top: -80px;
      right: -90px;
    }

    .paper-card {
      position: absolute;
      background: rgba(255, 253, 248, 0.9);
      border: 1px solid rgba(13, 21, 38, 0.1);
      border-radius: 24px;
      padding: 20px;
      box-shadow: 0 20px 60px rgba(13, 21, 38, 0.1);
    }

    .paper-card.main { left: 36px; right: 36px; top: 58px; }
    .paper-card.small { left: 36px; bottom: 42px; width: 45%; }
    .paper-card.tall { right: 36px; bottom: 42px; width: 38%; height: 32%; }

    .label { color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 780; }
    .metric { font-size: 42px; letter-spacing: -0.05em; font-weight: 820; margin: 8px 0; }
    .micro { color: var(--muted); font-size: 14px; }

    .diagram {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .node {
      min-height: 92px;
      border-radius: 18px;
      background: white;
      border: 1px solid var(--line);
      padding: 14px;
      font-weight: 760;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .node span { color: var(--muted); font-size: 12px; font-weight: 650; }

    section { max-width: var(--max); margin: 0 auto; padding: 72px 24px; }

    .section-head {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 34px;
    }

    h2 {
      font-size: clamp(36px, 5vw, 62px);
      line-height: 0.98;
      letter-spacing: -0.06em;
      margin: 0;
    }

    .section-head p { margin: 0; color: var(--muted); font-size: 18px; }

    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

    .card {
      background: rgba(255, 253, 248, 0.78);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 12px 44px rgba(13,21,38,.06);
    }

    .card h3 { margin: 0 0 12px; font-size: 23px; letter-spacing: -0.03em; }
    .card p { margin: 0; color: var(--muted); }

    .number {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: rgba(24, 59, 143, .1);
      color: var(--blue);
      font-weight: 820;
      margin-bottom: 28px;
    }

    .thesis {
      background: var(--ink);
      color: white;
      border-radius: 44px;
      padding: 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 42px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .thesis:after {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(198,154,74,.26), transparent 68%);
      right: -140px;
      top: -150px;
    }

    .thesis h2, .thesis p, .thesis .pill-stack { position: relative; z-index: 1; }
    .thesis p { color: rgba(255,255,255,.72); font-size: 18px; }

    .pill-stack { display: flex; flex-wrap: wrap; gap: 12px; }
    .pill { padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.86); font-weight: 680; font-size: 14px; }

    .method-visual {
      background: rgba(255, 253, 248, 0.82);
      border: 1px solid var(--line);
      border-radius: 42px;
      padding: 42px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .method-title {
      text-align: center;
      margin-bottom: 28px;
    }

    .method-title .label { color: var(--blue); }
    .method-title h2 { margin-top: 8px; }
    .method-title p { color: var(--muted); font-size: 18px; margin: 14px auto 0; max-width: 680px; }

    .method-flow {
      display: grid;
      grid-template-columns: 1fr 64px 1fr 64px 1fr;
      gap: 12px;
      align-items: center;
    }

    .method-step {
      min-height: 330px;
      border-radius: 999px;
      padding: 34px 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      border: 1px solid rgba(13,21,38,.08);
    }

    .method-step.researchers { background: radial-gradient(circle, rgba(39,88,199,.12), rgba(39,88,199,.04)); color: var(--blue); }
    .method-step.entrepreneurs { background: radial-gradient(circle, rgba(198,154,74,.16), rgba(198,154,74,.04)); color: #9a7433; }
    .method-step.companies { background: radial-gradient(circle, rgba(29,107,89,.14), rgba(29,107,89,.04)); color: var(--green); }

    .badge {
      position: absolute;
      top: 20px;
      left: 28px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 820;
      font-size: 22px;
      box-shadow: 0 12px 28px rgba(13,21,38,.16);
    }

    .researchers .badge { background: var(--blue); }
    .entrepreneurs .badge { background: var(--gold); }
    .companies .badge { background: var(--green); }

    .method-icon { font-size: 58px; line-height: 1; margin-bottom: 22px; }
    .method-step h3 { margin: 0 0 10px; font-size: 23px; letter-spacing: .08em; text-transform: uppercase; }
    .method-step p { margin: 0; color: var(--muted); max-width: 250px; }

    .flow-arrow {
      text-align: center;
      color: var(--ink);
      font-size: 56px;
      font-weight: 300;
    }

    .support-strip {
      margin-top: 34px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255,255,255,.58);
      padding: 24px;
    }

    .support-strip-title {
      text-align: center;
      font-weight: 820;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .support-strip-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }

    .support-chip {
      display: grid;
      place-items: center;
      gap: 8px;
      min-height: 92px;
      border-right: 1px solid var(--line);
      color: var(--blue);
      font-weight: 780;
      font-size: 13px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .support-chip:last-child { border-right: 0; }
    .support-chip span { font-size: 28px; }

    .support-list { display: grid; gap: 14px; }
    .support-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 16px;
      align-items: start;
      padding: 20px;
      background: rgba(255, 253, 248, 0.78);
      border: 1px solid var(--line);
      border-radius: 22px;
    }

    .check {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(29, 107, 89, .11);
      color: var(--green);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .support-item h3 { margin: 0 0 4px; font-size: 19px; letter-spacing: -0.02em; }
    .support-item p { margin: 0; color: var(--muted); }

    .team-card {
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 48px rgba(13,21,38,.1);
    }

    .avatar {
      width: 110px;
      height: 110px;
      border-radius: 28px;
      overflow: hidden;
      margin-bottom: 24px;
      border: 4px solid rgba(255,255,255,.85);
      box-shadow: 0 16px 40px rgba(13,21,38,.14);
      background: linear-gradient(135deg, rgba(24,59,143,.94), rgba(29,107,89,.88));
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .role { color: var(--blue); font-weight: 780; margin-bottom: 14px; }

    .cta {
      padding: 72px;
      border-radius: 48px;
      background:
        linear-gradient(135deg, rgba(24,59,143,.96), rgba(13,21,38,.96)),
        var(--ink);
      color: white;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 44px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .cta p { color: rgba(255,255,255,.72); font-size: 18px; }
    .cta .button { background: white; color: var(--ink); box-shadow: none; }
    .cta .button.secondary { background: transparent; color: white; border-color: rgba(255,255,255,.28); }

    .footer {
      max-width: var(--max);
      margin: 0 auto;
      padding: 34px 24px 54px;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid var(--line);
    }

    @media (max-width: 900px) {
      .links { display: none; }
      .hero, .section-head, .thesis, .cta { grid-template-columns: 1fr; }
      .hero { padding-top: 64px; }
      .visual { min-height: 500px; }
      .method-flow { grid-template-columns: 1fr; }
      .flow-arrow { transform: rotate(90deg); font-size: 42px; }
      .method-step { min-height: 250px; border-radius: 32px; }
      .support-strip-grid { grid-template-columns: repeat(2, 1fr); }
      .support-chip { border-right: 0; border-bottom: 1px solid var(--line); }
      .grid-3, .grid-2 { grid-template-columns: 1fr; }
      .thesis, .cta { padding: 34px; border-radius: 32px; }
      .footer { flex-direction: column; }
    }

    @media (max-width: 560px) {
      .paper-card.main, .paper-card.small, .paper-card.tall { left: 18px; right: 18px; width: auto; }
      .paper-card.small { bottom: 178px; }
      .paper-card.tall { bottom: 22px; min-height: 130px; }
      .diagram { grid-template-columns: 1fr; }
      .node { min-height: 70px; }
      .visual { min-height: 720px; }
      .hero-actions { align-items: stretch; }
      .button { width: 100%; }
    }