:root {
    --violet: #7c3aed;
    --violet-dark: #5b21b6;
    --some-blue: #007bff;
    --some-darker-blue: #0056b3;
    --bg: #fafafa;
    --text: #ffffff;
    --muted: #64748b;
    --pretty: #e0e7ff;
    --line: #d1d5db;
    --black: #000000;
    --left: #111;
    --right: #222;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    height: 100vh;
  }
  
  .layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
  }
  
  @media (max-width: 900px) {
    .layout {
      grid-template-columns: 1fr;
    }
    .left {
      display: none;
    }
  }
  
  /* Left Panel */
  .left {
    background: var(--right);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .phone-img {
    width: 50%;
  }
  
  /* Right Panel */
  .right {
    background: var(--left);
    color: var(--text);
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }
  
  @media (max-width: 900px) {
    .right {
      padding: 40px 30px;
    }
  }
  
  /* Brand Section */
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
  }
  
  .logo img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
  }
  
  .name {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
  }
  
  .govt {
    margin: 0;
    color: var(--some-blue);
    font-weight: 600;
  }
  
  .desc {
    margin: 4px 0 20px;
    color: var(--muted);
  }
  
  /* Titles & Text */
  .verify-title {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 600;
  }
  
  .verify-sub {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  /* Buttons */
  .actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
  }
  
  .btn.primary {
    background: var(--some-blue);
    /* background: var(--violet); */
    color: #fff;
  }
  
  .btn.primary:hover {
    /* background: var(--violet-dark); */
    background: var(--some-darker-blue);
  }
  
  .btn.secondary {
    /* background: var(--pretty); */
    background: var(--right);
    color: var(--pretty);
  }
  
  .btn.outline {
    background: transparent;
    border: 2px solid var(--some-blue);
    color: var(--some-blue);
  }
  
  .btn.outline:hover {
    background: var(--some-blue);
    color: var(--text);
  }
  
  /* GitHub-style Button (light-theme adapted) */
  .github-btn {
    background-color: var(--pretty);
    color: #24292e;
    border: 1px solid #d0d7de;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .github-btn:hover {
    background-color: #dbe1ff;
    color: #000;
  }
  
  .github-btn:active {
    background-color: var(--violet);
    color: #fff;
    transform: scale(0.98);
  }
  
  .github-btn:focus {
    outline: 2px solid var(--violet-dark);
    outline-offset: 2px;
  }
  
  /* Features */
  .features ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
  }
  
  .features li {
    background: var(--pretty);
    color: var(--black);
    padding: 10px 14px;
    margin: 6px 0;
    border-radius: 8px;
    font-size: 15px;
  }
  .features-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--some-blue);
    margin-top: 30px;
    margin-bottom: 10px;
    border-left: 4px solid var(--some-blue);
    padding-left: 10px;
  }
  
  /* Notes & Footer */
  .note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 14px;
  }
  
  .last-update {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    font-style: italic;
  }
  
  .foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #7a8698;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    font-size: 14px;
  }
  