    :root {
      --bg: #f4f7f9;
      --bg-soft: #eef3f6;
      --surface: #ffffff;
      --surface-2: #f8fafb;
      --surface-3: #edf3f7;
      --text: #10202b;
      --text-muted: #5f7180;
      --text-soft: #7d8c97;
      --border: #dbe4ea;
      --border-strong: #becbd4;
      --primary: #17496a;
      --primary-2: #0f5e8f;
      --primary-soft: #d9ecf7;
      --accent: #b88a32;
      --accent-soft: #f2e6cf;
      --success: #247a57;
      --success-soft: #dff2e9;
      --warning: #9a6818;
      --warning-soft: #f5ead8;
      --danger: #a23b3b;
      --danger-soft: #f4dedf;
      --shadow: 0 24px 70px rgba(14, 36, 51, 0.12);
      --shadow-soft: 0 16px 40px rgba(14, 36, 51, 0.08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --max: 1220px;
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: var(--font);
      background:
        radial-gradient(circle at top left, rgba(23, 73, 106, 0.12), transparent 34rem),
        radial-gradient(circle at top right, rgba(184, 138, 50, 0.12), transparent 28rem),
        linear-gradient(180deg, #f8fbfd 0%, var(--bg) 44%, #eef4f7 100%);
      color: var(--text);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .page-shell {
      overflow: hidden;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(22px);
      background: rgba(248, 251, 253, 0.82);
      border-bottom: 1px solid rgba(219, 228, 234, 0.76);
    }

    .topbar-inner {
      max-width: var(--max);
      margin: 0 auto;
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 0 24px;
    }

		.brand {
			display: flex;
			align-items: center;
			gap: 12px;
			min-width: fit-content;
		}

		.brand-logo {
			width: 42px;
			height: 42px;
			display: block;
			object-fit: contain;
			border-radius: 14px;
		}

    .brand-text strong {
      display: block;
      font-size: 1.1rem;
      letter-spacing: -0.03em;
    }

    .brand-text span {
      display: block;
      margin-top: 2px;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--text-muted);
      font-size: 0.93rem;
    }

    .nav a {
      padding: 10px 12px;
      border-radius: 999px;
      transition: 180ms ease;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--primary);
      background: var(--primary-soft);
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: fit-content;
    }

    .btn {
      border: 0;
      border-radius: 999px;
      padding: 12px 17px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 700;
      color: var(--text);
      background: var(--surface);
      box-shadow: inset 0 0 0 1px var(--border);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: inset 0 0 0 1px var(--border-strong), 0 12px 24px rgba(14, 36, 51, 0.08);
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #fff;
      box-shadow: 0 18px 34px rgba(23, 73, 106, 0.24);
    }

    .btn.gold {
      background: linear-gradient(135deg, var(--accent), #d8ac5c);
      color: #1d160c;
      box-shadow: 0 18px 34px rgba(184, 138, 50, 0.24);
    }

    .btn.ghost {
      background: rgba(255, 255, 255, 0.66);
    }

    .btn.small {
      padding: 9px 13px;
      font-size: 0.86rem;
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 14px;
      background: var(--surface);
      box-shadow: inset 0 0 0 1px var(--border);
    }

    .mobile-menu-btn span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      background: var(--primary);
      border-radius: 2px;
    }

    .hero {
      max-width: var(--max);
      margin: 0 auto;
      padding: 76px 24px 34px;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
      gap: 42px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 13px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--primary);
      font-size: 0.88rem;
      font-weight: 800;
      box-shadow: var(--shadow-soft);
    }

    .eyebrow i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 0 6px rgba(36, 122, 87, 0.12);
    }

    .hero h1 {
      margin: 24px 0 18px;
      font-size: clamp(2.7rem, 6vw, 5.9rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      color: #0c1d28;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero-lead {
      max-width: 680px;
      margin: 0;
      font-size: clamp(1.06rem, 1.7vw, 1.28rem);
      line-height: 1.72;
      color: var(--text-muted);
    }

    .hero-actions {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 36px;
      max-width: 780px;
    }

    .trust-card {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    .trust-card strong {
      display: block;
      font-size: 1.45rem;
      letter-spacing: -0.04em;
      color: var(--primary);
    }

    .trust-card span {
      display: block;
      margin-top: 5px;
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.45;
    }

    .hero-panel {
      position: relative;
    }

    .visual-story-section {
			padding-top: 70px;
			}

			.visual-story-grid {
			display: grid;
			grid-template-columns: repeat(3, minmax(0, 1fr));
			gap: 18px;
			}

			.visual-story-card {
			overflow: hidden;
			border-radius: 30px;
			background: rgba(255, 255, 255, 0.84);
			border: 1px solid var(--border);
			box-shadow: var(--shadow-soft);
			transition: transform 180ms ease, box-shadow 180ms ease;
			}

			.visual-story-card:hover {
			transform: translateY(-3px);
			box-shadow: var(--shadow);
			}

			.visual-story-image {
			position: relative;
			aspect-ratio: 4 / 3;
			overflow: hidden;
			background: var(--surface-3);
			}

			.visual-story-image::after {
			content: "";
			position: absolute;
			inset: 0;
			background:
					linear-gradient(
					180deg,
					rgba(12, 29, 40, 0) 35%,
					rgba(12, 29, 40, 0.22) 100%
					);
			pointer-events: none;
			}

			.visual-story-image img {
			width: 100%;
			height: 100%;
			display: block;
			object-fit: cover;
			transition: transform 500ms ease;
			}

			.visual-story-card:hover .visual-story-image img {
			transform: scale(1.045);
			}

			.visual-story-content {
			padding: 24px;
			}

			.visual-story-content span {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			width: 42px;
			height: 42px;
			margin-bottom: 16px;
			border-radius: 14px;
			background: var(--accent-soft);
			color: var(--warning);
			font-weight: 900;
			}

			.visual-story-content h3 {
			margin: 0 0 10px;
			font-size: 1.28rem;
			letter-spacing: -0.04em;
			color: var(--text);
			}

			.visual-story-content p {
			margin: 0;
			color: var(--text-muted);
			line-height: 1.65;
			font-size: 0.95rem;
			}

			@media (max-width: 980px) {
			.visual-story-grid {
					grid-template-columns: 1fr;
			}

			.visual-story-card {
					display: grid;
					grid-template-columns: 1fr 1fr;
			}

			.visual-story-image {
					aspect-ratio: auto;
					min-height: 260px;
			}
			}

			@media (max-width: 680px) {
			.visual-story-card {
					display: block;
			}

			.visual-story-image {
					aspect-ratio: 4 / 3;
					min-height: auto;
			}
			}

    .citizen-card {
      border-radius: 32px;
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(219, 228, 234, 0.9);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .citizen-card-header {
      padding: 22px;
      background: linear-gradient(135deg, #153d59, #0e2b40);
      color: white;
    }

    .status-top {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: flex-start;
    }

    .status-top strong {
      display: block;
      font-size: 1.08rem;
      letter-spacing: -0.02em;
    }

    .status-top span {
      display: block;
      margin-top: 5px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.86rem;
      line-height: 1.45;
    }

    .verified-pill {
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 0.78rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .id-box {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 16px;
      align-items: center;
    }

    .id-avatar {
      width: 74px;
      height: 74px;
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.32)),
        radial-gradient(circle at 50% 34%, #fff 0 11px, transparent 12px),
        radial-gradient(circle at 50% 88%, #fff 0 27px, transparent 28px);
      border: 1px solid rgba(255, 255, 255, 0.28);
    }

    .id-details {
      min-width: 0;
    }

    .id-details .line {
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
      margin: 10px 0;
    }

    .id-details .line.one {
      width: 72%;
    }

    .id-details .line.two {
      width: 54%;
    }

    .citizen-card-body {
      padding: 22px;
    }

    .vote-title-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .vote-title-row h2 {
      margin: 0;
      font-size: 1.25rem;
      letter-spacing: -0.035em;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 10px;
      border-radius: 999px;
      background: var(--surface-3);
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .vote-options {
      display: grid;
      gap: 9px;
    }

    .vote-option {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 52px;
      padding: 14px 15px;
      overflow: hidden;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: var(--surface-2);
    }

    .vote-option::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: var(--w, 40%);
      background: rgba(23, 73, 106, 0.1);
    }

    .vote-option span,
    .vote-option strong {
      position: relative;
      z-index: 1;
    }

    .vote-option strong {
      color: var(--primary);
    }

    .secure-note {
      margin-top: 18px;
      display: flex;
      gap: 10px;
      padding: 13px;
      border-radius: 16px;
      background: var(--success-soft);
      color: #1d5d43;
      font-size: 0.86rem;
      line-height: 1.5;
    }

    .secure-note b {
      color: #144831;
    }

    .floating-badge {
      position: absolute;
      right: -18px;
      bottom: -102px;
      width: 170px;
      padding: 16px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .floating-badge strong {
      display: block;
      font-size: 1.8rem;
      letter-spacing: -0.05em;
      color: var(--accent);
    }

    .floating-badge span {
      display: block;
      margin-top: 3px;
      color: var(--text-muted);
      font-size: 0.82rem;
      line-height: 1.35;
    }

    .section {
      max-width: var(--max);
      margin: 0 auto;
      padding: 70px 24px;
    }

    .section-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 28px;
    }

    .section-kicker {
      margin: 0 0 8px;
      color: var(--accent);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.75rem;
    }

    .section h2 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(2rem, 4.5vw, 3.55rem);
      line-height: 1.02;
      letter-spacing: -0.065em;
    }

    .section-header p {
      max-width: 450px;
      margin: 0;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .feature-card {
      position: relative;
      min-height: 250px;
      padding: 22px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .feature-card::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -100px;
      bottom: -100px;
      border-radius: 50%;
      background: rgba(23, 73, 106, 0.08);
    }

    .feature-icon {
      width: 46px;
      height: 46px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      color: var(--primary);
      background: var(--primary-soft);
    }

    .feature-card h3 {
      position: relative;
      margin: 0 0 10px;
      font-size: 1.15rem;
      letter-spacing: -0.035em;
    }

    .feature-card p {
      position: relative;
      margin: 0;
      color: var(--text-muted);
      line-height: 1.62;
      font-size: 0.94rem;
    }

    .workspace {
      background: #0d2230;
      color: #eef7fb;
      margin: 38px auto 0;
      border-radius: 40px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .workspace-top {
      padding: 24px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.03);
    }

    .workspace-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .workspace-tab {
      border: 0;
      border-radius: 999px;
      padding: 10px 13px;
      color: rgba(238, 247, 251, 0.72);
      background: rgba(255, 255, 255, 0.07);
      transition: 180ms ease;
    }

    .workspace-tab.active,
    .workspace-tab:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.16);
    }

    .workspace-status {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(238, 247, 251, 0.72);
      font-size: 0.88rem;
      white-space: nowrap;
    }

    .workspace-status i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #67d9a4;
    }

    .workspace-body {
      padding: 22px;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 18px;
    }

    .process-list {
      display: grid;
      gap: 12px;
    }

    .process-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-item h3 {
      margin: 0 0 8px;
      letter-spacing: -0.03em;
      font-size: 1.08rem;
    }

    .process-item p {
      margin: 0;
      color: rgba(238, 247, 251, 0.68);
      line-height: 1.55;
      font-size: 0.92rem;
    }

    .process-meta {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .meta-pill {
      padding: 7px 9px;
      border-radius: 999px;
      color: rgba(238, 247, 251, 0.84);
      background: rgba(255, 255, 255, 0.08);
      font-size: 0.75rem;
      font-weight: 800;
    }

    .progress-ring {
      width: 86px;
      height: 86px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at center, #0d2230 0 54%, transparent 55%),
        conic-gradient(#67d9a4 var(--p), rgba(255,255,255,0.14) 0);
      color: white;
      font-weight: 900;
      letter-spacing: -0.04em;
      align-self: center;
    }

    .side-panel {
      display: grid;
      gap: 14px;
    }

    .audit-card,
    .calendar-card,
    .docs-card {
      padding: 18px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.11);
    }

    .audit-card h3,
    .calendar-card h3,
    .docs-card h3 {
      margin: 0 0 14px;
      font-size: 1rem;
      letter-spacing: -0.03em;
    }

    .audit-entry {
      display: grid;
      grid-template-columns: 8px 1fr;
      gap: 10px;
      padding: 10px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(238, 247, 251, 0.72);
      font-size: 0.84rem;
      line-height: 1.45;
    }

    .audit-entry:first-of-type {
      border-top: 0;
      padding-top: 0;
    }

    .audit-entry i {
      width: 8px;
      height: 8px;
      margin-top: 5px;
      border-radius: 50%;
      background: var(--accent);
    }

    .calendar-row,
    .doc-row {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 11px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(238, 247, 251, 0.75);
      font-size: 0.86rem;
    }

    .calendar-row:first-of-type,
    .doc-row:first-of-type {
      border-top: 0;
      padding-top: 0;
    }

    .calendar-row strong,
    .doc-row strong {
      color: #fff;
    }

    .participation-layout {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 18px;
    }

    .filter-card {
      align-self: start;
      position: sticky;
      top: 100px;
      padding: 22px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    .filter-card h3 {
      margin: 0 0 14px;
      letter-spacing: -0.04em;
      font-size: 1.32rem;
    }

    .search-box {
      position: relative;
      margin-bottom: 14px;
    }

    .search-box input {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 17px;
      padding: 14px 16px 14px 42px;
      background: #fff;
      color: var(--text);
      outline: none;
    }

    .search-box svg {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-soft);
    }

    .chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0 18px;
    }

    .chip {
      border: 0;
      border-radius: 999px;
      padding: 9px 11px;
      background: var(--surface-3);
      color: var(--text-muted);
      font-weight: 800;
      font-size: 0.82rem;
      transition: 180ms ease;
    }

    .chip.active,
    .chip:hover {
      background: var(--primary);
      color: white;
    }

    .filter-small {
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .filter-small label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--text-muted);
      font-size: 0.9rem;
      padding: 9px 0;
    }

    .toggle {
      width: 44px;
      height: 25px;
      border-radius: 999px;
      background: var(--primary-soft);
      position: relative;
      flex: 0 0 auto;
    }

    .toggle::after {
      content: "";
      position: absolute;
      width: 19px;
      height: 19px;
      top: 3px;
      right: 3px;
      border-radius: 50%;
      background: var(--primary);
    }

    .initiative-list {
      display: grid;
      gap: 14px;
    }

    .initiative-card {
      padding: 22px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
    }

    .initiative-card.hide {
      display: none;
    }

    .initiative-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .initiative-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 12px;
    }

    .initiative-card h3 {
      margin: 0 0 8px;
      font-size: 1.38rem;
      letter-spacing: -0.045em;
    }

    .initiative-card p {
      margin: 0;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .status-pill {
      padding: 8px 11px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .status-pill.open {
      background: var(--success-soft);
      color: var(--success);
    }

    .status-pill.review {
      background: var(--warning-soft);
      color: var(--warning);
    }

    .status-pill.vote {
      background: var(--primary-soft);
      color: var(--primary);
    }

    .initiative-footer {
      margin-top: 18px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 18px;
    }

    .bar-wrap {
      min-width: 0;
    }

    .bar-label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--text-muted);
      font-size: 0.82rem;
      margin-bottom: 8px;
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      background: var(--surface-3);
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      width: var(--w, 50%);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .governance {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .governance-card {
      padding: 24px;
      min-height: 260px;
      border-radius: 28px;
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    .governance-card .num {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: var(--accent-soft);
      color: var(--warning);
      font-weight: 900;
      margin-bottom: 18px;
    }

    .governance-card h3 {
      margin: 0 0 11px;
      letter-spacing: -0.04em;
      font-size: 1.24rem;
    }

    .governance-card p {
      margin: 0;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .security-band {
      border-radius: 36px;
      background: linear-gradient(135deg, #f9fbfc, #eef4f7);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      padding: 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: center;
    }

    .security-band h2 {
      font-size: clamp(2rem, 4vw, 3rem);
    }

    .security-band p {
      color: var(--text-muted);
      line-height: 1.72;
      font-size: 1rem;
    }

    .security-list {
      display: grid;
      gap: 12px;
    }

    .security-item {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 12px;
      align-items: flex-start;
      padding: 15px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid var(--border);
    }

    .security-item i {
      width: 36px;
      height: 36px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: var(--success-soft);
      color: var(--success);
      font-style: normal;
      font-weight: 900;
    }

    .security-item strong {
      display: block;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .security-item span {
      display: block;
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.48;
    }

    .footer {
      margin-top: 50px;
      padding: 38px 24px;
      background: #0d2230;
      color: rgba(238, 247, 251, 0.76);
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: start;
    }

    .footer strong {
      color: white;
    }

    .footer p {
      max-width: 680px;
      margin: 10px 0 0;
      line-height: 1.65;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
    }

    .footer-links a {
      padding: 9px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
      color: rgba(238, 247, 251, 0.8);
      font-size: 0.86rem;
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(5, 17, 25, 0.54);
      backdrop-filter: blur(14px);
    }

    .modal-backdrop.show {
      display: flex;
    }

    .modal {
      width: min(560px, 100%);
      border-radius: 30px;
      background: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
      animation: modalIn 200ms ease both;
    }

    @keyframes modalIn {
      from { transform: translateY(12px) scale(0.98); opacity: 0; }
      to { transform: translateY(0) scale(1); opacity: 1; }
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: flex-start;
      padding: 24px 24px 18px;
      border-bottom: 1px solid var(--border);
    }

    .modal-head h3 {
      margin: 0 0 6px;
      letter-spacing: -0.045em;
      font-size: 1.6rem;
    }

    .modal-head p {
      margin: 0;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .close-modal {
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 14px;
      background: var(--surface-3);
      color: var(--text);
      font-size: 1.2rem;
    }

    .modal-body {
      padding: 22px 24px 24px;
    }

    .verify-steps {
      display: grid;
      gap: 11px;
      margin-bottom: 18px;
    }

    .verify-step {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 11px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 18px;
      background: var(--surface-2);
      border: 1px solid var(--border);
    }

    .verify-step i {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--primary-soft);
      color: var(--primary);
      font-style: normal;
      font-weight: 900;
    }

    .verify-step strong {
      display: block;
      margin-bottom: 4px;
    }

    .verify-step span {
      color: var(--text-muted);
      line-height: 1.45;
      font-size: 0.9rem;
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 24px;
      z-index: 120;
      transform: translate(-50%, 20px);
      opacity: 0;
      pointer-events: none;
      padding: 14px 16px;
      border-radius: 999px;
      background: #10202b;
      color: white;
      box-shadow: var(--shadow);
      transition: 220ms ease;
      font-weight: 800;
      font-size: 0.9rem;
    }

    .toast.show {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .fade-in {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 600ms ease, transform 600ms ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    @media (max-width: 1040px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        max-width: 650px;
      }

      .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .workspace-body,
      .participation-layout,
      .security-band {
        grid-template-columns: 1fr;
      }

      .filter-card {
        position: static;
      }
    }

    @media (max-width: 820px) {
      .topbar-inner {
        min-height: 70px;
      }

      .nav,
      .topbar-actions .btn.ghost {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .topbar.menu-open .nav {
        position: absolute;
        display: grid;
        left: 16px;
        right: 16px;
        top: 78px;
        padding: 12px;
        border-radius: 22px;
        background: #fff;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .hero {
        padding-top: 50px;
      }

      .trust-row,
      .governance,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .section-header {
        display: block;
      }

      .section-header p {
        margin-top: 16px;
      }

      .workspace-top {
        display: block;
      }

      .workspace-status {
        margin-top: 14px;
      }

      .process-item,
      .initiative-footer {
        grid-template-columns: 1fr;
      }

      .progress-ring {
        justify-self: start;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 620px) {
      .topbar-inner,
      .hero,
      .section {
        padding-left: 16px;
        padding-right: 16px;
      }

      .brand-text span {
        display: none;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .citizen-card {
        border-radius: 26px;
      }

      .floating-badge {
        position: static;
        width: auto;
        margin-top: 14px;
      }

      .status-top,
      .vote-title-row,
      .initiative-head {
        display: block;
      }

      .verified-pill,
      .tag,
      .status-pill {
        margin-top: 12px;
        width: fit-content;
      }

      .workspace,
      .security-band {
        border-radius: 26px;
      }
    }

		.footer-links a,
		.footer-links button {
			padding: 9px 11px;
			border-radius: 999px;
			background: rgba(255, 255, 255, 0.07);
			color: rgba(238, 247, 251, 0.8);
			font-size: 0.86rem;
			border: 0;
			cursor: pointer;
			font: inherit;
		}

		.footer-links a:hover,
		.footer-links button:hover {
			background: rgba(255, 255, 255, 0.13);
			color: #ffffff;
		}

		.legal-modal-backdrop {
			position: fixed;
			inset: 0;
			z-index: 130;
			display: none;
			align-items: center;
			justify-content: center;
			padding: 18px;
			background: rgba(5, 17, 25, 0.58);
			backdrop-filter: blur(14px);
		}

		.legal-modal-backdrop.show {
			display: flex;
		}

		.legal-modal {
			width: min(760px, 100%);
			max-height: min(780px, 88vh);
			display: flex;
			flex-direction: column;
			border-radius: 30px;
			background: #ffffff;
			box-shadow: var(--shadow);
			overflow: hidden;
			animation: modalIn 200ms ease both;
		}

		.legal-modal-head {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
			gap: 18px;
			padding: 24px 24px 18px;
			border-bottom: 1px solid var(--border);
		}

		.legal-modal-head h3 {
			margin: 0 0 6px;
			font-size: 1.65rem;
			letter-spacing: -0.045em;
			color: var(--text);
		}

		.legal-modal-head p {
			margin: 0;
			color: var(--text-muted);
			line-height: 1.5;
		}

		.legal-modal-close {
			width: 40px;
			height: 40px;
			flex: 0 0 auto;
			border: 0;
			border-radius: 14px;
			background: var(--surface-3);
			color: var(--text);
			font-size: 1.2rem;
			cursor: pointer;
		}

		.legal-modal-body {
			padding: 22px 24px 26px;
			overflow: auto;
			color: var(--text-muted);
			line-height: 1.7;
		}

		.legal-modal-body h4 {
			margin: 22px 0 8px;
			color: var(--text);
			font-size: 1.05rem;
			letter-spacing: -0.025em;
		}

		.legal-modal-body h4:first-child {
			margin-top: 0;
		}

		.legal-modal-body p {
			margin: 0 0 12px;
		}

		.legal-modal-body ul {
			margin: 0 0 14px;
			padding-left: 20px;
		}

		.legal-modal-note {
			margin-top: 18px;
			padding: 14px;
			border-radius: 18px;
			background: var(--warning-soft);
			color: var(--warning);
			font-size: 0.9rem;
		}