 /* ===================================
    OntarioData.ca - Static Stylesheet
    =================================== */
 
 /* CSS Variables / Design Tokens */
 :root {
   /* Colors */
   --background: hsl(222, 47%, 6%);
   --foreground: hsl(210, 40%, 98%);
   --card: hsl(222, 47%, 8%);
   --card-foreground: hsl(210, 40%, 98%);
   --primary: hsl(38, 92%, 50%);
   --primary-foreground: hsl(222, 47%, 6%);
   --secondary: hsl(217, 33%, 17%);
   --secondary-foreground: hsl(210, 40%, 98%);
   --muted: hsl(217, 33%, 12%);
   --muted-foreground: hsl(215, 20%, 55%);
   --border: hsl(217, 33%, 17%);
   --destructive: hsl(0, 84%, 60%);
   
   /* Custom Tokens */
   --gradient-gold: linear-gradient(135deg, hsl(38, 92%, 50%), hsl(45, 93%, 60%));
   --gradient-dark: linear-gradient(180deg, hsl(222, 47%, 6%), hsl(222, 47%, 4%));
   --gradient-card: linear-gradient(135deg, hsl(222, 47%, 10%), hsl(222, 47%, 8%));
   --shadow-glow: 0 0 60px hsla(38, 92%, 50%, 0.2);
   --shadow-card: 0 8px 32px hsla(222, 47%, 2%, 0.5);
   --shadow-elevated: 0 20px 60px hsla(222, 47%, 2%, 0.7);
   
   /* Typography */
   --font-display: 'Space Grotesk', sans-serif;
   --font-body: 'Inter', sans-serif;
   
   /* Spacing */
   --radius: 0.75rem;
 }
 
 /* Reset & Base */
 *, *::before, *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   font-family: var(--font-body);
   background-color: var(--background);
   color: var(--foreground);
   line-height: 1.6;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 }
 
 h1, h2, h3, h4, h5, h6 {
   font-family: var(--font-display);
   line-height: 1.2;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   height: auto;
 }
 
 /* Utility Classes */
 .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1.5rem;
 }
 
 .text-gold {
   background: var(--gradient-gold);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }
 
 .hidden {
   display: none !important;
 }
 
 /* ===================================
    Header
    =================================== */
 .header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   background: hsla(222, 47%, 6%, 0.8);
   backdrop-filter: blur(20px);
   border-bottom: 1px solid var(--border);
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 5rem;
 }
 
 .logo {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   transition: transform 0.3s;
 }
 
 .logo:hover {
   transform: scale(1.02);
 }
 
 .logo-icon {
   width: 2.5rem;
   height: 2.5rem;
   color: var(--primary);
 }
 
 .logo-text {
   display: flex;
   flex-direction: column;
 }
 
 .logo-name {
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1.25rem;
 }
 
 .logo-domain {
   font-size: 0.75rem;
   color: var(--muted-foreground);
   letter-spacing: 0.1em;
 }
 
 .nav-desktop {
   display: none;
   gap: 2rem;
 }
 
 @media (min-width: 768px) {
   .nav-desktop {
     display: flex;
   }
 }
 
 .nav-desktop a {
   color: var(--muted-foreground);
   font-weight: 500;
   transition: color 0.2s;
 }
 
 .nav-desktop a:hover {
   color: var(--foreground);
 }
 
 .header-cta {
   display: none;
 }
 
 @media (min-width: 768px) {
   .header-cta {
     display: block;
   }
 }
 
 .mobile-menu-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0.5rem;
   background: none;
   border: none;
   color: var(--foreground);
   cursor: pointer;
 }
 
 @media (min-width: 768px) {
   .mobile-menu-btn {
     display: none;
   }
 }
 
 .mobile-menu-btn svg {
   width: 1.5rem;
   height: 1.5rem;
 }
 
 .nav-mobile {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   padding: 1.5rem 0;
   border-top: 1px solid var(--border);
   animation: fadeIn 0.3s ease;
 }
 
 .nav-mobile a {
   color: var(--foreground);
   font-weight: 500;
   padding: 0.5rem 0;
 }
 
 /* ===================================
    Buttons
    =================================== */
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   padding: 0.75rem 1.5rem;
   font-family: var(--font-display);
   font-weight: 600;
   font-size: 0.875rem;
   border-radius: var(--radius);
   border: none;
   cursor: pointer;
   transition: all 0.3s;
 }
 
 .btn svg {
   width: 1.25rem;
   height: 1.25rem;
 }
 
 .btn-primary {
   background: var(--gradient-gold);
   color: var(--primary-foreground);
   box-shadow: var(--shadow-glow);
 }
 
 .btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 0 80px hsla(38, 92%, 50%, 0.3);
 }
 
 .btn-hero {
   background: var(--gradient-gold);
   color: var(--primary-foreground);
   padding: 1rem 2rem;
   font-size: 1rem;
   box-shadow: var(--shadow-glow);
 }
 
 .btn-hero:hover {
   transform: translateY(-2px);
   box-shadow: 0 0 80px hsla(38, 92%, 50%, 0.3);
 }
 
 .btn-outline {
   background: transparent;
   color: var(--foreground);
   border: 1px solid var(--border);
   padding: 1rem 2rem;
   font-size: 1rem;
 }
 
 .btn-outline:hover {
   background: var(--secondary);
   border-color: var(--primary);
 }
 
 .btn-full {
   width: 100%;
 }
 
 /* ===================================
    Hero Section
    =================================== */
 .hero {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding-top: 5rem;
   overflow: hidden;
 }
 
 .hero-bg {
   position: absolute;
   inset: 0;
   background: var(--gradient-dark);
 }
 
 .hero-glow {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 800px;
   height: 800px;
   background: hsla(38, 92%, 50%, 0.05);
   border-radius: 50%;
   filter: blur(60px);
   animation: pulseSlow 4s ease-in-out infinite;
 }
 
 .hero-glow-2 {
   position: absolute;
   top: 5rem;
   right: 5rem;
   width: 24rem;
   height: 24rem;
   background: hsla(38, 92%, 50%, 0.1);
   border-radius: 50%;
   filter: blur(60px);
   animation: float 6s ease-in-out infinite;
 }
 
 .hero-grid {
   position: absolute;
   inset: 0;
   opacity: 0.02;
   background-image: 
     linear-gradient(var(--foreground) 1px, transparent 1px),
     linear-gradient(90deg, var(--foreground) 1px, transparent 1px);
   background-size: 60px 60px;
 }
 
 .hero-content {
   position: relative;
   z-index: 10;
 }
 
 .hero-inner {
   max-width: 64rem;
   margin: 0 auto;
   text-align: center;
 }
 
 .trust-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.5rem 1rem;
   background: hsla(217, 33%, 17%, 0.5);
   border: 1px solid var(--border);
   border-radius: 9999px;
   margin-bottom: 2rem;
   animation: fadeIn 0.8s ease;
 }
 
 .badge-icon {
   width: 1rem;
   height: 1rem;
   color: var(--primary);
 }
 
 .trust-badge span {
   font-size: 0.875rem;
   color: var(--muted-foreground);
   font-weight: 500;
 }
 
 .hero-title {
   font-size: clamp(2rem, 5vw, 4.5rem);
   font-weight: 700;
   margin-bottom: 1.5rem;
   animation: slideUp 0.6s ease forwards;
 }
 
 .hero-subtitle {
   font-size: clamp(1rem, 2vw, 1.25rem);
   color: var(--muted-foreground);
   max-width: 48rem;
   margin: 0 auto 2.5rem;
   animation: slideUp 0.6s ease forwards;
   animation-delay: 0.1s;
 }
 
 .hero-subtitle strong {
   color: var(--foreground);
 }
 
 .hero-buttons {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   justify-content: center;
   margin-bottom: 4rem;
   animation: slideUp 0.6s ease forwards;
   animation-delay: 0.2s;
 }
 
 @media (min-width: 640px) {
   .hero-buttons {
     flex-direction: row;
   }
 }
 
 .stats-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
   max-width: 56rem;
   margin: 0 auto;
   animation: fadeIn 0.8s ease forwards;
   animation-delay: 0.3s;
 }
 
 @media (min-width: 768px) {
   .stats-grid {
     grid-template-columns: repeat(4, 1fr);
   }
 }
 
 .stat-card {
   text-align: center;
   padding: 1rem;
   background: hsla(222, 47%, 8%, 0.5);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   backdrop-filter: blur(10px);
 }
 
 .stat-value {
   font-family: var(--font-display);
   font-size: clamp(1.5rem, 3vw, 1.875rem);
   font-weight: 700;
   background: var(--gradient-gold);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 0.25rem;
 }
 
 .stat-label {
   font-size: 0.875rem;
   color: var(--muted-foreground);
 }
 
 .scroll-indicator {
   position: absolute;
   bottom: 2rem;
   left: 50%;
   transform: translateX(-50%);
   animation: bounce 2s infinite;
 }
 
 .scroll-indicator svg {
   width: 2rem;
   height: 2rem;
   color: var(--muted-foreground);
 }
 
 /* ===================================
    Sections
    =================================== */
 .section {
   padding: 6rem 0;
 }
 
 .section-alt {
   background: var(--card);
 }
 
 .section-header {
   text-align: center;
   max-width: 48rem;
   margin: 0 auto 4rem;
 }
 
 .section-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.5rem 1rem;
   background: hsla(217, 33%, 17%, 0.5);
   border: 1px solid var(--border);
   border-radius: 9999px;
   margin-bottom: 1.5rem;
 }
 
 .section-badge svg {
   width: 1rem;
   height: 1rem;
   color: var(--primary);
 }
 
 .section-badge span {
   font-size: 0.875rem;
   color: var(--muted-foreground);
   font-weight: 500;
 }
 
 .section-title {
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 700;
   margin-bottom: 1rem;
 }
 
 .section-subtitle {
   font-size: 1.125rem;
   color: var(--muted-foreground);
 }
 
 /* ===================================
    Architecture Section
    =================================== */
 .architecture-grid {
   display: grid;
   gap: 2rem;
 }
 
 @media (min-width: 768px) {
   .architecture-grid {
     grid-template-columns: repeat(3, 1fr);
   }
 }
 
 .arch-card {
   padding: 2rem;
   background: var(--gradient-card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   text-align: center;
   transition: transform 0.3s, box-shadow 0.3s;
 }
 
 .arch-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-elevated);
 }
 
 .arch-number {
   font-family: var(--font-display);
   font-size: 4rem;
   font-weight: 700;
   background: var(--gradient-gold);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 1rem;
 }
 
 .arch-card h3 {
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 0.75rem;
 }
 
 .arch-card p {
   color: var(--muted-foreground);
   font-size: 0.9375rem;
 }
 
 /* ===================================
    Security Section
    =================================== */
 .security-grid {
   display: grid;
   gap: 1.5rem;
 }
 
 @media (min-width: 768px) {
   .security-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }
 
 @media (min-width: 1024px) {
   .security-grid {
     grid-template-columns: repeat(4, 1fr);
   }
 }
 
 .security-card {
   padding: 1.5rem;
   background: var(--background);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   transition: border-color 0.3s;
 }
 
 .security-card:hover {
   border-color: var(--primary);
 }
 
 .security-icon {
   width: 3rem;
   height: 3rem;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--secondary);
   border-radius: var(--radius);
   margin-bottom: 1rem;
 }
 
 .security-icon svg {
   width: 1.5rem;
   height: 1.5rem;
   color: var(--primary);
 }
 
 .security-card h3 {
   font-size: 1rem;
   font-weight: 600;
   margin-bottom: 0.5rem;
 }
 
 .security-card p {
   font-size: 0.875rem;
   color: var(--muted-foreground);
 }
 
 /* ===================================
    Compliance Section
    =================================== */
 .compliance-grid {
   display: grid;
   gap: 1.5rem;
 }
 
 @media (min-width: 768px) {
   .compliance-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }
 
 @media (min-width: 1024px) {
   .compliance-grid {
     grid-template-columns: repeat(4, 1fr);
   }
 }
 
 .compliance-card {
   padding: 1.5rem;
   background: var(--gradient-card);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   text-align: center;
 }
 
 .compliance-card h3 {
   font-size: 1.25rem;
   font-weight: 700;
   color: var(--primary);
   margin-bottom: 0.5rem;
 }
 
 .compliance-card p {
   font-size: 0.875rem;
   color: var(--muted-foreground);
   margin-bottom: 1rem;
 }
 
 .compliance-status {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.25rem 0.75rem;
   background: hsla(120, 60%, 40%, 0.1);
   color: hsl(120, 60%, 50%);
   border-radius: 9999px;
   font-size: 0.75rem;
   font-weight: 600;
 }
 
 .compliance-status svg {
   width: 0.875rem;
   height: 0.875rem;
 }
 
 /* ===================================
    Contact Section
    =================================== */
 .contact-wrapper {
   max-width: 40rem;
   margin: 0 auto;
 }
 
 .contact-form {
   padding: 2rem;
   background: var(--background);
   border: 1px solid var(--border);
   border-radius: var(--radius);
 }
 
 .form-row {
   display: grid;
   gap: 1rem;
 }
 
 @media (min-width: 640px) {
   .form-row {
     grid-template-columns: repeat(2, 1fr);
   }
 }
 
 .form-group {
   margin-bottom: 1.25rem;
 }
 
 .form-group label {
   display: block;
   font-size: 0.875rem;
   font-weight: 500;
   margin-bottom: 0.5rem;
   color: var(--foreground);
 }
 
 .form-group input,
 .form-group textarea {
   width: 100%;
   padding: 0.75rem 1rem;
   background: var(--muted);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   color: var(--foreground);
   font-family: var(--font-body);
   font-size: 0.9375rem;
   transition: border-color 0.2s, box-shadow 0.2s;
 }
 
 .form-group input::placeholder,
 .form-group textarea::placeholder {
   color: var(--muted-foreground);
 }
 
 .form-group input:focus,
 .form-group textarea:focus {
   outline: none;
   border-color: var(--primary);
   box-shadow: 0 0 0 3px hsla(38, 92%, 50%, 0.15);
 }
 
 .form-group textarea {
   resize: vertical;
   min-height: 120px;
 }
 
 /* ===================================
    Footer
    =================================== */
 .footer {
   padding: 4rem 0 2rem;
   background: var(--card);
   border-top: 1px solid var(--border);
 }
 
 .footer-grid {
   display: grid;
   gap: 2rem;
   margin-bottom: 3rem;
 }
 
 @media (min-width: 768px) {
   .footer-grid {
     grid-template-columns: 2fr 1fr 1fr 1fr;
   }
 }
 
 .footer-brand p {
   margin-top: 1rem;
   font-size: 0.875rem;
   color: var(--muted-foreground);
 }
 
 .footer-links h4 {
   font-weight: 700;
   margin-bottom: 1rem;
 }
 
 .footer-links ul {
   list-style: none;
 }
 
 .footer-links li {
   margin-bottom: 0.5rem;
 }
 
 .footer-links a {
   font-size: 0.875rem;
   color: var(--muted-foreground);
   transition: color 0.2s;
 }
 
 .footer-links a:hover {
   color: var(--foreground);
 }
 
 .footer-bottom {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   padding-top: 2rem;
   border-top: 1px solid var(--border);
   text-align: center;
 }
 
 @media (min-width: 768px) {
   .footer-bottom {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     text-align: left;
   }
 }
 
 .footer-bottom p {
   font-size: 0.875rem;
   color: var(--muted-foreground);
 }
 
 .footer-badges {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   justify-content: center;
 }
 
 @media (min-width: 768px) {
   .footer-badges {
     justify-content: flex-end;
   }
 }
 
 .footer-badges span {
   font-size: 0.75rem;
   color: var(--muted-foreground);
 }
 
 /* ===================================
    Animations
    =================================== */
 @keyframes fadeIn {
   from { opacity: 0; }
   to { opacity: 1; }
 }
 
 @keyframes slideUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }
 
 @keyframes float {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-20px); }
 }
 
 @keyframes pulseSlow {
   0%, 100% { opacity: 0.4; }
   50% { opacity: 0.8; }
 }
 
 @keyframes bounce {
   0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
   40% { transform: translateX(-50%) translateY(-10px); }
   60% { transform: translateX(-50%) translateY(-5px); }
 }