:root {
      --bg: #DCE9E4;
      --bg-soft: #C7D8D2;
      --accent-mid: #8BAFA3;
      --primary: #598F79;
      --primary-dark: #063629;
      --card-bg: #ffffff;
      --border: #C7D8D2;
      --text-main: #063629;
      --text-muted: #4b5563;
      --radius: 14px;
      --shadow: 0 12px 24px rgba(15,23,42,0.12);
    }

    *{margin:0; padding:0; box-sizing:border-box;}
    body{
      font-family:"Inter",sans-serif;
      background:var(--bg);
      color:var(--text-main);
      line-height:1.6;
    }
    .wrapper{
      max-width:1100px;
      margin:0 auto;
      padding:24px 16px 40px;
    }

    .page-header{margin-bottom:22px;}
    .page-kicker{
      font-size:13px;
      letter-spacing:.12em;
      text-transform:uppercase;
      color:var(--text-muted);
      margin-bottom:6px;
    }
    .page-title{
      font-family:"Playfair Display",serif;
      font-size:26px;
      color:var(--primary-dark);
      margin-bottom:6px;
    }
    .page-subtitle{
      font-size:14px;
      color:var(--text-muted);
      max-width:640px;
    }
    .accent-line{
      width:60px;
      height:3px;
      background:var(--accent-mid);
      border-radius:2px;
      margin:14px 0 16px;
    }

    .card{
      background:var(--card-bg);
      border-radius:var(--radius);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:18px;
    }

    /* STAT STRIP */
    .stat-row{
      display:grid;
      grid-template-columns:1.4fr 1fr;
      gap:16px;
      margin-bottom:20px;
      align-items:stretch;
    }
    .stat-main{
      background:#f4faf7;
      border-radius:12px;
      border:1px solid #d4e4dd;
      padding:14px;
    }
    .stat-main h2{
      font-size:18px;
      margin-bottom:8px;
      color:var(--primary-dark);
    }
    .stat-highlight{
      font-size:22px;
      font-weight:600;
      margin-bottom:4px;
    }
    .stat-note{
      font-size:13px;
      color:var(--text-muted);
    }

    .house-visual{
      border-radius:12px;
      overflow:hidden;
      position:relative;
    }
    .house-visual img{
      width:100%;
      height:100%;
      max-height:220px;
      object-fit:cover;
      display:block;
    }
    .house-tag{
      position:absolute;
      left:10px;
      bottom:10px;
      background:rgba(6,54,41,0.9);
      color:#fff;
      padding:4px 10px;
      border-radius:999px;
      font-size:12px;
    }

    /* COMPONENT GRID */
    .comp-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-bottom:18px;
    }
    .comp-card{
      background:#e1efe9;
      border-radius:12px;
      padding:12px;
      font-size:13px;
    }
    .comp-code{
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:.12em;
      font-weight:600;
      margin-bottom:4px;
    }
    .comp-title{
      font-weight:600;
      margin-bottom:4px;
    }

    /* ELIGIBILITY STEPS */
    .steps-card{
      margin-top:4px;
      font-size:13px;
    }
    .steps-card h3{
      font-size:15px;
      margin-bottom:6px;
      color:var(--primary-dark);
    }
    .steps-card ol{
      margin-left:18px;
    }
    .steps-card li{
      margin-bottom:4px;
    }

    @media(max-width:880px){
      .stat-row{grid-template-columns:1fr;}
      .comp-grid{grid-template-columns:1fr 1fr;}
    }
    @media(max-width:600px){
      .comp-grid{grid-template-columns:1fr;}
      .page-title{font-size:22px;}
    }