:root{
      /* TaxCat palette */
      --steel-blue: #41647a;
      --soft-white: #fffbf4;
      --civic-teal: #539592;
      --sunset-clay:#ce7459;
      --slate-gray: #4c585a;

      --bg: var(--soft-white);
      --text: #243033;
      --muted: #5a6a6f;
      --card: #ffffff;
      --border: rgba(76,88,90,.18);

      --radius: 18px;
      --shadow: 0 10px 30px rgba(0,0,0,.06);
      --max: 1100px;
    }

    *{ box-sizing:border-box; }
    html, body{ margin:0; padding:0; }
    body{
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background: var(--bg);
      color: var(--text);
      line-height: 1.45;
    }

    a{ color: inherit; text-decoration: none; }
    a:hover{ text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

    .container{
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
    }

    /* Header */
    .site-header{
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,251,244,.82);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 18px;
      padding: 14px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap: 12px;
      min-width: 190px;
    }
    .brand-mark{
      width: 42px; height: 42px;
      display:grid; place-items:center;
      border-radius: 12px;
      background: #ffffff;
      border: 1px solid var(--border);
      box-shadow: 0 6px 18px rgba(0,0,0,.04);
      overflow:hidden;
    }
    .brand-mark img{
      width: 100%; height: 100%;
      object-fit: contain;
      padding: 6px;
    }
    .brand-name{
      font-family: Poppins, Inter, sans-serif;
      font-weight: 700;
      letter-spacing: .2px;
      line-height: 1.0;
    }
    .brand-tag{
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px;
    }

    .nav{
      display:flex;
      align-items:center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav a{
      font-weight: 600;
      color: var(--slate-gray);
      padding: 8px 10px;
      border-radius: 10px;
    }
    .nav a:hover{
      text-decoration:none;
      background: rgba(65,100,122,.08);
    }

    .header-actions{
      display:flex;
      align-items:center;
      gap: 10px;
      min-width: 240px;
      justify-content:flex-end;
      flex-wrap: wrap;
    }
    .pill{
      font-size: 13px;
      color: var(--steel-blue);
      font-weight: 700;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(65,100,122,.25);
      background: rgba(65,100,122,.06);
      white-space: nowrap;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      font-weight: 700;
      padding: 11px 14px;
      border-radius: 14px;
      border: 1px solid transparent;
      cursor: pointer;
      text-decoration: none !important;
      white-space: nowrap;
    }
    .btn-primary{
      background: var(--steel-blue);
      color: #fff;
      box-shadow: 0 10px 18px rgba(65,100,122,.20);
    }
    .btn-primary:hover{ filter: brightness(0.98); }

    .btn-secondary{
      background: #fff;
      color: var(--steel-blue);
      border-color: rgba(65,100,122,.25);
    }

    /* Hero */
    .hero{
      padding: 56px 0 28px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 28px;
      align-items: start;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      font-weight: 800;
      color: var(--steel-blue);
      background: rgba(65,100,122,.08);
      border: 1px solid rgba(65,100,122,.18);
      padding: 8px 12px;
      border-radius: 999px;
      margin-bottom: 14px;
    }
    h1{
      font-family: Poppins, Inter, sans-serif;
      font-weight: 700;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.05;
      margin: 0 0 12px;
      letter-spacing: -0.5px;
    }
    .hero p{
      margin: 0 0 18px;
      font-size: 17px;
      color: var(--muted);
      max-width: 58ch;
    }
    .hero-actions{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items:center;
      margin-top: 8px;
    }
    .subnote{
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .hero-card{
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px;
    }
    .hero-card h3{
      font-family: Poppins, Inter, sans-serif;
      margin: 0 0 10px;
      font-size: 16px;
    }
    .checklist{
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
    }
    .checklist li{ margin: 8px 0; }
    .callout{
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(83,149,146,.10);
      border: 1px solid rgba(83,149,146,.28);
      color: #214645;
      font-weight: 600;
      font-size: 14px;
    }

    /* Sections */
    section{
      padding: 22px 0;
    }
    .section-title{
      font-family: Poppins, Inter, sans-serif;
      font-size: 22px;
      margin: 0 0 8px;
      letter-spacing: -0.2px;
    }
    .section-lead{
      margin: 0 0 14px;
      color: var(--muted);
      max-width: 72ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .card{
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px;
    }
    .card h3{
      font-family: Poppins, Inter, sans-serif;
      margin: 0 0 6px;
      font-size: 16px;
    }
    .card p{
      margin: 0;
      color: var(--muted);
    }
    .card a.card-link{
      display:inline-block;
      margin-top: 12px;
      font-weight: 800;
      color: var(--steel-blue);
      text-decoration: none;
    }
    .card a.card-link:hover{ text-decoration: underline; }

    .fit-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .goodfit{
      border-left: 6px solid rgba(83,149,146,.55);
    }
    .notfit{
      border-left: 6px solid rgba(206,116,89,.55);
    }
    .bullets{
      margin: 10px 0 0;
      padding-left: 18px;
      color: var(--muted);
    }
    .bullets li{ margin: 8px 0; }

    .cta-strip{
      margin: 16px 0 44px;
      padding: 22px;
      border-radius: calc(var(--radius) + 6px);
      background: linear-gradient(135deg, rgba(65,100,122,.12), rgba(83,149,146,.10));
      border: 1px solid rgba(65,100,122,.18);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .cta-strip h2{
      font-family: Poppins, Inter, sans-serif;
      margin: 0;
      font-size: 20px;
    }
    .cta-strip p{
      margin: 6px 0 0;
      color: var(--muted);
    }

    /* Footer */
    .site-footer{
      border-top: 1px solid var(--border);
      padding: 26px 0;
      background: rgba(255,255,255,.45);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
      align-items:start;
    }
    .footer-small{
      color: var(--muted);
      font-size: 13px;
      margin-top: 8px;
    }
    .footer-links{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content:flex-end;
    }
    .footer-links a{
      font-weight: 700;
      color: var(--slate-gray);
    }

    /* Responsive */
    @media (max-width: 900px){
      .hero-grid{ grid-template-columns: 1fr; }
      .grid-3{ grid-template-columns: 1fr; }
      .fit-grid{ grid-template-columns: 1fr; }
      .header-inner{ flex-wrap: wrap; }
      .header-actions{ min-width: unset; justify-content:flex-start; }
      .nav{ justify-content:flex-start; }
      .footer-grid{ grid-template-columns: 1fr; }
      .footer-links{ justify-content:flex-start; }
    }