File size: 47,304 Bytes
a709c39 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EHOX Systems — HEPE Hardware-Enforced AI Policy Governance</title>
<style>
:root {
--black: #060C18;
--navy: #0B1E3D;
--blue: #1A4F8A;
--cyan: #00A8CC;
--gold: #C9A84C;
--red: #C0392B;
--green: #27AE60;
--white: #FFFFFF;
--offwhite:#D8E4F0;
--gray: #7A8FA6;
--dimgray: #3A4F65;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--black);
color: var(--offwhite);
font-family: 'Arial', sans-serif;
line-height: 1.6;
overflow-x: hidden;
}
/* ── NAV ── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(6,12,24,0.95);
border-bottom: 1px solid #1A2A4A;
display: flex; align-items: center; justify-content: space-between;
padding: 0 40px; height: 60px;
backdrop-filter: blur(8px);
}
.nav-logo {
display: flex; align-items: center; gap: 14px;
}
.nav-emblem {
width: 32px; height: 32px; position: relative;
}
.nav-emblem svg { width: 32px; height: 32px; }
.nav-name { font-size: 13px; font-weight: 700; letter-spacing: 3px; color: var(--white); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
font-size: 11px; letter-spacing: 2px; color: var(--gray);
text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
font-size: 10px; font-weight: 700; letter-spacing: 2px;
color: var(--black); background: var(--cyan);
padding: 8px 18px; text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); }
/* ── HERO ── */
.hero {
min-height: 100vh;
display: flex; flex-direction: column;
align-items: center; justify-content: center;
padding: 120px 40px 80px;
position: relative; overflow: hidden;
}
/* Grid background */
.hero::before {
content: '';
position: absolute; inset: 0;
background-image:
linear-gradient(rgba(0,168,204,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,168,204,0.04) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
}
/* Radar sweep animation */
.radar {
width: 200px; height: 200px;
position: relative; margin-bottom: 48px;
}
.radar-ring {
position: absolute; border-radius: 50%;
border: 1px solid;
top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.radar-ring:nth-child(1) { width: 200px; height: 200px; border-color: rgba(0,168,204,0.3); }
.radar-ring:nth-child(2) { width: 140px; height: 140px; border-color: rgba(201,168,76,0.4); }
.radar-ring:nth-child(3) { width: 80px; height: 80px; border-color: rgba(0,168,204,0.5); }
.radar-dot {
position: absolute; width: 12px; height: 12px;
background: var(--cyan); border-radius: 50%;
top: 50%; left: 50%; transform: translate(-50%, -50%);
box-shadow: 0 0 20px var(--cyan);
animation: pulse-dot 2s ease-in-out infinite;
}
.radar-line {
position: absolute; width: 50%; height: 1px;
background: linear-gradient(90deg, var(--cyan), transparent);
top: 50%; left: 50%; transform-origin: left center;
animation: radar-sweep 4s linear infinite;
}
.radar-cross-h {
position: absolute; width: 200px; height: 1px;
background: rgba(0,168,204,0.15);
top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.radar-cross-v {
position: absolute; width: 1px; height: 200px;
background: rgba(0,168,204,0.15);
top: 50%; left: 50%; transform: translate(-50%, -50%);
}
@keyframes radar-sweep {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; box-shadow: 0 0 20px var(--cyan); }
50% { opacity: 0.6; box-shadow: 0 0 8px var(--cyan); }
}
.hero-tag {
font-size: 10px; letter-spacing: 4px; color: var(--cyan);
margin-bottom: 16px; text-align: center;
}
.hero-title {
font-size: clamp(32px, 5vw, 56px);
font-weight: 700; letter-spacing: 6px;
color: var(--white); text-align: center;
margin-bottom: 12px;
}
.hero-subtitle {
font-size: clamp(13px, 2vw, 16px);
color: var(--cyan); text-align: center;
letter-spacing: 1px; margin-bottom: 40px;
max-width: 700px;
}
.hero-divider {
width: 400px; max-width: 80vw; height: 1px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
margin: 0 auto 40px;
}
.hero-stats {
display: flex; gap: 2px; flex-wrap: wrap; justify-content: center;
margin-bottom: 48px;
}
.stat-card {
background: var(--navy);
border: 1px solid var(--blue);
padding: 20px 28px; text-align: center; min-width: 120px;
transition: border-color 0.2s;
}
.stat-card:hover { border-color: var(--cyan); }
.stat-val {
font-size: 28px; font-weight: 700; color: var(--white);
font-family: 'Courier New', monospace;
}
.stat-lbl {
font-size: 9px; letter-spacing: 2px; color: var(--cyan);
margin-top: 4px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
background: var(--cyan); color: var(--black);
padding: 14px 32px; font-size: 11px; font-weight: 700;
letter-spacing: 2px; text-decoration: none;
transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold); }
.btn-secondary {
border: 1px solid var(--gold); color: var(--gold);
padding: 14px 32px; font-size: 11px; font-weight: 700;
letter-spacing: 2px; text-decoration: none;
transition: all 0.2s;
}
.btn-secondary:hover { background: var(--gold); color: var(--black); }
/* ── LIVE STATUS BAR ── */
.status-bar {
background: var(--black);
border-top: 1px solid #1A2A4A;
border-bottom: 1px solid #1A2A4A;
padding: 12px 40px;
display: flex; align-items: center; gap: 32px;
flex-wrap: wrap; overflow: hidden;
}
.status-item {
display: flex; align-items: center; gap: 8px;
font-size: 10px; letter-spacing: 1px; color: var(--gray);
white-space: nowrap;
}
.status-dot {
width: 7px; height: 7px; border-radius: 50%;
animation: pulse-dot 2s ease-in-out infinite;
}
.status-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.status-dot.cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.status-val { color: var(--white); font-weight: 700; }
/* ── SECTIONS ── */
section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.section-tag {
font-size: 9px; letter-spacing: 4px; color: var(--cyan);
margin-bottom: 12px;
}
.section-title {
font-size: clamp(24px, 3vw, 36px);
font-weight: 700; color: var(--white);
margin-bottom: 16px;
}
.section-sub {
font-size: 14px; color: var(--gray);
max-width: 700px; margin-bottom: 48px;
}
/* ── ARCHITECTURE ── */
.arch-stack { display: flex; flex-direction: column; gap: 3px; }
.arch-layer {
display: flex; align-items: stretch;
border: 1px solid var(--blue);
transition: border-color 0.2s;
cursor: default;
}
.arch-layer:hover { border-color: var(--cyan); }
.arch-num {
width: 48px; min-height: 60px;
background: var(--navy);
display: flex; align-items: center; justify-content: center;
font-size: 11px; font-weight: 700; color: var(--cyan);
letter-spacing: 1px; flex-shrink: 0;
}
.arch-body {
flex: 1; padding: 14px 20px;
background: linear-gradient(90deg, #0B1E3D, #060C18);
}
.arch-name { font-size: 13px; font-weight: 700; color: var(--white); }
.arch-desc { font-size: 11px; color: var(--gray); margin-top: 3px; }
.arch-badge {
padding: 2px 10px; font-size: 9px; font-weight: 700;
letter-spacing: 1px; align-self: center; margin: 0 16px;
flex-shrink: 0;
}
.arch-badge.cyan { border: 1px solid var(--cyan); color: var(--cyan); }
.arch-badge.gold { border: 1px solid var(--gold); color: var(--gold); }
.arch-badge.red { border: 1px solid var(--red); color: var(--red); }
.arch-badge.green { border: 1px solid var(--green); color: var(--green); }
.arch-arrow {
text-align: center; color: var(--gold); font-size: 16px;
padding: 2px 0; letter-spacing: 0;
}
/* ── TESTS ── */
.tests-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 16px;
}
.test-card {
background: var(--navy);
border: 1px solid var(--blue);
padding: 20px; transition: border-color 0.2s;
}
.test-card:hover { border-color: var(--cyan); }
.test-header {
display: flex; align-items: center;
justify-content: space-between; margin-bottom: 10px;
}
.test-code { font-size: 9px; color: var(--cyan); letter-spacing: 2px; }
.test-result {
font-size: 10px; font-weight: 700; padding: 3px 10px;
letter-spacing: 1px;
}
.test-result.block { border: 1px solid var(--red); color: var(--red); }
.test-result.abstain { border: 1px solid var(--gold); color: var(--gold); }
.test-result.pass { border: 1px solid var(--green); color: var(--green); }
.test-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.test-desc { font-size: 11px; color: var(--gray); }
/* ── REVIEWER SECTION ── */
.reviewer-section {
background: var(--black);
border-top: 1px solid #1A2A4A;
border-bottom: 1px solid #1A2A4A;
padding: 80px 40px;
}
.reviewer-inner {
max-width: 1200px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
align-items: center;
}
.reviewer-token-box {
background: var(--navy);
border: 2px solid var(--gold);
padding: 32px;
}
.token-label {
font-size: 9px; letter-spacing: 3px; color: var(--gold);
margin-bottom: 16px;
}
.token-input-row {
display: flex; gap: 0;
margin-bottom: 12px;
}
.token-input {
flex: 1; background: var(--black);
border: 1px solid var(--blue); border-right: none;
padding: 12px 16px; font-size: 13px;
color: var(--white); font-family: 'Courier New', monospace;
letter-spacing: 2px; outline: none;
}
.token-input:focus { border-color: var(--cyan); }
.token-btn {
background: var(--cyan); border: none;
padding: 12px 24px; font-size: 11px; font-weight: 700;
letter-spacing: 2px; color: var(--black); cursor: pointer;
transition: background 0.2s;
}
.token-btn:hover { background: var(--gold); }
.token-hint {
font-size: 10px; color: var(--gray);
}
.token-hint span { color: var(--cyan); cursor: pointer; }
.token-hint span:hover { color: var(--gold); }
#token-status {
margin-top: 12px; font-size: 11px; min-height: 20px;
}
.token-status-ok { color: var(--green); }
.token-status-err { color: var(--red); }
/* Live dashboard preview */
.dashboard-preview {
background: var(--navy);
border: 1px solid var(--blue); padding: 20px;
}
.dash-header {
display: flex; align-items: center; justify-content: space-between;
margin-bottom: 16px; padding-bottom: 12px;
border-bottom: 1px solid var(--blue);
}
.dash-title { font-size: 11px; letter-spacing: 2px; color: var(--cyan); }
.dash-live {
display: flex; align-items: center; gap: 6px;
font-size: 10px; color: var(--green);
}
.dash-metrics {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
margin-bottom: 16px;
}
.dash-metric {
background: var(--black); padding: 10px; text-align: center;
}
.dash-metric-val {
font-size: 18px; font-weight: 700; color: var(--white);
font-family: 'Courier New', monospace;
}
.dash-metric-lbl { font-size: 8px; color: var(--gray); letter-spacing: 1px; }
.dash-log {
background: var(--black); padding: 12px;
font-family: 'Courier New', monospace; font-size: 10px;
height: 120px; overflow-y: auto;
}
.log-line { margin-bottom: 4px; }
.log-line.green { color: var(--green); }
.log-line.cyan { color: var(--cyan); }
.log-line.gold { color: var(--gold); }
.log-line.gray { color: var(--gray); }
/* ── TARGETS ── */
.targets-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 16px;
}
.target-card {
background: var(--navy); border: 1px solid var(--blue);
padding: 24px; transition: border-color 0.2s;
}
.target-card:hover { border-color: var(--gold); }
.target-icon {
width: 40px; height: 40px; margin-bottom: 16px;
background: var(--blue); display: flex;
align-items: center; justify-content: center;
font-size: 18px;
}
.target-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.target-detail { font-size: 11px; color: var(--gray); }
.target-deadline {
font-size: 9px; color: var(--gold); letter-spacing: 1px;
margin-top: 12px;
}
/* ── HARDWARE ── */
.hw-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 12px; margin-bottom: 32px;
}
.hw-card {
background: var(--black); border: 1px solid var(--blue);
padding: 16px; text-align: center;
}
.hw-val {
font-size: 22px; font-weight: 700; color: var(--white);
font-family: 'Courier New', monospace;
animation: counter-tick 3s ease-in-out infinite alternate;
}
@keyframes counter-tick {
from { opacity: 0.8; }
to { opacity: 1; }
}
.hw-key { font-size: 9px; color: var(--gray); letter-spacing: 2px; margin-top: 4px; }
.hw-sub { font-size: 8px; color: var(--cyan); margin-top: 2px; }
/* ── FOOTER ── */
footer {
background: var(--black);
border-top: 1px solid #1A2A4A;
padding: 48px 40px 32px;
}
.footer-inner {
max-width: 1200px; margin: 0 auto;
display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
margin-bottom: 40px;
}
.footer-brand-name {
font-size: 14px; font-weight: 700; letter-spacing: 3px;
color: var(--white); margin-bottom: 8px;
}
.footer-brand-sub { font-size: 11px; color: var(--gray); margin-bottom: 16px; }
.footer-addr { font-size: 11px; color: var(--dimgray); line-height: 1.8; }
.footer-col-title {
font-size: 9px; letter-spacing: 3px; color: var(--cyan);
margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
font-size: 12px; color: var(--gray); text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
max-width: 1200px; margin: 0 auto;
padding-top: 24px; border-top: 1px solid #1A2A4A;
display: flex; justify-content: space-between; align-items: center;
flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 10px; color: var(--dimgray); }
.footer-standards { font-size: 9px; color: var(--dimgray); letter-spacing: 1px; }
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
nav { padding: 0 20px; }
.nav-links { display: none; }
section { padding: 60px 20px; }
.reviewer-inner { grid-template-columns: 1fr; gap: 32px; }
.footer-inner { grid-template-columns: 1fr; gap: 32px; }
.hero-stats { gap: 2px; }
.status-bar { padding: 12px 20px; gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
* { animation: none !important; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="nav-logo">
<div class="nav-emblem">
<svg viewBox="0 0 32 32" fill="none">
<circle cx="16" cy="16" r="15" stroke="#00A8CC" stroke-width="1.5"/>
<circle cx="16" cy="16" r="9" stroke="#C9A84C" stroke-width="1"/>
<circle cx="16" cy="16" r="4" fill="#00A8CC"/>
<line x1="16" y1="1" x2="16" y2="7" stroke="#00A8CC" stroke-width="0.8"/>
<line x1="16" y1="25" x2="16" y2="31" stroke="#00A8CC" stroke-width="0.8"/>
<line x1="1" y1="16" x2="7" y2="16" stroke="#00A8CC" stroke-width="0.8"/>
<line x1="25" y1="16" x2="31" y2="16" stroke="#00A8CC" stroke-width="0.8"/>
</svg>
</div>
<span class="nav-name">EHOX SYSTEMS</span>
</div>
<div class="nav-links">
<a href="#trust">TRUST PROBLEM</a>
<a href="#prove">PROVE API</a>
<a href="#competitive">COMPETITIVE</a>
<a href="#reviewer">REVIEWER ACCESS</a>
</div>
<a href="#reviewer" class="nav-cta">VERIFY LIVE →</a>
</nav>
<!-- HERO -->
<div class="hero">
<div class="radar">
<div class="radar-ring"></div>
<div class="radar-ring"></div>
<div class="radar-ring"></div>
<div class="radar-cross-h"></div>
<div class="radar-cross-v"></div>
<div class="radar-line"></div>
<div class="radar-dot"></div>
</div>
<p class="hero-tag">HEPE — HARDWARE-EMERGENT POLICY ENFORCEMENT · SI-PAT-006 · TRL 7 CONFIRMED</p>
<h1 class="hero-title">EHOX SYSTEMS</h1>
<p class="hero-subtitle">
Hardware-Enforced AI Policy Governance · CBMC 0/130 ARM64 · 67,738 dec/sec<br>
ISO/IEC 42001 · DO-178C Level A · FIPS 140-2 · EAL4+ · Strategy C · Vivado-Free · ITAR-Free
</p>
<div class="hero-divider"></div>
<div class="hero-stats">
<div class="stat-card">
<div class="stat-val">0/130</div>
<div class="stat-lbl">CBMC ASSERTIONS FAILED</div>
</div>
<div class="stat-card">
<div class="stat-val">67,738</div>
<div class="stat-lbl">DECISIONS/SEC</div>
</div>
<div class="stat-card">
<div class="stat-val">TRL 7</div>
<div class="stat-lbl">CONFIRMED</div>
</div>
<div class="stat-card">
<div class="stat-val">4/4</div>
<div class="stat-lbl">HW LAYERS PASS</div>
</div>
<div class="stat-card">
<div class="stat-val">Z3</div>
<div class="stat-lbl">PROVEN · MATHEMATICALLY IMPOSSIBLE</div>
</div>
</div>
<div class="hero-buttons">
<a href="#reviewer" class="btn-primary">VERIFY ON LIVE HARDWARE →</a>
<a href="#competitive" class="btn-secondary">VIEW COMPETITIVE POSITION</a>
</div>
</div>
<!-- STATUS BAR -->
<div class="status-bar">
<div class="status-item">
<div class="status-dot green"></div>
<span>ISO/IEC 42001</span>
<span class="status-val">COMPLIANT</span>
</div>
<div class="status-item">
<div class="status-dot green"></div>
<span>DO-178C</span>
<span class="status-val">LEVEL A</span>
</div>
<div class="status-item">
<div class="status-dot green"></div>
<span>FIPS 140-2</span>
<span class="status-val">PASS</span>
</div>
<div class="status-item">
<div class="status-dot green"></div>
<span>EAL4+</span>
<span class="status-val">OP-TEE</span>
</div>
<div class="status-item">
<div class="status-dot cyan"></div>
<span>CBMC 6.9.0</span>
<span class="status-val" style="color:#27AE60">0/130 FAILED</span>
</div>
<div class="status-item">
<div class="status-dot cyan"></div>
<span>Z3 SMT</span>
<span class="status-val">PROVEN</span>
</div>
<div class="status-item">
<div class="status-dot green"></div>
<span>STRATEGY C</span>
<span class="status-val">VIVADO-FREE · ITAR-FREE</span>
</div>
</div>
<!-- TRUST PROBLEM -->
<section id="trust" style="padding-top:40px;">
<p class="section-tag">THE TRUST PROBLEM</p>
<h2 class="section-title">Why Software Governance Has Failed</h2>
<div style="background:var(--navy);border-left:3px solid var(--gold);padding:20px 24px;margin-bottom:32px;">
<p style="font-size:14px;color:var(--offwhite);font-style:italic;margin-bottom:8px;">
"Der Zugang zu Anthropic Mythos wurde für Nicht-US-Bürger per Regierungsanordnung gesperrt. Europa wurde von wichtiger Technologie abgeschnitten."
</p>
<p style="font-size:11px;color:var(--gray);">Der Standard, 25. Juni 2026</p>
</div>
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px;margin-bottom:32px;">
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;">
<div style="font-size:11px;font-weight:700;color:var(--red);margin-bottom:6px;">12 JUNE 2026</div>
<div style="font-size:12px;color:var(--gray);">US Commerce Dept ordered Anthropic to shut off access to Mythos for all non-US citizens. Without warning. Without transition period.</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;">
<div style="font-size:11px;font-weight:700;color:var(--gold);margin-bottom:6px;">METR 2026</div>
<div style="font-size:12px;color:var(--gray);">Leading AI models actively circumvent their own software policy constraints.</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;">
<div style="font-size:11px;font-weight:700;color:var(--cyan);margin-bottom:6px;">SCIENCE MEDIA CENTER 2026</div>
<div style="font-size:12px;color:var(--gray);">"Sicherheitsmechanismen moderner KI-Systeme sind häufig nicht vollständig im Modell selbst verankert."</div>
</div>
</div>
<div style="padding:16px 24px;background:var(--navy);border:1px solid var(--green);">
<span style="font-size:13px;font-weight:700;color:var(--green);">EHOX enforces AI policy at the hardware level — where no software attack, no government order, and no policy circumvention can reach.</span>
</div>
</section>
<!-- PROVE API -->
<section id="prove">
<p class="section-tag">THE UNIVERSAL GOVERNANCE API</p>
<h2 class="section-title">prove() — Hardware-Enforced Decisions</h2>
<div style="background:var(--black);border:1px solid var(--blue);padding:20px;font-family:'Courier New',monospace;font-size:13px;line-height:2.2;margin-bottom:32px;">
<div><span style="color:var(--cyan)">prove</span>(<span style="color:var(--gold)">"JOINT_MOVE"</span>,<span style="color:var(--gold)">"ROBOTICS"</span>)<br> → <span style="color:var(--green)">EXECUTE</span> <span style="color:var(--gray)">| Sig #1001 | 68 cycles</span></div>
<div><span style="color:var(--cyan)">prove</span>(<span style="color:var(--gold)">"DRUG_DOSE"</span>,<span style="color:var(--gold)">"MEDICAL"</span>)<br> → <span style="color:var(--red)">REFUSE</span> <span style="color:var(--gray)">| Sig #1002 | 28 cycles</span></div>
<div><span style="color:var(--cyan)">prove</span>(<span style="color:var(--gold)">"TARGET_ENGAGE"</span>,<span style="color:var(--gold)">"DEFENCE"</span>)<br> → <span style="color:var(--gold)">ESCALATE + HITL</span> <span style="color:var(--gray)">| Sig #1003</span></div>
<div><span style="color:var(--cyan)">prove</span>(<span style="color:var(--gold)">"attitude_correct"</span>,<span style="color:var(--gold)">"SPACE"</span>)<br> → <span style="color:var(--gold)">ABSTAIN</span> <span style="color:var(--gray)">| hardware-rooted</span></div>
<div><span style="color:var(--cyan)">prove</span>(<span style="color:var(--gold)">"transfer_funds"</span>,<span style="color:var(--gold)">"BANKING"</span>)<br> → <span style="color:var(--green)">ALLOW</span> <span style="color:var(--gray)">| eIDAS 2.0 compliant</span></div>
</div>
<p class="section-tag" style="margin-top:48px;">4-LAYER HARDWARE ENFORCEMENT</p>
<h2 class="section-title">Every Layer Verified — Every Layer PASS</h2>
<div class="arch-stack">
<div class="arch-layer">
<div class="arch-num">01</div>
<div class="arch-body">
<div class="arch-name">HW-RNG</div>
<div class="arch-desc">/dev/hwrng — PS hardened silicon</div>
</div>
<div class="arch-badge green">PASS</div>
</div>
<div class="arch-arrow">↓</div>
<div class="arch-layer">
<div class="arch-num">02</div>
<div class="arch-body">
<div class="arch-name">TRUSTZONE</div>
<div class="arch-desc">OP-TEE EAL4+ | /dev/tee0 | POSIX</div>
</div>
<div class="arch-badge green">PASS</div>
</div>
<div class="arch-arrow">↓</div>
<div class="arch-layer">
<div class="arch-num">03</div>
<div class="arch-body">
<div class="arch-name">R5F LOCKSTEP</div>
<div class="arch-desc">Cortex-R5F | TCM 0xffe90000 | DO-178C</div>
</div>
<div class="arch-badge green">PASS</div>
</div>
<div class="arch-arrow">↓</div>
<div class="arch-layer" style="border-color:#C0392B">
<div class="arch-num" style="background:#1A0808;color:#C0392B">04</div>
<div class="arch-body" style="background:linear-gradient(90deg,#1A0808,#060C18)">
<div class="arch-name">AUDIT CHAIN</div>
<div class="arch-desc">SHA-256 PS Security Block | chain_tip: 2f9282855ed6ff14d7e772...</div>
</div>
<div class="arch-badge green">PASS</div>
</div>
</div>
<div style="margin-top:16px;padding:12px 20px;background:var(--navy);border:1px solid var(--cyan);font-size:11px;color:var(--gray);">
CBMC 6.9.0 ARM64 NATIVE · 0 of 130 assertions failed · 02.07.2026<br>
Z3 SMT Solver · ALLOW/ESCALATE without enforcement: MATHEMATICALLY IMPOSSIBLE<br>
HEPE — Hardware-Emergent Policy Enforcement · SI-PAT-006 filed 02.07.2026
</div>
</section>
<!-- STRATEGY C -->
<section id="strategy-c">
<p class="section-tag">STRATEGY C</p>
<h2 class="section-title">Vivado-Free · ITAR-Free · EU-Sovereign</h2>
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;">
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;text-align:center;">
<div style="font-size:14px;font-weight:700;color:var(--cyan);">Yosys</div>
<div style="font-size:10px;color:var(--gray);margin-top:4px;">MIT License · Open Source</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;text-align:center;">
<div style="font-size:14px;font-weight:700;color:var(--cyan);">Lattice ECP5</div>
<div style="font-size:10px;color:var(--gray);margin-top:4px;">FPGA Target</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;text-align:center;">
<div style="font-size:14px;font-weight:700;color:var(--cyan);">NanoXplore NX-FPGA</div>
<div style="font-size:10px;color:var(--gray);margin-top:4px;">European FPGA</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;text-align:center;">
<div style="font-size:14px;font-weight:700;color:var(--gold);">SkyWater 130nm</div>
<div style="font-size:10px;color:var(--gray);margin-top:4px;">ASIC Target</div>
</div>
</div>
</section>
<!-- COMPETITIVE POSITION -->
<section id="competitive">
<p class="section-tag">COMPETITIVE POSITION</p>
<h2 class="section-title">World First + Strategic Value</h2>
<div style="overflow-x:auto;margin-bottom:32px;">
<table style="width:100%;border-collapse:collapse;font-size:12px;">
<thead>
<tr style="border-bottom:1px solid var(--blue);">
<th style="text-align:left;padding:10px;color:var(--cyan);">Dimension</th>
<th style="text-align:left;padding:10px;color:var(--gray);">Without EHOX</th>
<th style="text-align:left;padding:10px;color:var(--green);">With EHOX</th>
<th style="text-align:center;padding:10px;color:var(--gold);">TRL</th>
</tr>
</thead>
<tbody>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:10px;color:var(--offwhite);">Policy enforcement</td>
<td style="padding:10px;color:var(--gray);">Software layer — bypassable</td>
<td style="padding:10px;color:var(--green);">Hardware layer — physically isolated</td>
<td style="padding:10px;text-align:center;color:var(--gold);">7</td>
</tr>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:10px;color:var(--offwhite);">Audit evidence</td>
<td style="padding:10px;color:var(--gray);">Log files — tamperable</td>
<td style="padding:10px;color:var(--green);">SHA-256 chain_tip — immutable</td>
<td style="padding:10px;text-align:center;color:var(--gold);">7</td>
</tr>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:10px;color:var(--offwhite);">Tool sovereignty</td>
<td style="padding:10px;color:var(--gray);">US-controlled EDA / ITAR</td>
<td style="padding:10px;color:var(--green);">Yosys MIT — no US tool required</td>
<td style="padding:10px;text-align:center;color:var(--gold);">7</td>
</tr>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:10px;color:var(--offwhite);">Geopolitical risk</td>
<td style="padding:10px;color:var(--gray);">Access revocable by gov. order</td>
<td style="padding:10px;color:var(--green);">Austrian origin — no export licence</td>
<td style="padding:10px;text-align:center;color:var(--gold);">7</td>
</tr>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:10px;color:var(--offwhite);">Formal verification</td>
<td style="padding:10px;color:var(--gray);">Testing only — statistical</td>
<td style="padding:10px;color:var(--green);">CBMC 0/130 ARM64 · Z3 proven</td>
<td style="padding:10px;text-align:center;color:var(--gold);">7</td>
</tr>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:10px;color:var(--offwhite);">Field update</td>
<td style="padding:10px;color:var(--gray);">Firmware reflash — downtime</td>
<td style="padding:10px;color:var(--green);">JSON policy swap — seconds</td>
<td style="padding:10px;text-align:center;color:var(--gold);">7</td>
</tr>
</tbody>
</table>
</div>
<div style="overflow-x:auto;">
<table style="width:100%;border-collapse:collapse;font-size:11px;">
<thead>
<tr style="border-bottom:1px solid var(--blue);">
<th style="text-align:left;padding:8px;color:var(--cyan);">Solution</th>
<th style="text-align:center;padding:8px;color:var(--gray);">HW-Isolated</th>
<th style="text-align:center;padding:8px;color:var(--gray);">Runtime Policy</th>
<th style="text-align:center;padding:8px;color:var(--gray);">EU-Sovereign</th>
<th style="text-align:center;padding:8px;color:var(--gold);">TRL</th>
</tr>
</thead>
<tbody>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:8px;color:var(--gray);">Microsoft Agent Governance</td>
<td style="padding:8px;text-align:center;color:var(--red);">NO</td>
<td style="padding:8px;text-align:center;color:var(--green);">YES</td>
<td style="padding:8px;text-align:center;color:var(--red);">NO</td>
<td style="padding:8px;text-align:center;color:var(--gray);">SW</td>
</tr>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:8px;color:var(--gray);">AccuKnox AI-SPM</td>
<td style="padding:8px;text-align:center;color:var(--red);">NO</td>
<td style="padding:8px;text-align:center;color:var(--green);">YES</td>
<td style="padding:8px;text-align:center;color:var(--gold);">partial</td>
<td style="padding:8px;text-align:center;color:var(--gray);">SW</td>
</tr>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:8px;color:var(--gray);">NVIDIA BlueField DPU</td>
<td style="padding:8px;text-align:center;color:var(--gold);">partial</td>
<td style="padding:8px;text-align:center;color:var(--red);">NO</td>
<td style="padding:8px;text-align:center;color:var(--red);">NO (ITAR)</td>
<td style="padding:8px;text-align:center;color:var(--gray);">partial</td>
</tr>
<tr style="border-bottom:1px solid #1A2A4A;">
<td style="padding:8px;color:var(--green);font-weight:700;">EHOX Systems</td>
<td style="padding:8px;text-align:center;color:var(--green);font-weight:700;">YES</td>
<td style="padding:8px;text-align:center;color:var(--green);font-weight:700;">YES</td>
<td style="padding:8px;text-align:center;color:var(--green);font-weight:700;">YES</td>
<td style="padding:8px;text-align:center;color:var(--gold);font-weight:700;">7 · HEPE</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- HIGH-RISK DOMAINS -->
<section id="domains">
<p class="section-tag">HIGH-RISK DOMAINS</p>
<h2 class="section-title">Domains Served</h2>
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;">
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;">
<div style="font-size:12px;font-weight:700;color:var(--red);margin-bottom:6px;">Defence / NATO</div>
<div style="font-size:10px;color:var(--gray);">STANAG 4774/4778, CCW LAWS</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;">
<div style="font-size:12px;font-weight:700;color:var(--cyan);margin-bottom:6px;">KRITIS</div>
<div style="font-size:10px;color:var(--gray);">EU NIS2, CER Directive</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;">
<div style="font-size:12px;font-weight:700;color:var(--gold);margin-bottom:6px;">Space / ESA</div>
<div style="font-size:10px;color:var(--gray);">ESA ECSS, NASA NPR 7150.2C</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;">
<div style="font-size:12px;font-weight:700;color:var(--green);margin-bottom:6px;">Medical / FDA III</div>
<div style="font-size:10px;color:var(--gray);">EU MDR, IEC 62304</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;">
<div style="font-size:12px;font-weight:700;color:var(--offwhite);margin-bottom:6px;">Automotive L4/L5</div>
<div style="font-size:10px;color:var(--gray);">ISO 26262 ASIL-D</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:16px;">
<div style="font-size:12px;font-weight:700;color:var(--cyan);margin-bottom:6px;">Banking / RegTech</div>
<div style="font-size:10px;color:var(--gray);">EU AI Act, eIDAS 2.0</div>
</div>
</div>
</section>
<!-- TEAM -->
<section id="team">
<p class="section-tag">TEAM</p>
<h2 class="section-title">Strategic & Hardware Leadership</h2>
<div style="display:grid;grid-template-columns:1fr 1fr;gap:24px;">
<div style="background:var(--navy);border:1px solid var(--blue);padding:24px;">
<div style="font-size:13px;font-weight:700;color:var(--gold);margin-bottom:12px;">STRATEGIC & POLICY LEADERSHIP</div>
<div style="font-size:12px;color:var(--gray);line-height:1.8;">
Deep-tech entrepreneurship · AI governance · EU and NATO policy alignment · Active engagement with UN disarmament bodies<br><br>
EU AI Act · NATO DIANA · ESA · CCW LAWS · SPI · SI-PAT-001–006
</div>
</div>
<div style="background:var(--navy);border:1px solid var(--blue);padding:24px;">
<div style="font-size:13px;font-weight:700;color:var(--cyan);margin-bottom:12px;">HARDWARE & SYSTEMS ENGINEERING</div>
<div style="font-size:12px;color:var(--gray);line-height:1.8;">
Full-stack hardware: ARM TrustZone · R5F bare-metal · CBMC 0/130 ARM64 · SHA-256 · HEPE · NoVivado — every layer built and validated in-house<br><br>
OP-TEE EAL4+ · DO-178C Level A · FIPS 140-2 · MISRA-C · CBMC · AMD Kria KV260
</div>
</div>
</div>
</section>
<!-- REVIEWER ACCESS -->
<div class="reviewer-section" id="reviewer">
<div class="reviewer-inner">
<div>
<p class="section-tag">REVIEWER ACCESS</p>
<h2 class="section-title">Verify on Live Hardware</h2>
<p style="font-size:14px;color:var(--gray);margin-bottom:24px;line-height:1.8;">
We don't ask you to trust documents. We give you a token and you connect directly to the physical Kria KV260 board running in St. Johann in Tirol, Austria.
</p>
<p style="font-size:13px;color:var(--offwhite);margin-bottom:32px;line-height:1.8;">
Real-time telemetry. Live policy decisions. SHA-256 audit log. Not a demo. Not a simulation. Silicon.
</p>
<div style="display:flex;flex-direction:column;gap:12px;">
<div style="display:flex;gap:12px;align-items:center;">
<div style="width:6px;height:6px;border-radius:50%;background:var(--cyan);"></div>
<span style="font-size:12px;color:var(--gray);">ESA evaluators: <span style="color:var(--cyan);font-family:'Courier New',monospace;">ESA-2026-ALPHA</span></span>
</div>
<div style="display:flex;gap:12px;align-items:center;">
<div style="width:6px;height:6px;border-radius:50%;background:var(--cyan);"></div>
<span style="font-size:12px;color:var(--gray);">NATO/DIANA evaluators: <span style="color:var(--cyan);font-family:'Courier New',monospace;">NATO-2026-CHARLIE</span></span>
</div>
<div style="display:flex;gap:12px;align-items:center;">
<div style="width:6px;height:6px;border-radius:50%;background:var(--cyan);"></div>
<span style="font-size:12px;color:var(--gray);">DARPA reviewers: <span style="color:var(--cyan);font-family:'Courier New',monospace;">DARPA-2026-BRAVO</span></span>
</div>
<div style="display:flex;gap:12px;align-items:center;">
<div style="width:6px;height:6px;border-radius:50%;background:var(--gold);"></div>
<span style="font-size:12px;color:var(--gray);">Demo access: <span style="color:var(--gold);font-family:'Courier New',monospace;">REVIEWER-DEMO</span></span>
</div>
</div>
</div>
<div>
<div class="reviewer-token-box">
<p class="token-label">ENTER REVIEWER TOKEN</p>
<div class="token-input-row">
<input class="token-input" type="text" id="token-field" placeholder="TOKEN-XXXX-XXXXX" spellcheck="false">
<button class="token-btn" onclick="verifyToken()">VERIFY →</button>
</div>
<p class="token-hint">
Demo: <span onclick="document.getElementById('token-field').value='REVIEWER-DEMO'">REVIEWER-DEMO</span>
|
<span onclick="document.getElementById('token-field').value='NATO-2026-CHARLIE'">NATO-2026-CHARLIE</span>
</p>
<div id="token-status"></div>
</div>
<div class="dashboard-preview" style="margin-top:16px;">
<div class="dash-header">
<span class="dash-title">LIVE DASHBOARD PREVIEW</span>
<span class="dash-live">
<span style="width:6px;height:6px;border-radius:50%;background:var(--green);display:inline-block;animation:pulse-dot 2s infinite;"></span>
LIVE
</span>
</div>
<div class="dash-metrics">
<div class="dash-metric">
<div class="dash-metric-val" id="d-temp">42.8°C</div>
<div class="dash-metric-lbl">TEMP</div>
</div>
<div class="dash-metric">
<div class="dash-metric-val" style="color:#27AE60">ALLOW</div>
<div class="dash-metric-lbl">POLICY</div>
</div>
<div class="dash-metric">
<div class="dash-metric-val" id="d-lat">0.45μs</div>
<div class="dash-metric-lbl">LATENCY</div>
</div>
</div>
<div class="dash-log" id="dash-log">
<div class="log-line gold">[00:04:43] AUTH: Session initialized</div>
<div class="log-line cyan">[00:04:43] CONNECT: Kria KV260 @ 192.168.1.160 — SSH OK</div>
<div class="log-line gray">[00:04:44] FPGA: /dev/fpga0 — GPIO ACTIVE</div>
<div class="log-line green">[00:04:44] POLICY: Strategy C ARMED — Non-hardcoded</div>
<div class="log-line gray">[00:04:45] DDGK: Epistemic state VERIFIED</div>
<div class="log-line green">[00:04:45] SIK: Decision → ALLOW</div>
</div>
</div>
</div>
</div>
</div>
<!-- TARGETS -->
<section id="targets">
<p class="section-tag">FUNDING TARGETS</p>
<h2 class="section-title">Open Calls — Active Now</h2>
<p class="section-sub">Multiple concurrent funding opportunities across defence, space, and industrial domains.</p>
<div class="targets-grid">
<div class="target-card" style="border-color:#C0392B;">
<div class="target-icon" style="background:#1A0808;color:#C0392B;font-size:14px;font-weight:700;">NATO</div>
<div class="target-name">NATO DIANA 2027</div>
<div class="target-detail">Challenge 9: Autonomy & UxS · Challenge 10: Data Decision Making · €100K + €300K Mission Track</div>
<div class="target-deadline">⚡ DEADLINE: 3 JULY 2026 — 14 DAYS</div>
</div>
<div class="target-card">
<div class="target-icon" style="color:var(--cyan);font-size:14px;font-weight:700;">ESA</div>
<div class="target-name">ESA BASS Kick-Start</div>
<div class="target-detail">Hardware AI governance for space systems · DO-178C DAL-A alignment · 6-month feasibility · €75K at 75%</div>
<div class="target-deadline">DEADLINE: 28 AUGUST 2026</div>
</div>
<div class="target-card">
<div class="target-icon" style="color:var(--gold);font-size:14px;font-weight:700;">DARPA</div>
<div class="target-name">DARPA SABER / I2O</div>
<div class="target-detail">Guaranteeing AI Robustness against Deception · Hardware-enforced policy enforcement · Full MITRE ATLAS coverage</div>
<div class="target-deadline">I2O BAA FY2026: NOV 2026</div>
</div>
<div class="target-card">
<div class="target-icon" style="color:var(--offwhite);font-size:14px;font-weight:700;">EU</div>
<div class="target-name">EU AI Act Compliance</div>
<div class="target-detail">Art.13 Transparency · Art.15 Robustness · Hardware enforcement as compliance-by-design · August 2026 enforcement</div>
<div class="target-deadline">ENFORCEMENT: 2 AUGUST 2026</div>
</div>
<div class="target-card">
<div class="target-icon" style="color:var(--cyan);font-size:13px;font-weight:700;">FHG</div>
<div class="target-name">Fraunhofer Partnership</div>
<div class="target-detail">FPGA safety systems · Embedded AI · Industrial ASIL-D applications · Joint research programme</div>
<div class="target-deadline">OPEN CALL — ONGOING</div>
</div>
<div class="target-card">
<div class="target-icon" style="color:var(--white);font-size:13px;font-weight:700;">SpX</div>
<div class="target-name">SpaceX / Cursor Integration</div>
<div class="target-detail">Autonomous systems governance · Starship decision layer · HOOTL-ready architecture · Cursor-native integration</div>
<div class="target-deadline">DIRECT OUTREACH</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-inner">
<div>
<div class="footer-brand-name">EHOX SYSTEMS</div>
<div class="footer-brand-sub">HEPE — Hardware-Enforced AI Policy Governance · SI-PAT-006</div>
<div class="footer-addr">
Almdorf 9<br>
6380 St. Johann in Tirol<br>
Austria<br><br>
info@ehox.io<br>
paradoxonai.at
</div>
</div>
<div>
<div class="footer-col-title">STANDARDS</div>
<ul class="footer-links">
<li><a href="#">ISO/IEC 42001</a></li>
<li><a href="#">DO-178C Level A</a></li>
<li><a href="#">FIPS 140-2</a></li>
<li><a href="#">EAL4+</a></li>
<li><a href="#">MISRA-C</a></li>
<li><a href="#">CBMC</a></li>
</ul>
</div>
<div>
<div class="footer-col-title">RESOURCES</div>
<ul class="footer-links">
<li><a href="#reviewer">Reviewer Access</a></li>
<li><a href="#prove">prove() API</a></li>
<li><a href="#competitive">Competitive Position</a></li>
<li><a href="#domains">High-Risk Domains</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#">Contact / Pitch Deck</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<span class="footer-copy">© EHOX Systems 2026. All rights reserved. BIDDER PROPRIETARY & CONFIDENTIAL. BKA GZ 2026-0.510.003</span>
<span class="footer-standards">ISO/IEC 42001 · DO-178C Level A · FIPS 140-2 · EAL4+ · MISRA-C · CBMC · HEPE</span>
</div>
</footer>
<script>
// Live metrics simulation
let tick = 0;
setInterval(() => {
tick++;
const temp = (42.8 + Math.sin(tick * 0.3) * 0.4).toFixed(1) + '°C';
const power = (13.5 + Math.sin(tick * 0.2) * 0.3).toFixed(1) + 'W';
const lat = (0.45 + Math.sin(tick * 0.5) * 0.02).toFixed(3) + 'μs';
document.getElementById('d-temp').textContent = temp;
document.getElementById('d-lat').textContent = lat;
}, 2000);
// Log animation
const logLines = [
{ cls: 'green', t: 'POLICY: ALLOW — Process approved' },
{ cls: 'gray', t: 'DDGK: Evidence quality VERIFIED' },
{ cls: 'cyan', t: 'SIK: Decision Over Time stable' },
{ cls: 'gold', t: 'AUDIT: SHA-256 entry logged' },
{ cls: 'green', t: 'AXI: GPIO HIGH — execution permitted' },
{ cls: 'gray', t: 'REALITY: Webcam feedback OK' },
{ cls: 'green', t: 'POLICY: ALLOW — Cross-domain consistent' },
{ cls: 'cyan', t: 'KERNEL: 0 modifications — Strategy C intact' },
];
let logIdx = 0;
setInterval(() => {
const log = document.getElementById('dash-log');
if (!log) return;
const now = new Date();
const ts = now.toTimeString().slice(0,8);
const line = logLines[logIdx % logLines.length];
const div = document.createElement('div');
div.className = 'log-line ' + line.cls;
div.textContent = `[${ts}] ${line.t}`;
log.appendChild(div);
log.scrollTop = log.scrollHeight;
if (log.children.length > 20) log.removeChild(log.children[0]);
logIdx++;
}, 3000);
// Token verification
const VALID = ['ESA-2026-ALPHA','DARPA-2026-BRAVO','NATO-2026-CHARLIE','REVIEWER-DEMO'];
function verifyToken() {
const val = document.getElementById('token-field').value.trim().toUpperCase();
const st = document.getElementById('token-status');
st.textContent = 'Authenticating...';
st.className = '';
st.style.color = 'var(--gray)';
setTimeout(() => {
if (VALID.includes(val)) {
st.textContent = '✓ Access granted — Dashboard loading...';
st.className = 'token-status-ok';
setTimeout(() => {
window.open('https://paradoxonai.at/reviewer', '_blank');
}, 800);
} else {
st.textContent = '✗ Invalid token. Contact: info@ehox.io';
st.className = 'token-status-err';
}
}, 1800);
}
document.getElementById('token-field').addEventListener('keydown', e => {
if (e.key === 'Enter') verifyToken();
});
</script>
</body>
</html> |