  :root{
    --bg:#FFFFFF;
    --ink:#0B0F19;
    --ink-soft:#374151;
    --muted:#6B7280;
    --muted-2:#9CA3AF;
    --line:#E6EBF5;
    --blue:#FF681F;
    --blue-deep:#E95712;
    --blue-light:#FF8A3D;
    --sky-50:#F5F9FF;
    --sky-100:#FFF1E9;
    --sky-200:#DDE7F3;
    --green:#20A15A;
    --amber:#B45309;
    --amber-bg:#FFF7ED;
    --radius-lg:24px;
    --radius-md:16px;
    --radius-sm:10px;
    --shadow-card:0 1px 2px rgba(16,24,57,0.04), 0 8px 24px rgba(16,24,57,0.06);
    --shadow-pop:0 12px 32px rgba(255,104,31,0.22);
    --font-display:'Space Grotesk', 'Inter', sans-serif;
    --font-body:'Inter', sans-serif;
    --font-mono:'JetBrains Mono', monospace;
  }

  *{box-sizing:border-box;}
  html,body{margin:0;padding:0;}
  body{
    font-family:var(--font-body);
    color:var(--ink);
    background:var(--bg);
    -webkit-font-smoothing:antialiased;
  }
  ::selection{background:var(--sky-200);}

  button{font-family:inherit;cursor:pointer;}
  input,textarea,select{font-family:inherit;}

  /* ---------- Hero ---------- */
  .hero{
    padding:34px 28px 40px;
    max-width:1180px;
    margin:0 auto;
    position:relative;
    overflow:hidden;
  }
  .hero-bg{
    position:absolute;
    inset:0;
    background:
      radial-gradient(circle at 84% 22%, rgba(163,205,255,0.18) 0%, rgba(163,205,255,0.08) 24%, rgba(255,255,255,0) 48%),
      radial-gradient(circle at 18% 8%, rgba(255,241,233,0.72) 0%, rgba(255,241,233,0.22) 20%, rgba(255,255,255,0) 42%);
    z-index:0; pointer-events:none;
  }
  .hero-brand{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:18px;
    width:100%;
    margin-bottom:38px;
    padding:16px 24px 16px 16px;
    border:1px solid rgba(221,231,243,0.82);
    border-radius:28px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.92), rgba(248,251,255,0.78));
    box-shadow:0 14px 36px rgba(17,24,39,0.055);
    backdrop-filter:blur(8px);
  }
  .hero-brand-mark{
    width:64px;
    height:64px;
    border-radius:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    box-shadow:none;
    flex-shrink:0;
  }
  .hero-brand-mark img{width:64px;height:64px;display:block;object-fit:contain;}
  .hero-brand-copy{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    min-width:0;
  }
  .hero-brand-title{
    font-family:var(--font-display);
    font-size:28px;
    line-height:1;
    font-weight:900;
    letter-spacing:0.08em;
    color:var(--blue);
    text-transform:uppercase;
  }
  .hero-brand-divider{
    width:1px;
    height:30px;
    background:#CBD5E1;
    flex:0 0 auto;
  }
  .hero-brand-subtitle{
    font-size:16.5px;
    line-height:1.25;
    color:#4B5563;
    font-weight:600;
  }
  .hero-inner{position:relative; z-index:1; display:grid; grid-template-columns:1.3fr 1fr; gap:48px; align-items:end;}
  .eyebrow{
    font-family:var(--font-mono); font-size:13px; color:var(--blue-deep);
    text-transform:uppercase; letter-spacing:0.09em; font-weight:600;
    display:flex; align-items:center; gap:8px; margin-bottom:18px;
  }
  .eyebrow .line{width:26px; height:1.5px; background:var(--blue-deep);}
  h1{
    font-family:var(--font-display);
    font-size:44px; line-height:1.12; letter-spacing:-0.02em;
    font-weight:600; margin:0 0 18px;
  }
  h1 span{color:var(--blue);}
  .hero-desc{font-size:16.5px; line-height:1.6; color:var(--ink-soft); max-width:540px; margin:0 0 28px;}
  .hero-actions{display:flex; gap:12px; flex-wrap:wrap;}
  .btn{
    border:none; border-radius:999px; padding:13px 24px; font-size:14.5px; font-weight:600;
    display:inline-flex; align-items:center; gap:8px; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  .btn-primary{background:linear-gradient(135deg, var(--blue), var(--blue-light)); color:#fff; box-shadow:var(--shadow-pop);}
  .btn-primary:hover{background:linear-gradient(135deg, var(--blue-deep), var(--blue)); transform:translateY(-1px);}
  .btn-ghost{background:var(--sky-100); color:#1F2937;}
  .btn-ghost:hover{background:var(--sky-200);}
  .btn-text{background:transparent;color:var(--muted);padding:13px 6px;}
  .btn-text:hover{color:var(--ink);}

  .hero-stats{
    background:linear-gradient(145deg, #111827 0%, #182130 58%, #1F2937 100%);
    border-radius:var(--radius-lg);
    padding:28px; color:#fff; position:relative; overflow:hidden;
    min-height:250px;
    display:flex;
    align-items:center;
  }
  .hero-stats::before{
    content:''; position:absolute; inset:0;
    background:
      radial-gradient(circle at 88% 14%, rgba(255,104,31,0.78), rgba(255,104,31,0.28) 23%, transparent 46%),
      radial-gradient(circle at 18% 96%, rgba(163,205,255,0.13), transparent 43%);
  }
  .hero-stats::after{
    content:'';
    position:absolute;
    width:190px;
    height:190px;
    right:-72px;
    top:-70px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.22);
    box-shadow:0 0 0 34px rgba(255,255,255,0.05);
  }
  .hero-stats-inner{position:relative; z-index:1;}
  .hero-stats h3{font-family:var(--font-display); font-size:14px; font-weight:600; margin:0 0 14px; color:#FFE5D6; text-transform:uppercase; letter-spacing:0.06em;}
  .hero-stats-lead{
    font-family:var(--font-display);
    font-size:24px;
    line-height:1.18;
    letter-spacing:-0.02em;
    font-weight:600;
    max-width:340px;
    margin:0 0 22px;
  }
  .hero-chip-list{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:24px;
  }
  .hero-chip{
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:7px 12px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    font-size:12.5px;
    font-weight:600;
    backdrop-filter:blur(6px);
  }
  .hero-stats-note{
    margin:0;
    max-width:360px;
    color:rgba(255,255,255,0.82);
    font-size:13.5px;
    line-height:1.5;
  }

  /* ---------- Intro sections ---------- */
  .intro-section{
    max-width:1180px;
    margin:10px auto 0;
    padding:34px 28px 24px;
    position:relative;
  }
  .section-kicker{
    font-family:var(--font-mono);
    font-size:13px;
    color:var(--blue-deep);
    text-transform:uppercase;
    letter-spacing:0.09em;
    font-weight:600;
    margin-bottom:14px;
    display:flex;
    align-items:center;
    gap:10px;
  }
  .section-kicker::before{
    content:'';
    width:26px;
    height:1.5px;
    border-radius:999px;
    background:var(--blue-deep);
    flex:0 0 auto;
  }
  .section-head{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 340px;
    gap:28px;
    align-items:start;
    margin-bottom:24px;
    padding:4px 8px 0;
  }
  .section-title{
    font-family:var(--font-display);
    font-size:30px;
    line-height:1.18;
    letter-spacing:-0.02em;
    margin:0 0 12px;
    font-weight:600;
  }
  .section-desc{
    font-size:15.5px;
    line-height:1.65;
    color:var(--ink-soft);
    margin:0;
    max-width:720px;
  }
  .section-note{
    background:linear-gradient(145deg, #111827 0%, #1F2937 100%);
    color:rgba(255,255,255,0.84);
    border-radius:var(--radius-lg);
    padding:22px 24px;
    font-size:14px;
    line-height:1.55;
    position:relative;
    overflow:hidden;
  }
  .section-note::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,104,31,0.28);
    top:-90px;
    right:-70px;
  }
  .section-note b,
  .section-note span{position:relative;}
  .section-note b{
    display:block;
    color:#fff;
    font-family:var(--font-display);
    font-size:15px;
    margin-bottom:6px;
  }
  .intro-card-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:16px;
    margin-bottom:18px;
  }
  .principle-card{
    background:#fff;
    border:1px solid var(--sky-200);
    border-radius:var(--radius-lg);
    padding:22px;
    min-height:176px;
    box-shadow:var(--shadow-card);
    position:relative;
    overflow:hidden;
    color:var(--ink);
  }
  .principle-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    right:-80px;
    top:-100px;
    background:radial-gradient(circle, rgba(255,104,31,0.12), rgba(255,255,255,0));
  }
  .principle-icon{
    width:38px;
    height:38px;
    border-radius:14px;
    background:var(--sky-100);
    border:1px solid #FFD6C2;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    margin-bottom:16px;
    box-shadow:none;
    position:relative;
  }
  .principle-card h3{
    font-family:var(--font-display);
    font-size:18px;
    margin:0 0 8px;
    letter-spacing:-0.01em;
    position:relative;
  }
  .principle-card p{
    margin:0;
    font-size:13.5px;
    line-height:1.55;
    color:var(--ink-soft);
    position:relative;
  }
  .npt-compare{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }
  .project-logic-compare{
    margin-top:2px;
  }
  .compare-card{
    border-radius:var(--radius-lg);
    padding:24px 24px 24px 28px;
    border:1.5px solid var(--line);
    position:relative;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(16,24,57,0.05);
  }
  .compare-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:5px;
  }
  .compare-card-negative{
    background:#FFFBFA;
    border-color:#FEE4E2;
  }
  .compare-card-negative::before{background:#D92D20;}
  .compare-card-positive{
    background:linear-gradient(180deg, #F5F9FF 0%, #E8F1FF 100%);
    border-color:#BFD4FF;
  }
  .compare-card-positive::before{background:var(--blue);}
  .compare-label{
    font-family:var(--font-display);
    font-size:17px;
    font-weight:600;
    margin-bottom:12px;
  }
  .compare-card-negative .compare-label{color:#B42318;}
  .compare-card-positive .compare-label{color:var(--blue-deep);}
  .compare-card ul{
    margin:0;
    padding-left:18px;
    color:var(--ink-soft);
    font-size:13.5px;
    line-height:1.65;
  }
  .compare-card li{padding-left:4px;}

  /* ---------- Project diagnostic ---------- */
  .diagnostic-section{
    max-width:1180px;
    margin:0 auto;
    padding:26px 28px 30px;
  }
  .diagnostic-shell{
    background:#fff;
    border:1.5px solid var(--sky-200);
    border-radius:32px;
    box-shadow:0 18px 46px rgba(17,24,39,0.1);
    overflow:visible;
  }
  .diagnostic-intro{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(300px, 380px);
    grid-template-areas:
      "title desc"
      "note desc";
    gap:18px 34px;
    align-items:center;
    padding:28px 34px 30px;
    background:
      radial-gradient(circle at 86% 12%, rgba(255,104,31,0.38), transparent 34%),
      linear-gradient(135deg, #111827 0%, #1F2937 100%);
    color:#fff;
    position:relative;
    overflow:hidden;
    border-radius:30px 30px 0 0;
  }
  .diagnostic-intro::before{
    content:'';
    position:absolute;
    width:360px;
    height:360px;
    border-radius:50%;
    right:-130px;
    top:-190px;
    background:rgba(255,104,31,0.16);
  }
  .diagnostic-intro > *{position:relative;}
  .diagnostic-intro .section-title{
    grid-area:title;
    color:#fff;
    margin:0;
    max-width:590px;
  }
  .diagnostic-intro .section-desc{
    grid-area:desc;
    align-self:center;
    justify-self:start;
    max-width:360px;
    margin:0;
    color:#fff;
    font-size:15.5px;
    font-weight:700;
    line-height:1.58;
  }
  .diagnostic-note{
    grid-area:note;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.22);
    border-radius:var(--radius-lg);
    padding:16px 20px;
    max-width:560px;
    color:rgba(220,232,255,0.92);
    font-size:14px;
    line-height:1.55;
  }
  .diagnostic-note b{
    display:block;
    color:#fff;
    font-family:var(--font-display);
    font-size:15px;
    margin-bottom:6px;
  }
  .diagnostic-workspace{
    display:grid;
    grid-template-columns:minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap:22px;
    padding:28px;
    background:linear-gradient(180deg, #fff 0%, var(--sky-50) 100%);
    border-radius:0 0 30px 30px;
  }
  .diagnostic-questions{
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .diagnostic-question{
    background:#fff;
    border:1.5px solid var(--sky-200);
    border-radius:var(--radius-lg);
    padding:18px;
    box-shadow:0 10px 24px rgba(17,24,39,0.06);
  }
  .diagnostic-question-head{
    display:grid;
    grid-template-columns:34px 1fr;
    gap:12px;
    align-items:start;
    margin-bottom:14px;
  }
  .diagnostic-num{
    width:34px;
    height:34px;
    border-radius:12px;
    background:var(--blue);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:var(--font-mono);
    font-size:12px;
    font-weight:600;
  }
  .diagnostic-question h3{
    font-family:var(--font-display);
    font-size:16px;
    line-height:1.3;
    margin:0 0 5px;
  }
  .diagnostic-question p{
    margin:0;
    color:var(--muted);
    font-size:12.8px;
    line-height:1.5;
  }
  .diagnostic-options{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:8px;
  }
  .diagnostic-option{
    border:1.5px solid var(--sky-200);
    border-radius:999px;
    background:#fff;
    color:var(--blue-deep);
    padding:9px 10px;
    font-size:12.8px;
    font-weight:700;
    transition:all .15s ease;
  }
  .diagnostic-option:hover{
    background:var(--sky-100);
    border-color:var(--blue);
  }
  .diagnostic-option.selected{
    background:var(--blue);
    border-color:var(--blue);
    color:#fff;
    box-shadow:0 8px 18px rgba(255,104,31,0.2);
  }
  .diagnostic-result{
    position:sticky;
    top:20px;
    align-self:start;
    height:auto;
    max-height:calc(100vh - 40px);
    overflow:auto;
    scrollbar-width:thin;
  }
  .result-empty,
  .result-card{
    border-radius:var(--radius-lg);
    padding:24px;
    min-height:320px;
  }
  .result-empty{
    background:#fff;
    border:1.5px dashed var(--sky-200);
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;
    color:var(--muted);
  }
  .result-empty span{
    font-family:var(--font-display);
    font-size:20px;
    color:var(--blue-deep);
    font-weight:600;
    margin-bottom:8px;
  }
  .result-empty p{
    margin:0 auto;
    max-width:300px;
    font-size:13.5px;
    line-height:1.55;
  }
  .result-card{
    background:#fff;
    border:1.5px solid var(--sky-200);
    box-shadow:0 16px 36px rgba(16,24,57,0.1);
  }
  .result-green{border-color:#A7F3D0;}
  .result-yellow{border-color:#FED7AA;}
  .result-red{border-color:#FECACA;}
  .result-status{
    display:flex;
    gap:14px;
    align-items:center;
    margin-bottom:14px;
  }
  .result-icon{
    width:46px;
    height:46px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--sky-100);
    font-size:22px;
  }
  .result-label{
    font-family:var(--font-mono);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.07em;
    color:var(--muted);
    margin-bottom:4px;
  }
  .result-status h3{
    font-family:var(--font-display);
    font-size:24px;
    margin:0;
    letter-spacing:-0.01em;
  }
  .result-green .result-status h3{color:var(--green);}
  .result-yellow .result-status h3{color:var(--amber);}
  .result-red .result-status h3{color:#B42318;}
  .result-text{
    margin:0 0 14px;
    color:var(--ink-soft);
    line-height:1.58;
    font-size:14px;
  }
  .result-progress{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding:11px 14px;
    border-radius:var(--radius-sm);
    background:var(--sky-100);
    color:var(--blue-deep);
    font-family:var(--font-mono);
    font-size:12px;
    margin-bottom:16px;
  }
  .result-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:18px;
  }
  .result-columns h4{
    margin:0 0 8px;
    font-size:13px;
    color:var(--ink);
  }
  .result-columns ul{
    margin:0;
    padding-left:17px;
    color:var(--ink-soft);
    font-size:12.8px;
    line-height:1.55;
  }
  .result-muted{
    margin:0;
    color:var(--muted);
    font-size:12.8px;
    line-height:1.55;
  }
  .result-next-step{
    background:var(--sky-100);
    border-left:4px solid var(--blue);
    border-radius:var(--radius-sm);
    padding:14px 16px;
    margin-bottom:18px;
  }
  .result-next-step h4{
    margin:0 0 6px;
    font-size:13px;
    color:var(--ink);
  }
  .result-next-step p{
    margin:0;
    color:var(--ink-soft);
    font-size:12.8px;
    line-height:1.55;
  }
  .diagnostic-next{width:100%; justify-content:center;}

  /* ---------- Launch roadmap ---------- */
  .launch-section{
    max-width:1180px;
    margin:0 auto;
    padding:34px 28px 44px;
  }
  .launch-hero{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 360px;
    gap:28px;
    align-items:start;
    background:linear-gradient(180deg, #fff 0%, var(--sky-50) 100%);
    border:1.5px solid var(--sky-200);
    border-radius:32px;
    padding:34px 36px;
    box-shadow:0 18px 46px rgba(17,71,255,0.1);
    margin-bottom:26px;
  }
  .launch-focus{
    background:linear-gradient(135deg, var(--blue), var(--blue-deep));
    color:#DCE8FF;
    border-radius:var(--radius-lg);
    padding:22px 24px;
    min-height:150px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 16px 34px rgba(17,71,255,0.24);
  }
  .launch-focus span{
    font-family:var(--font-mono);
    text-transform:uppercase;
    letter-spacing:0.07em;
    font-size:11px;
    color:#fff;
    margin-bottom:8px;
  }
  .launch-focus b{
    font-family:var(--font-display);
    font-size:18px;
    line-height:1.35;
    color:#fff;
  }
  .launch-roadmap{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:28px;
  }
  .launch-roadmap::before{
    content:'';
    position:absolute;
    top:22px;
    bottom:22px;
    left:24px;
    width:3px;
    border-radius:999px;
    background:linear-gradient(180deg, var(--blue), #BFD4FF);
  }
  .roadmap-step{
    display:grid;
    grid-template-columns:50px 1fr;
    gap:18px;
    position:relative;
  }
  .roadmap-marker{
    width:50px;
    height:50px;
    border-radius:18px;
    background:#fff;
    border:2px solid var(--blue);
    color:var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:var(--font-mono);
    font-weight:700;
    box-shadow:0 10px 24px rgba(17,71,255,0.18);
    z-index:1;
  }
  .roadmap-step-current .roadmap-marker{
    background:var(--blue);
    color:#fff;
    box-shadow:0 14px 30px rgba(17,71,255,0.32);
  }
  .roadmap-card{
    background:#fff;
    border:1.5px solid var(--sky-200);
    border-radius:var(--radius-lg);
    padding:24px;
    box-shadow:0 12px 28px rgba(17,71,255,0.09);
  }
  .roadmap-step-current .roadmap-card{
    background:linear-gradient(180deg, #F5F9FF 0%, #fff 100%);
    border-color:#BFD4FF;
  }
  .roadmap-tag{
    display:inline-flex;
    align-items:center;
    font-family:var(--font-mono);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.06em;
    color:var(--blue-deep);
    background:var(--sky-100);
    border:1px solid var(--sky-200);
    border-radius:999px;
    padding:5px 10px;
    margin-bottom:12px;
  }
  .roadmap-step-current .roadmap-tag{
    background:var(--blue);
    border-color:var(--blue);
    color:#fff;
  }
  .roadmap-card h3{
    font-family:var(--font-display);
    font-size:22px;
    margin:0 0 8px;
    letter-spacing:-0.01em;
  }
  .roadmap-card p{
    margin:0;
    color:var(--ink-soft);
    font-size:14px;
    line-height:1.62;
  }
  .roadmap-important{
    margin-top:16px;
    border-left:4px solid var(--blue);
    background:var(--sky-50);
    border-radius:0 var(--radius-sm) var(--radius-sm) 0;
    padding:12px 14px;
    color:var(--ink-soft);
    font-size:13.3px;
    line-height:1.5;
  }
  .roadmap-important b{color:var(--blue-deep);}
  .launch-roles{
    background:var(--sky-100);
    border:1.5px solid var(--sky-200);
    border-radius:32px;
    padding:28px;
    margin-bottom:20px;
  }
  .launch-roles h3{
    font-family:var(--font-display);
    font-size:24px;
    margin:0 0 18px;
    letter-spacing:-0.01em;
  }
  .role-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:14px;
  }
  .role-card{
    background:#fff;
    border:1.5px solid var(--sky-200);
    border-radius:var(--radius-lg);
    padding:20px;
    box-shadow:0 10px 24px rgba(17,71,255,0.07);
  }
  .role-card span{
    width:38px;
    height:38px;
    border-radius:14px;
    background:var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    font-size:18px;
  }
  .role-card b{
    display:block;
    font-family:var(--font-display);
    font-size:16px;
    margin-bottom:7px;
  }
  .role-card p{
    margin:0;
    color:var(--muted);
    font-size:12.8px;
    line-height:1.52;
  }
  .launch-summary{
    background:linear-gradient(135deg, var(--blue), var(--blue-deep));
    color:#DCE8FF;
    border-radius:var(--radius-lg);
    padding:22px 26px;
    display:flex;
    gap:10px;
    align-items:flex-start;
    line-height:1.6;
    box-shadow:0 16px 34px rgba(17,71,255,0.22);
  }
  .launch-summary b{
    color:#fff;
    flex-shrink:0;
  }

  /* ---------- Requirements map ---------- */
  .requirements-section{
    max-width:1180px;
    margin:0 auto;
    padding:24px 28px 48px;
  }
  .logic-map-summary{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(320px, 440px);
    gap:28px;
    align-items:center;
    background:#fff;
    border:1px solid var(--sky-200);
    border-radius:32px;
    padding:26px 30px;
    box-shadow:var(--shadow-card);
    margin-bottom:16px;
  }
  .logic-chain{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:flex-end;
  }
  .logic-chain span{
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:8px 11px;
    background:var(--sky-100);
    border:1px solid #FFD6C2;
    color:#1F2937;
    font-size:12.5px;
    font-weight:700;
  }
  .logic-map-details{
    background:#fff;
    border:1px solid var(--sky-200);
    border-radius:28px;
    box-shadow:var(--shadow-card);
    overflow:hidden;
  }
  .logic-map-details > summary{
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:22px;
    padding:22px 24px;
    cursor:pointer;
    color:#fff;
    font-weight:700;
    background:
      radial-gradient(circle at 82% 12%, rgba(255,104,31,0.45), transparent 36%),
      linear-gradient(135deg, #111827 0%, #1F2937 100%);
  }
  .logic-map-details > summary::-webkit-details-marker{display:none;}
  .logic-map-details > summary > span{
    font-family:var(--font-display);
    font-size:21px;
    line-height:1.2;
    letter-spacing:-0.02em;
  }
  .logic-map-details > summary b{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#fff;
    color:#111827;
    padding:12px 18px;
    min-width:142px;
    font-size:13px;
    white-space:nowrap;
    box-shadow:0 12px 28px rgba(0,0,0,0.18);
    transition:transform .15s ease, background .15s ease, color .15s ease;
  }
  .logic-map-details > summary:hover b{
    transform:translateY(-1px);
    background:var(--sky-100);
    color:var(--blue-deep);
  }
  .logic-map-details .summary-open{display:none;}
  .logic-map-details[open] .summary-closed{display:none;}
  .logic-map-details[open] .summary-open{display:inline;}
  .logic-map-details[open] > summary b{
    background:linear-gradient(135deg, var(--blue), var(--blue-light));
    color:#fff;
  }
  .logic-map-details[open] > summary{
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .requirements-hero{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 380px;
    gap:28px;
    align-items:stretch;
    background:linear-gradient(145deg, #111827 0%, #1F2937 100%);
    border-radius:0;
    padding:30px;
    color:#DCE8FF;
    box-shadow:none;
    position:relative;
    overflow:hidden;
    margin-bottom:16px;
  }
  .requirements-hero::before{
    content:'';
    position:absolute;
    width:360px;
    height:360px;
    right:-120px;
    top:-150px;
    background:radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0));
    pointer-events:none;
  }
  .requirements-hero .section-title{
    color:#fff;
    position:relative;
    z-index:1;
  }
  .requirements-hero .section-desc{
    color:#DCE8FF;
    position:relative;
    z-index:1;
  }
  .requirements-question{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.28);
    border-radius:var(--radius-lg);
    padding:22px 24px;
    backdrop-filter:blur(8px);
    position:relative;
    z-index:1;
  }
  .requirements-question span{
    display:block;
    font-family:var(--font-mono);
    text-transform:uppercase;
    letter-spacing:0.07em;
    font-size:11px;
    color:#fff;
    margin-bottom:10px;
  }
  .requirements-question b{
    display:block;
    font-family:var(--font-display);
    font-size:18px;
    line-height:1.42;
    color:#fff;
  }
  .requirements-legend{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 24px 18px;
  }
  .requirements-legend span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    border:1px solid var(--sky-200);
    color:var(--ink-soft);
    border-radius:999px;
    padding:8px 12px;
    font-size:12.5px;
    box-shadow:0 8px 20px rgba(17,24,39,0.05);
  }
  .legend-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    display:inline-block;
  }
  .legend-base{background:#60A5FA;}
  .legend-core{background:var(--blue);}
  .legend-practice{background:#14B8A6;}
  .legend-attention{background:#F59E0B;}
  .requirements-map{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1.25fr 1fr;
    gap:16px;
    align-items:start;
    margin:0 24px 20px;
  }
  .requirements-map::before{
    content:'';
    position:absolute;
    left:12%;
    right:12%;
    top:84px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, var(--sky-200), var(--blue), var(--sky-200));
    z-index:0;
  }
  .map-core{
    grid-column:1 / -1;
    justify-self:center;
    width:min(480px, 100%);
    background:#fff;
    border:2px solid var(--blue);
    border-radius:28px;
    padding:22px 28px;
    text-align:center;
    box-shadow:0 18px 42px rgba(255,104,31,0.14);
    position:relative;
    z-index:2;
  }
  .map-core span{
    display:block;
    font-family:var(--font-mono);
    text-transform:uppercase;
    letter-spacing:0.07em;
    color:var(--blue-deep);
    font-size:11px;
    margin-bottom:8px;
  }
  .map-core b{
    display:block;
    font-family:var(--font-display);
    font-size:28px;
    letter-spacing:-0.02em;
    color:var(--ink);
    margin-bottom:6px;
  }
  .map-core p{
    margin:0;
    color:var(--muted);
    font-size:13.5px;
  }
  .map-cluster{
    background:linear-gradient(180deg, #fff 0%, var(--sky-50) 100%);
    border:1.5px solid var(--sky-200);
    border-radius:30px;
    padding:18px;
    box-shadow:0 14px 34px rgba(17,24,39,0.07);
    position:relative;
    z-index:1;
  }
  .map-cluster::before{
    content:'';
    position:absolute;
    top:-26px;
    left:50%;
    width:2px;
    height:26px;
    background:var(--sky-200);
  }
  .map-cluster-base{grid-column:1;}
  .map-cluster-core{
    grid-column:2;
    border-color:#AFC8FF;
    box-shadow:0 18px 42px rgba(255,104,31,0.11);
  }
  .map-cluster-practice{grid-column:3;}
  .cluster-head{
    display:flex;
    gap:13px;
    align-items:flex-start;
    margin-bottom:12px;
  }
  .cluster-head > span{
    width:42px;
    height:42px;
    border-radius:15px;
    background:var(--blue);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:var(--font-mono);
    font-size:13px;
    font-weight:700;
    flex-shrink:0;
    box-shadow:0 10px 22px rgba(17,24,39,0.13);
  }
  .map-cluster-base .cluster-head > span{background:#2563EB;}
  .map-cluster-core .cluster-head > span{background:linear-gradient(135deg, var(--blue), var(--blue-deep));}
  .map-cluster-practice .cluster-head > span{background:#0F766E;}
  .cluster-head h3{
    font-family:var(--font-display);
    margin:0 0 5px;
    font-size:22px;
    letter-spacing:-0.01em;
  }
  .cluster-head p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.5;
  }
  .requirement-grid{
    display:grid;
    gap:12px;
  }
  .requirement-card{
    background:#fff;
    border:1.5px solid var(--sky-200);
    border-radius:18px;
    padding:16px;
    min-height:144px;
    position:relative;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(17,24,39,0.05);
  }
  .requirement-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:5px;
    background:var(--blue);
  }
  .requirement-card.type-base::before{background:#60A5FA;}
  .requirement-card.type-core::before{background:var(--blue);}
  .requirement-card.type-practice::before{background:#14B8A6;}
  .requirement-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    border-radius:12px;
    background:var(--sky-100);
    color:var(--blue-deep);
    font-family:var(--font-mono);
    font-size:13px;
    font-weight:700;
    margin-bottom:10px;
  }
  .requirement-card h4{
    font-family:var(--font-display);
    font-size:16px;
    margin:0 0 7px;
    letter-spacing:-0.01em;
  }
  .requirement-card p{
    margin:0 0 10px;
    color:var(--ink-soft);
    font-size:12.8px;
    line-height:1.48;
  }
  .requirement-card b{
    display:block;
    color:var(--blue-deep);
    font-size:12.5px;
    margin-bottom:4px;
  }
  .requirement-card small{
    display:block;
    color:var(--muted);
    font-size:12.2px;
    line-height:1.45;
  }
  .attention-card{
    border-color:#FCD9A8;
    background:linear-gradient(180deg, #fff 0%, #FFFBF5 100%);
  }
  .attention-card::after{
    content:'часто замечания';
    position:absolute;
    top:16px;
    right:16px;
    border-radius:999px;
    background:#FFF7ED;
    color:#B45309;
    border:1px solid #FDE9D0;
    font-family:var(--font-mono);
    font-size:10px;
    letter-spacing:0.04em;
    text-transform:uppercase;
    padding:5px 8px;
  }
  .requirements-flow{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:20px;
    align-items:center;
    background:var(--sky-100);
    border:1.5px solid var(--sky-200);
    border-radius:var(--radius-lg);
    padding:22px 26px;
    margin:0 24px 24px;
  }
  .requirements-flow span{
    display:block;
    font-family:var(--font-mono);
    text-transform:uppercase;
    letter-spacing:0.07em;
    color:var(--blue-deep);
    font-size:11px;
    margin-bottom:6px;
  }
  .requirements-flow b{
    font-family:var(--font-display);
    font-size:20px;
    letter-spacing:-0.01em;
  }
  .requirements-flow p{
    margin:0;
    color:var(--ink-soft);
    font-size:14px;
    line-height:1.58;
  }

  /* ---------- Constructor start ---------- */
  .ribbon-wrap{
    max-width:1180px; margin:0 auto; padding:18px 28px 0;
  }
  .constructor-start{
    position:relative;
    min-height:190px;
    border-radius:32px;
    padding:32px 36px;
    background:
      radial-gradient(circle at 88% 10%, rgba(255,104,31,0.42), transparent 34%),
      linear-gradient(135deg, #111827 0%, #1F2937 100%);
    color:#fff;
    box-shadow:0 18px 46px rgba(17,24,39,0.12);
    overflow:hidden;
  }
  .constructor-start::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    right:-94px;
    top:-138px;
    border-radius:50%;
    background:rgba(255,104,31,0.22);
    box-shadow:0 0 0 42px rgba(255,255,255,0.05);
  }
  .constructor-start-content{
    position:relative;
    z-index:1;
    max-width:680px;
  }
  .constructor-kicker{
    display:inline-flex;
    margin-bottom:14px;
    font-family:var(--font-mono);
    font-size:12px;
    line-height:1;
    letter-spacing:0.08em;
    text-transform:uppercase;
    font-weight:700;
    color:#FFE5D6;
  }
  .constructor-start h2{
    margin:0 0 16px;
    font-family:var(--font-display);
    font-size:34px;
    line-height:1.08;
    letter-spacing:-0.02em;
    color:#fff;
  }
  .constructor-start p{
    margin:0;
    color:rgba(255,255,255,0.86);
    font-size:16px;
    line-height:1.55;
  }
  .constructor-start p + p{margin-top:6px;}
  .ribbon-caption{
    margin-top:10px;
    font-family:var(--font-mono);
    font-size:13px;
    color:var(--blue-deep);
    background:#fff;
    border:1px solid var(--sky-200);
    border-radius:999px;
    padding:9px 16px;
    font-weight:600;
    letter-spacing:0.03em;
    display:inline-flex;
    box-shadow:0 8px 20px rgba(17,24,39,0.08);
  }

  /* ---------- Main layout ---------- */
  .workspace{
    max-width:1180px; margin:0 auto; padding:36px 28px 100px;
    display:grid; grid-template-columns:280px 1fr; gap:28px;
    align-items:start;
  }

  /* Sidebar / stepper */
  .sidebar{
    position:sticky; top:90px;
    background:
      radial-gradient(circle at 92% 8%, rgba(255,104,31,0.48), transparent 32%),
      radial-gradient(circle at 8% 90%, rgba(255,104,31,0.16), transparent 36%),
      linear-gradient(180deg, #111827 0%, #232936 46%, #111827 100%);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:var(--radius-lg);
    padding:12px;
    box-shadow:0 18px 42px rgba(17,24,39,0.22);
    max-height:calc(100vh - 110px);
    overflow-y:auto;
    scrollbar-width:thin;
    scrollbar-color:rgba(255,104,31,0.58) rgba(255,255,255,0.08);
  }
  .sidebar::before,
  .sidebar::after{
    content:'';
    position:absolute;
    pointer-events:none;
    border-radius:50%;
  }
  .sidebar::before{
    width:168px;
    height:168px;
    right:-88px;
    top:-82px;
    border:1px solid rgba(255,255,255,0.14);
    box-shadow:0 0 0 34px rgba(255,104,31,0.08);
  }
  .sidebar::after{
    left:14px;
    right:14px;
    top:10px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(255,104,31,0), rgba(255,104,31,0.9), rgba(255,104,31,0));
    opacity:0.78;
  }
  .step-item{
    display:flex; align-items:flex-start; gap:11px;
    padding:11px 12px; border-radius:var(--radius-sm);
    cursor:pointer; transition:background .15s ease, box-shadow .15s ease, transform .15s ease;
    position:relative;
    z-index:1;
  }
  .step-item:hover{background:rgba(255,255,255,0.08); transform:translateX(1px);}
  .step-item.active{
    background:linear-gradient(135deg, #fff 0%, #FFF7F2 100%);
    box-shadow:0 12px 28px rgba(0,0,0,0.22);
  }
  .step-item.active::before{
    content:'';
    position:absolute;
    left:0;
    top:10px;
    bottom:10px;
    width:3px;
    border-radius:999px;
    background:linear-gradient(180deg, var(--blue), var(--blue-light));
  }
  .step-num{
    flex-shrink:0; width:24px; height:24px; border-radius:50%;
    border:1.5px solid rgba(255,255,255,0.28); display:flex; align-items:center; justify-content:center;
    font-family:var(--font-mono); font-size:11px; color:rgba(255,255,255,0.82); margin-top:1px;
    background:rgba(255,255,255,0.08);
  }
  .step-item.active .step-num{background:var(--blue); border-color:var(--blue); color:#fff; font-weight:600;}
  .step-item.done .step-num{background:rgba(255,255,255,0.92); border-color:rgba(255,255,255,0.92); color:var(--blue);}
  .step-item.done .step-num::after{content:'✓'; font-size:11px;}
  .step-item.done .step-num span{display:none;}
  .step-texts{min-width:0;}
  .step-title{font-size:13.5px; font-weight:650; color:rgba(255,255,255,0.9); line-height:1.35;}
  .step-item.active .step-title{color:var(--ink);}
  .step-hint{font-size:11.5px; color:rgba(255,255,255,0.58); margin-top:2px;}
  .step-item.active .step-hint{color:var(--muted);}

  /* Card / form area */
  .card{
    background:#fff;
    border:1.5px solid var(--sky-200);
    border-radius:var(--radius-lg);
    padding:36px;
    box-shadow:0 16px 42px rgba(17,71,255,0.12);
    overflow:hidden;
  }
  #formArea > .card{padding:0;}
  #formArea > .summary-view-card{padding:36px;}
  .card-head{display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:6px;}
  .card-tag{
    font-family:var(--font-mono); font-size:13px; color:var(--blue-deep);
    background:var(--sky-100); border-radius:999px; padding:7px 14px; font-weight:700;
    letter-spacing:0.05em;
    display:inline-block; margin-bottom:16px;
  }
  .card-title{font-family:var(--font-display); font-size:25px; font-weight:600; letter-spacing:-0.01em; margin:0 0 8px;}
  .card-why{
    font-size:14px; color:var(--muted); line-height:1.55; margin:0 0 28px;
    padding-bottom:24px; border-bottom:1px solid var(--line);
  }
  .card-why b{color:var(--ink-soft); font-weight:600;}
  .card-intro{
    background:linear-gradient(180deg, var(--sky-50), #fff);
    border-bottom:1.5px solid var(--sky-200);
    padding:32px 36px 28px;
  }
  .card-intro .card-why{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
  }
  #fieldsHost{padding:30px 36px 0;}

  .edu-card{
    margin-bottom:26px;
    background:
      radial-gradient(circle at 96% 4%, rgba(255,104,31,0.10), transparent 26%),
      linear-gradient(180deg, #fff 0%, #FFF8F2 100%);
    border:1.5px solid var(--sky-200);
    border-radius:var(--radius-lg);
    padding:26px;
    box-shadow:0 14px 34px rgba(17,24,39,0.07);
  }
  .edu-card-head{
    max-width:760px;
    margin-bottom:20px;
  }
  .edu-card-kicker{
    display:inline-flex;
    align-items:center;
    font-family:var(--font-mono);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.07em;
    color:#fff;
    background:linear-gradient(135deg, var(--orange), var(--orange-deep));
    border-radius:999px;
    padding:6px 11px;
    margin-bottom:14px;
  }
  .edu-card h3{
    font-family:var(--font-display);
    font-size:26px;
    line-height:1.18;
    letter-spacing:-0.02em;
    margin:0 0 10px;
  }
  .edu-card-head p{
    margin:0;
    color:var(--ink-soft);
    line-height:1.58;
    font-size:14.5px;
  }
  .edu-expert-box{
    background:
      radial-gradient(circle at 92% -12%, rgba(255,104,31,0.34), transparent 36%),
      linear-gradient(135deg, #101827 0%, #1B2433 54%, #4B2A22 100%);
    color:#DCE8FF;
    border-radius:var(--radius-lg);
    padding:20px;
    margin-bottom:18px;
    position:relative;
    overflow:hidden;
  }
  .edu-expert-box::before{
    content:'';
    position:absolute;
    right:-80px;
    top:-100px;
    width:260px;
    height:260px;
    border:1px solid rgba(255,255,255,0.18);
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,104,31,0.34), transparent 68%);
  }
  .edu-box-title{
    font-family:var(--font-mono);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:0.06em;
    font-weight:700;
    color:var(--orange-deep);
    margin-bottom:12px;
  }
  .edu-expert-box .edu-box-title{
    color:#fff;
    position:relative;
    z-index:1;
  }
  .edu-expert-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:10px;
    position:relative;
    z-index:1;
  }
  .edu-expert-grid span{
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:var(--radius-sm);
    padding:11px 12px;
    font-size:12.8px;
    line-height:1.42;
  }
  .edu-examples{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:16px;
  }
  .edu-example{
    background:#fff;
    border:1.5px solid var(--sky-200);
    border-radius:var(--radius-lg);
    padding:20px;
    box-shadow:0 8px 22px rgba(17,71,255,0.06);
  }
  .edu-example-good{
    border-color:#FFD9C6;
    border-left:5px solid var(--orange);
  }
  .edu-example-weak{
    border-color:#F0DDD0;
    border-left:5px solid #9A5B3D;
    background:#FFFDF9;
  }
  .edu-example-label{
    display:inline-flex;
    font-family:var(--font-mono);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.05em;
    color:var(--orange-deep);
    background:#FFF1E8;
    border-radius:999px;
    padding:5px 9px;
    margin-bottom:12px;
  }
  .edu-example-weak .edu-example-label{
    color:#7C3F24;
    background:#F8EEE7;
  }
  .edu-example h4{
    font-family:var(--font-display);
    font-size:18px;
    margin:0 0 10px;
    letter-spacing:-0.01em;
  }
  .edu-example p{
    margin:0 0 12px;
    color:var(--ink-soft);
    font-size:13.2px;
    line-height:1.55;
  }
  .edu-example small{
    display:block;
    color:var(--muted);
    font-size:12.4px;
    line-height:1.48;
  }
  .edu-support-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:16px;
  }
  .edu-support-card{
    background:#fff;
    border:1.5px solid var(--sky-200);
    border-radius:var(--radius-lg);
    padding:20px;
  }
  .edu-support-card ul{
    margin:0;
    padding-left:18px;
    color:var(--ink-soft);
    font-size:13.2px;
    line-height:1.62;
  }
  .edu-check-list{
    list-style:none;
    padding-left:0 !important;
  }
  .edu-check-list li{
    position:relative;
    padding-left:24px;
    margin-bottom:8px;
  }
  .edu-check-list li::before{
    content:'✓';
    position:absolute;
    left:0;
    top:1px;
    width:16px;
    height:16px;
    border-radius:6px;
    background:var(--orange);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:700;
  }
  .edu-check-list li:last-child{margin-bottom:0;}
  .edu-work-link{
    display:flex;
    gap:10px;
    align-items:flex-start;
    background:#FFF5EE;
    border:1px solid #FFD9C6;
    border-radius:var(--radius-md);
    padding:14px 16px;
    color:var(--ink-soft);
    font-size:13.2px;
    line-height:1.5;
  }
  .edu-work-link b{
    color:var(--orange-deep);
    flex-shrink:0;
  }

  .field-group{margin-bottom:22px;}
  .field-group:last-of-type{margin-bottom:0;}
  .field-label-row{
    display:flex;
    align-items:flex-start;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:6px;
  }
  .field-label{
    display:flex; align-items:center; gap:8px;
    font-size:13.5px; font-weight:600; color:var(--ink); margin-bottom:6px;
  }
  .field-label-row .field-label{margin-bottom:0;}
  .field-optional{font-size:11.5px; color:var(--muted-2); font-weight:400; font-family:var(--font-mono);}
  .field-help{font-size:12.5px; color:var(--muted); margin-bottom:9px; line-height:1.5;}
  .field-help a{color:var(--blue-deep); text-decoration:none; border-bottom:1px solid var(--sky-200);}
  .field-help a:hover{border-color:var(--blue-deep);}
  .field-explain{
    font-size:12.5px;
    color:var(--muted);
  }
  .field-explain summary{
    list-style:none;
    cursor:pointer;
    color:var(--accent);
    font-weight:700;
    border-bottom:1px dashed rgba(255,104,31,0.45);
    line-height:1.45;
  }
  .field-explain summary::-webkit-details-marker{display:none;}
  .field-explain[open]{
    width:100%;
    margin-top:2px;
  }
  .field-explain[open] summary{
    display:inline-flex;
    margin-bottom:7px;
  }
  .field-explain div{
    padding:10px 12px;
    border:1px solid rgba(255,104,31,0.18);
    border-left:3px solid var(--accent);
    border-radius:12px;
    background:#FFF7F1;
    color:var(--ink-soft);
    line-height:1.5;
  }
  .partner-rows{
    display:grid;
    gap:10px;
  }
  .partner-row{
    display:grid;
    gap:10px;
    align-items:start;
    padding:12px;
    border:1px solid var(--line);
    border-radius:14px;
    background:rgba(255,255,255,0.64);
  }
  .partner-row-2{grid-template-columns:minmax(0, 1fr) minmax(0, 1fr) auto;}
  .partner-row-3{grid-template-columns:minmax(150px, 0.9fr) minmax(130px, 0.55fr) minmax(0, 1.35fr) auto;}
  .partner-row-stack{grid-template-columns:1fr; padding:10px;}
  .partner-row-head{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    gap:8px;
    align-items:center;
  }
  .mini-add,
  .mini-remove{
    border:1.5px solid #BFD4FF;
    border-radius:999px;
    background:#fff;
    color:var(--blue-deep);
    font-weight:700;
    font-size:12.5px;
    padding:8px 13px;
    cursor:pointer;
    transition:all .15s ease;
  }
  .mini-add{
    margin-top:10px;
    color:var(--accent);
    border-color:rgba(255,104,31,0.35);
  }
  .mini-remove:hover,
  .mini-add:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(255,104,31,0.12);
  }
  .mini-icon-remove{
    width:34px;
    height:34px;
    border:1.5px solid rgba(255,104,31,0.28);
    border-radius:999px;
    background:#fff;
    color:var(--accent);
    font-size:20px;
    line-height:1;
    font-weight:700;
    cursor:pointer;
    transition:all .15s ease;
  }
  .mini-icon-remove:hover{
    background:#FFF1E9;
    transform:translateY(-1px);
  }
  .link-grid{
    display:grid;
    gap:10px;
    margin-top:10px;
  }
  .link-row{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    gap:8px;
    align-items:center;
  }
  .promo-channel-row{
    grid-template-columns:minmax(140px, 0.75fr) minmax(210px, 1.2fr) minmax(210px, 1.2fr) auto;
  }
  .promo-plan-row{
    grid-template-columns:minmax(180px, 1fr) minmax(150px, 0.82fr) minmax(150px, 0.82fr) minmax(180px, 1fr) auto;
  }
  .promo-interaction-row{
    grid-template-columns:minmax(170px, 0.9fr) minmax(160px, 0.8fr) minmax(260px, 1.35fr) auto;
  }
  .resource-required-row{
    grid-template-columns:minmax(160px, 0.9fr) minmax(160px, 0.8fr) minmax(240px, 1.3fr) auto;
  }
  .resource-budget-row{
    grid-template-columns:minmax(220px, 1.2fr) minmax(120px, 0.55fr) minmax(240px, 1.3fr) auto;
  }
  .material-research-row,
  .material-letter-row,
  .material-link-row{
    grid-template-columns:minmax(190px, 0.85fr) minmax(260px, 1.35fr) auto;
  }
  .resource-cofunding-row{
    grid-template-columns:minmax(190px, 1fr) minmax(160px, 0.9fr) minmax(130px, 0.65fr) minmax(220px, 1.2fr) auto;
  }
  .promo-custom-field{
    grid-column:1 / -1;
  }
  .promo-field{
    min-width:0;
  }
  .promo-field-label{
    margin:0 0 5px;
    font-size:11px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#6B7280;
  }
  .promo-focus-hint{
    display:none;
    margin-top:6px;
    padding:8px 10px;
    border:1px solid rgba(255,104,31,0.18);
    border-radius:12px;
    background:#FFF7F1;
    color:#4B5563;
    font-size:12.5px;
    line-height:1.4;
  }
  .promo-field:focus-within .promo-focus-hint{
    display:block;
  }
  .resource-warning{
    margin:12px 0 16px;
    padding:12px 14px;
    border-left:4px solid var(--accent);
    border-radius:14px;
    background:#FFF7F1;
    color:#4B5563;
    font-size:13.5px;
    line-height:1.45;
  }
  .support-table{
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .support-row{
    display:grid;
    gap:10px;
    align-items:start;
    padding:12px;
    border:1px solid var(--line);
    border-radius:14px;
    background:rgba(255,255,255,0.72);
  }
  .support-priority-row{grid-template-columns:1.1fr 140px 1.4fr;}
  .support-rationale-row{grid-template-columns:220px 1fr;}
  .support-status-row{grid-template-columns:1fr 1.35fr 1.35fr;}
  .support-row-title{
    font-weight:700;
    color:var(--ink);
    font-size:14px;
    line-height:1.35;
    padding-top:26px;
  }
  .support-priority-hint{
    grid-column:2 / -1;
    margin-top:-4px;
    padding:8px 10px;
    border-radius:12px;
    background:#FFF7F1;
    border:1px solid rgba(255,104,31,0.18);
    color:var(--ink-soft);
    font-size:12.5px;
    line-height:1.4;
  }
  .support-empty{
    padding:12px 14px;
    border:1px dashed var(--sky-200);
    border-radius:14px;
    background:rgba(255,255,255,0.62);
    color:var(--muted);
    font-size:13.5px;
  }

  input[type=text], input[type=date], input[type=number], textarea, select{
    width:100%; border:1.5px solid var(--line); border-radius:var(--radius-sm);
    padding:11px 14px; font-size:14.5px; color:var(--ink); background:#fff;
    transition:border-color .15s ease, box-shadow .15s ease;
  }
  input::placeholder, textarea::placeholder{color:var(--muted-2);}
  input:focus, textarea:focus, select:focus{
    outline:none; border-color:var(--blue); box-shadow:0 0 0 3px var(--sky-100);
  }
  textarea{resize:vertical; min-height:84px; line-height:1.5;}

  .row-2{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
  .row-3{display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px;}

  .chip-group{display:flex; gap:8px; flex-wrap:wrap;}
  .chip{
    border:1.5px solid #BFD4FF; border-radius:999px; padding:8px 16px;
    font-size:13.5px; background:#fff; color:var(--blue-deep); font-weight:600;
    transition:all .15s ease;
  }
  .chip:hover{border-color:var(--blue); background:var(--sky-100);}
  .chip.selected{background:var(--blue); border-color:var(--blue); color:#fff;}

  .multi-select{position:relative;}
  .multi-select summary{
    list-style:none;
    width:100%;
    min-height:47px;
    border:1.5px solid var(--line);
    border-radius:var(--radius-sm);
    padding:11px 42px 11px 14px;
    color:var(--muted-2);
    background:#fff;
    font-size:14.5px;
    cursor:pointer;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }
  .multi-select summary::-webkit-details-marker{display:none;}
  .multi-select summary::after{
    content:'⌄';
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-52%);
    color:var(--muted);
    font-size:16px;
  }
  .multi-select[open] summary{border-color:var(--blue); box-shadow:0 0 0 3px var(--sky-100);}
  .multi-select summary.has-value{color:var(--ink);}
  .multi-select summary small{
    color:var(--blue-deep);
    font-weight:700;
    font-size:12px;
    flex-shrink:0;
    margin-right:8px;
  }
  .multi-select-menu{
    margin-top:8px;
    padding:8px;
    border:1px solid var(--sky-200);
    border-radius:14px;
    background:#fff;
    box-shadow:var(--shadow-card);
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:7px;
  }
  .multi-option{
    display:flex;
    align-items:flex-start;
    gap:8px;
    border:1px solid var(--line);
    border-radius:11px;
    background:#fff;
    padding:8px 10px;
    color:var(--ink-soft);
    font-size:13px;
    line-height:1.32;
    text-align:left;
    transition:all .15s ease;
  }
  .multi-option:hover{border-color:var(--sky-200); background:var(--sky-50);}
  .multi-option.selected{border-color:var(--blue); background:#FFF7F2; color:var(--ink);}
  .multi-option:disabled{opacity:.45; cursor:not-allowed;}
  .multi-box{
    width:16px;
    height:16px;
    border:1.5px solid var(--line);
    border-radius:5px;
    flex-shrink:0;
    margin-top:1px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:10px;
    background:#fff;
  }
  .multi-option.selected .multi-box{background:var(--blue); border-color:var(--blue);}
  .conditional-field{margin-top:12px;}

  .choice-description{
    margin-top:10px;
    padding:12px 14px;
    border:1px solid #FFD9C6;
    border-left:4px solid var(--orange);
    border-radius:14px;
    background:#FFF7F2;
    color:var(--ink-soft);
    font-size:13.5px;
    line-height:1.55;
  }
  .choice-description ul{margin:0; padding-left:18px;}
  .choice-description li{margin:0 0 6px;}
  .choice-description li:last-child{margin-bottom:0;}

  .field-cluster{
    background:var(--sky-50);
    border:1px solid var(--sky-200);
    border-left:5px solid var(--blue);
    border-radius:var(--radius-md);
    padding:20px 22px;
    margin-bottom:18px;
  }
  .field-cluster-title{
    font-family:var(--font-mono);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:0.06em;
    color:var(--blue-deep);
    font-weight:600;
    margin-bottom:16px;
  }
  .field-cluster .field-group:last-child,
  .field-cluster .row-2:last-child,
  .field-cluster .row-3:last-child{margin-bottom:0;}

  .concept-warning{
    margin-bottom:18px;
    padding:22px 24px;
    border-radius:20px;
    background:
      radial-gradient(circle at 92% 12%, rgba(255,255,255,0.22), transparent 34%),
      linear-gradient(135deg, #FF6B4A 0%, #F04E68 58%, #D9486E 100%);
    color:#fff;
    box-shadow:0 16px 34px rgba(240,78,104,0.24);
  }
  .concept-warning h3{
    margin:0 0 10px;
    font-family:var(--font-display);
    font-size:20px;
    line-height:1.15;
    letter-spacing:-0.01em;
  }
  .concept-warning p{
    margin:0 0 8px;
    max-width:820px;
    color:rgba(255,255,255,0.92);
    font-size:14.5px;
    line-height:1.55;
  }
  .concept-warning-accent{
    margin-top:14px;
    padding:12px 14px;
    border-radius:14px;
    background:rgba(255,255,255,0.16);
    border:1px solid rgba(255,255,255,0.22);
    color:#fff;
    font-weight:700;
    line-height:1.45;
  }

  .check-list{display:flex; flex-direction:column; gap:7px;}
  .check-list-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px 10px;
  }
  .check-item{
    display:flex; align-items:flex-start; gap:9px; padding:9px 12px;
    min-height:44px;
    border:1.5px solid var(--line); border-radius:12px; cursor:pointer;
    transition:all .15s ease;
  }
  .check-item:hover{border-color:var(--sky-200); background:var(--sky-50);}
  .check-item.checked{border-color:var(--blue); background:var(--sky-50);}
  .check-box{
    width:16px; height:16px; border-radius:5px; border:1.5px solid var(--line);
    flex-shrink:0; margin-top:1px; display:flex; align-items:center; justify-content:center;
    font-size:10px; color:#fff; background:#fff; transition:all .15s ease;
  }
  .check-item.checked .check-box{background:var(--blue); border-color:var(--blue);}
  .check-item.checked .check-box::after{content:'✓';}
  .check-text{font-size:13.2px; color:var(--ink-soft); line-height:1.32;}
  .check-item.checked .check-text{color:var(--ink);}

  .subblock{
    background:var(--sky-50); border:1px solid var(--sky-200); border-radius:var(--radius-md);
    padding:18px 20px; margin-top:16px;
  }
  .subblock-title{font-size:12.5px; font-weight:600; color:var(--blue-deep); text-transform:uppercase; letter-spacing:0.04em; margin-bottom:12px; font-family:var(--font-mono);}

  .day-card{
    border:1.5px solid var(--line); border-radius:var(--radius-md); padding:18px 20px; margin-bottom:12px; position:relative;
  }
  .day-card-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:14px;}
  .day-card-title{font-weight:600; font-size:14px; font-family:var(--font-display);}
  .remove-day{background:none; border:none; color:var(--muted-2); font-size:12px; padding:4px 8px; border-radius:6px;}
  .remove-day:hover{color:#DC2626; background:#FEF2F2;}
  .add-day-btn{
    width:100%; border:1.5px dashed var(--sky-200); background:var(--sky-50); color:var(--blue-deep);
    border-radius:var(--radius-md); padding:13px; font-size:13.5px; font-weight:600;
  }
  .add-day-btn:hover{background:var(--sky-100); border-color:var(--blue);}

  .photo-drop{
    border:1.5px dashed var(--sky-200); border-radius:var(--radius-md);
    padding:24px; text-align:center; background:var(--sky-50); color:var(--muted);
    font-size:13px; line-height:1.6;
  }
  .photo-drop b{color:var(--blue-deep); display:block; font-size:13.5px; margin-bottom:4px;}

  .card-nav{
    display:flex; align-items:center; justify-content:space-between; margin:32px 36px 0; padding:24px 0 32px;
    border-top:1.5px solid var(--sky-200);
  }
  .card-nav-spacer{width:86px;}
  .nav-progress-text{font-size:12.5px; color:var(--muted); font-family:var(--font-mono);}

  .final-entry{
    grid-column:1/-1;
    margin-top:28px;
    padding:0 4px 6px;
  }
  .readiness-bar{
    position:relative;
    height:52px;
    border-radius:999px;
    overflow:hidden;
    background:linear-gradient(180deg, #fff 0%, #FFF7F2 100%);
    border:1px solid #FFD5C0;
    box-shadow:0 14px 34px rgba(255,104,31,0.16), inset 0 1px 0 rgba(255,255,255,0.9);
  }
  .readiness-fill{
    position:absolute;
    inset:0 auto 0 0;
    width:var(--readiness, 0%);
    border-radius:999px 0 0 999px;
    background:linear-gradient(90deg, #4B4B49 0%, #6B6B68 100%);
    transition:width .45s ease;
  }
  .readiness-text{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#3F3F46;
    font-family:var(--font-display);
    font-size:24px;
    line-height:1;
    font-weight:500;
    letter-spacing:0.02em;
    text-align:center;
    pointer-events:none;
  }
  .readiness-text-base{
    color:#3F3F46;
    text-shadow:0 1px 0 rgba(255,255,255,0.62);
  }
  .readiness-text-fill{
    color:#fff;
    clip-path:inset(0 calc(100% - var(--readiness, 0%)) 0 0);
    text-shadow:0 1px 10px rgba(17,24,39,0.28);
  }
  .final-entry-card{
    margin:24px auto 0;
    max-width:760px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:26px 30px;
    border-radius:28px;
    background:
      radial-gradient(circle at 94% 8%, rgba(255,104,31,0.18), transparent 34%),
      #fff;
    border:1px solid var(--sky-200);
    box-shadow:var(--shadow-card);
  }
  .final-entry-kicker{
    display:inline-flex;
    margin-bottom:8px;
    font-family:var(--font-mono);
    font-size:11px;
    line-height:1;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--blue-deep);
    font-weight:800;
  }
  .final-entry-card h2{
    margin:0;
    font-family:var(--font-display);
    font-size:30px;
    line-height:1.1;
    letter-spacing:-0.02em;
    color:var(--ink);
  }
  .final-entry-btn{
    min-width:190px;
    justify-content:center;
    padding:16px 28px;
    border-radius:18px;
    font-size:17px;
  }

  /* ---------- Live preview floating button (mobile) ---------- */
  .preview-fab{
    display:none;
  }

  /* ---------- Summary / completion view ---------- */
  .summary-card{display:none;}
  .summary-view-card{
    max-width:960px;
  }
  .summary-block{margin-bottom:32px;}
  .summary-block:last-child{margin-bottom:0;}
  .summary-block-title{
    font-family:var(--font-mono);
    font-size:12.5px;
    color:var(--blue-deep);
    text-transform:uppercase;
    letter-spacing:0.08em;
    font-weight:700;
    margin-bottom:14px;
    padding-top:4px;
    display:flex;
    align-items:center;
    gap:10px;
  }
  .summary-block-title .line{flex:1; height:1px; background:var(--line);}
  .summary-line{
    max-width:820px;
    font-size:14.5px;
    color:var(--ink-soft);
    line-height:1.78;
    margin-bottom:4px;
    overflow-wrap:anywhere;
  }
  .summary-line b{color:var(--ink); font-weight:700;}
  .summary-empty{color:var(--muted-2); font-style:italic; font-size:13.5px;}

  .completion-banner{
    background:
      radial-gradient(circle at 92% 8%, rgba(255,104,31,0.58), transparent 34%),
      linear-gradient(135deg, #111827 0%, #1F2937 100%);
    border-radius:var(--radius-lg);
    padding:34px 38px;
    color:#fff;
    margin-bottom:24px;
    display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
    position:relative; overflow:hidden;
    box-shadow:0 18px 46px rgba(17,24,39,0.14);
  }
  .completion-banner::before{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,104,31,0.16);
    border:1px solid rgba(255,255,255,0.16);
    box-shadow:0 0 0 34px rgba(255,255,255,0.04);
    top:-142px;
    right:-44px;
  }
  .completion-text h2{font-family:var(--font-display); font-size:24px; margin:0 0 8px; position:relative;}
  .completion-text p{font-size:14.5px; line-height:1.45; color:rgba(255,255,255,0.82); margin:0; max-width:520px; position:relative;}
  .completion-actions{display:flex; gap:10px; position:relative; flex-wrap:wrap;}
  .btn-on-dark{background:#fff; color:var(--blue-deep);}
  .btn-on-dark:hover{background:var(--sky-100);}
  .btn-outline-dark{background:rgba(255,255,255,0.12); color:#fff; border:1px solid rgba(255,255,255,0.3);}
  .btn-outline-dark:hover{background:rgba(255,255,255,0.2);}

  .gap-warning{
    background:var(--amber-bg); border:1px solid #FDE9D0; border-radius:var(--radius-md);
    padding:14px 18px; font-size:13px; color:var(--amber); margin-bottom:20px; display:flex; gap:10px; align-items:flex-start;
  }

  footer{
    padding:30px 28px 50px; text-align:center; color:var(--muted-2); font-size:12.5px; max-width:1180px; margin:0 auto;
  }

  @media (max-width:920px){
    .hero-inner{grid-template-columns:1fr; gap:28px;}
    .hero-brand{margin-bottom:32px; max-width:100%;}
    h1{font-size:34px;}
    .intro-card-grid{grid-template-columns:1fr 1fr;}
    .logic-map-summary{grid-template-columns:1fr;}
    .logic-chain{justify-content:flex-start;}
    .workspace{grid-template-columns:1fr;}
    .sidebar{position:static; max-height:none; order:2;}
    .row-2, .row-3{grid-template-columns:1fr;}
    .partner-row-2, .partner-row-3, .partner-row-stack, .promo-channel-row, .promo-plan-row, .promo-interaction-row, .resource-required-row, .resource-budget-row, .resource-cofunding-row, .support-priority-row, .support-rationale-row, .support-status-row, .material-research-row, .material-letter-row, .material-link-row{grid-template-columns:1fr;}
    .support-row-title{padding-top:0;}
    .support-priority-hint{grid-column:auto;}
    .multi-select-menu{grid-template-columns:1fr;}
    .check-list-2{grid-template-columns:1fr;}
    .card{padding:24px;}
    .hero{padding:40px 16px 28px;}
    .intro-section{padding:28px 16px 18px;}
    .section-head{grid-template-columns:1fr;}
    .section-title{font-size:26px;}
    .npt-compare{grid-template-columns:1fr;}
    .diagnostic-section{padding:24px 16px 26px;}
    .diagnostic-intro{
      grid-template-columns:1fr;
      grid-template-areas:
        "title"
        "desc"
        "note";
      gap:16px;
      padding:28px 24px;
    }
    .diagnostic-intro .section-desc{max-width:none;}
    .diagnostic-note{max-width:none;}
    .diagnostic-workspace{grid-template-columns:1fr; padding:22px;}
    .diagnostic-result{
      position:static;
      max-height:none;
      overflow:visible;
    }
    .launch-section{padding:28px 16px 34px;}
    .launch-hero{grid-template-columns:1fr; padding:28px 24px;}
    .launch-roadmap::before{left:22px;}
    .roadmap-step{grid-template-columns:46px 1fr; gap:14px;}
    .roadmap-marker{width:46px; height:46px; border-radius:16px;}
    .role-grid{grid-template-columns:1fr 1fr;}
    .requirements-section{padding:28px 16px 38px;}
    .requirements-hero{grid-template-columns:1fr; padding:28px 24px;}
    .requirements-map{grid-template-columns:1fr; gap:16px;}
    .requirements-map::before{display:none;}
    .map-core,
    .map-cluster-base,
    .map-cluster-core,
    .map-cluster-practice{grid-column:1;}
    .map-cluster::before{display:none;}
    .requirement-grid{grid-template-columns:1fr 1fr;}
    .requirements-flow{grid-template-columns:1fr;}
    .ribbon-wrap{padding:8px 16px 0;}
    .constructor-start{min-height:170px; padding:28px 24px;}
    .constructor-start h2{font-size:28px;}
    .constructor-start p{font-size:14.5px;}
    .workspace{padding:28px 16px 80px;}
    #fieldsHost{padding:24px 24px 0;}
    .edu-card{padding:22px;}
    .edu-expert-grid{grid-template-columns:1fr 1fr;}
    .edu-examples,
    .edu-support-grid{grid-template-columns:1fr;}
    .card-intro{padding:26px 24px 24px;}
    .card-nav{margin:26px 24px 0; padding-bottom:26px;}
    .final-entry{margin-top:24px; padding:0;}
    .readiness-bar{height:46px;}
    .readiness-text{font-size:20px;}
    .final-entry-card{align-items:flex-start; flex-direction:column; padding:24px; border-radius:24px;}
    .final-entry-card h2{font-size:26px;}
    .final-entry-btn{width:100%;}
    .completion-banner{padding:26px 22px;}
  }

  @media (max-width:640px){
    .hero-brand{
      align-items:center;
      gap:12px;
      width:calc(100vw - 32px);
      max-width:calc(100vw - 32px);
      overflow:visible;
      padding:12px 14px 12px 12px;
      border-radius:22px;
    }
    .hero-brand-mark{width:64px;height:64px;}
    .hero-brand-mark img{width:64px;height:64px;}
    .hero-brand-copy{display:block; min-width:0; max-width:250px;}
    .hero-brand-title{font-size:20px; letter-spacing:0.058em;}
    .hero-brand-divider{display:none;}
    .hero-brand-subtitle{max-width:100%; margin-top:5px; font-size:13.5px; line-height:1.28; white-space:normal; overflow-wrap:break-word;}
    .intro-card-grid{grid-template-columns:1fr;}
    .principle-card{min-height:0;}
    .diagnostic-options{grid-template-columns:1fr 1fr;}
    .result-columns{grid-template-columns:1fr;}
    .result-progress{flex-direction:column;}
    .launch-hero{padding:24px 20px;}
    .launch-roadmap::before{display:none;}
    .roadmap-step{grid-template-columns:1fr;}
    .roadmap-marker{width:42px; height:42px;}
    .roadmap-card,
    .launch-roles{padding:20px;}
    .role-grid{grid-template-columns:1fr;}
    .launch-summary{flex-direction:column;}
    .requirements-hero{padding:24px 20px;}
    .logic-map-summary{padding:24px 20px;}
    .logic-map-details > summary{align-items:flex-start; flex-direction:column;}
    .requirements-legend span{width:100%;}
    .map-core{padding:20px;}
    .map-core b{font-size:24px;}
    .map-cluster{padding:18px;}
    .cluster-head{flex-direction:column;}
    .requirement-grid{grid-template-columns:1fr;}
    .attention-card::after{
      position:static;
      display:inline-flex;
      margin-bottom:12px;
    }
    .requirements-flow{padding:20px;}
    .edu-card{padding:18px;}
    .edu-card h3{font-size:22px;}
    .edu-expert-grid{grid-template-columns:1fr;}
    .edu-work-link{flex-direction:column;}
  }
