*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --bg: #06060e; --surface: #0e0e1a; --surface2: #13131f; --border: rgba(255, 255, 255, 0.08); --teal: #00c896; --teal-dim: rgba(0, 200, 150, 0.12); --white: #ffffff; --grey: #8b8fa8; --light: #c8cad8; } html { scroll-behavior: smooth; } body { padding-top: 70px; /* adjust based on navbar height */ font-family: 'Inter', system-ui, sans-serif; background: var(--bg); background-image: url(../images/stars-bg.png); color: var(--white); line-height: 1.6; overflow-x: hidden; } /* ── NAV ── */nav { position: fixed; /* keeps it always at top */ top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; background: rgba(10, 10, 10, 0.5); backdrop-filter: blur(10px); color: #fff; z-index: 9999; /* ensures it's above everything */ } .nav-logo { font-size: 20px; font-weight: bold; color: #fff; text-decoration: none; } /* Links */ .nav-links { display: flex; gap: 20px; } .nav-links a { color: #fff; text-decoration: none; font-size: 15px; transition: 0.3s; } .nav-links a:hover { color: #00c2ff; } /* CTA */ .nav-cta { background: #00c2ff; padding: 8px 14px; border-radius: 6px; color: #000 !important; } /* Hamburger */ .menu-toggle { display: none; font-size: 24px; cursor: pointer; } /* Mobile Styles */ @media (max-width: 768px) { .menu-toggle { display: block; } .nav-links { position: absolute; top: 60px; left: 0; width: 100%; background: #0a0a0a; flex-direction: column; align-items: center; gap: 15px; padding: 20px 0; display: none; } .nav-links.active { display: flex; } } /* ── HERO ── */ .hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; background: radial-gradient(ellipse, rgba(0, 200, 150, 0.08) 0%, transparent 70%); pointer-events: none; } .hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(0, 200, 150, 0.3); background: rgba(0, 200, 150, 0.07); color: var(--teal); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 999px; margin-bottom: 32px; text-transform: uppercase; } .hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } } .hero h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; /*max-width: 900px; */ margin-bottom: 24px; } .hero h1 em { font-style: normal; background: linear-gradient(135deg, #00c896, #00a8e0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-sub { font-size: clamp(16px, 2vw, 20px); color: var(--light); max-width: 680px; margin-bottom: 48px; font-weight: 400; line-height: 1.7; } .hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; } .btn-primary { background: var(--teal); color: #000; padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; border: none; cursor: pointer; transition: opacity .2s, transform .2s; display: inline-flex; align-items: center; gap: 8px; } .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); } .btn-secondary { background: transparent; color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 500; font-size: 15px; text-decoration: none; border: 1px solid var(--border); transition: border-color .2s, background .2s; display: inline-flex; align-items: center; gap: 8px; } .btn-secondary:hover { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.04); } /* ── CREDIBILITY BAR ── */ .cred-bar { display: flex; gap: 0; flex-wrap: wrap; justify-content: center; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); overflow: hidden; max-width: 900px; width: 100%; } .cred-item { flex: 1; min-width: 160px; padding: 16px 20px; text-align: center; border-right: 1px solid var(--border); font-size: 12px; } .cred-item:last-child { border-right: none; } .cred-label { color: var(--grey); margin-bottom: 4px; font-weight: 500; } .cred-value { color: var(--teal); font-weight: 700; font-size: 13px; } /* ── SECTION COMMON ── */ section { padding: 96px 48px; max-width: 1200px; margin: 0 auto; } .section-tag { font-size: 24px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; } h2.section-title { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; } .section-sub { font-size: 18px; color: var(--light); /*max-width: 600px;*/ line-height: 1.7; margin-bottom: 56px; } .section-sub-bottom { font-size: 22px; color: var(--light); max-width: 100%; line-height: 1.7; margin-bottom: 56px; font-style: italic; text-align:center; } /* ── PROBLEM BANNER ── */ .problem-banner { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px; text-align: center; } .problem-banner p { font-size: clamp(18px, 2.5vw, 26px); font-weight: 500; max-width: 860px; margin: 0 auto; color: var(--light); line-height: 1.6; } .problem-banner strong { color: var(--white); } /* ── THREE COLUMNS ── */ .three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; } .three-col-item { background: var(--surface); padding: 36px; } .col-icon { font-size: 28px; margin-bottom: 16px; } .col-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--white); } .col-body { font-size: 14px; color: var(--light); line-height: 1.7; } /* ── USE CASES GRID ── */ .usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; } .usecase-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: border-color .2s, transform .2s; cursor: default; } .usecase-card:hover { border-color: rgba(0, 200, 150, 0.3); transform: translateY(-2px); } .usecase-card:nth-child(4), .usecase-card:nth-child(5) { grid-column: span 1; } .usecase-num { font-size: 12px; font-weight: 700; color: var(--teal); letter-spacing: 0.1em; margin-bottom: 16px; } .usecase-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; } .usecase-body { font-size: 14px; color: var(--light); line-height: 1.7; margin-bottom: 20px; } .usecase-tags { display: flex; flex-wrap: wrap; gap: 8px; } .tag { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; padding: 4px 10px; border-radius: 4px; background: rgba(0, 200, 150, 0.1); color: var(--teal); border: 1px solid rgba(0, 200, 150, 0.2); } /* ── COMPARISON TABLE ── */ .comp-table { width: 100%; border-collapse: collapse; font-size: 14px; } .comp-table th { padding: 16px 20px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); border-bottom: 1px solid var(--border); background: var(--surface); } .comp-table th:last-child { color: var(--teal); } .comp-table td { padding: 18px 20px; border-bottom: 1px solid var(--border); color: var(--light); vertical-align: top; line-height: 1.6; } .comp-table td:first-child { font-weight: 600; color: var(--white); white-space: nowrap; } .comp-table td:last-child { color: var(--white); } .comp-table tr:last-child td { border-bottom: none; } .comp-table tr:hover td { background: rgba(255, 255, 255, 0.02); } .comp-note { font-size: 16px; color: var(--grey); text-align: center; margin-top: 20px; font-style: italic; } .table-wrap { border: 1px solid var(--border); border-radius: 12px; overflow: auto; background: var(--surface); } /* ── IP BAR ── */ .ip-bar { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 36px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; } .ip-item { } .ip-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; } .ip-value { font-size: 14px; font-weight: 600; color: var(--white); } .ip-value.green { color: var(--teal); } /* ── REGULATORY ── */ .reg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; } .reg-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px; } .reg-flag { font-size: 28px; margin-bottom: 12px; } .reg-name { font-size: 13px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; } .reg-full { font-size: 15px; font-weight: 600; margin-bottom: 10px; } .reg-body { font-size: 13px; color: var(--light); line-height: 1.65; } .reg-status { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); } .reg-status::before { content: '●'; font-size: 8px; } /* ── CONTACT ── */ .contact-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 48px; text-align: center; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 48px auto 0; } .contact-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px; text-align: left; } .contact-role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 8px; } .contact-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; } .contact-title { font-size: 13px; color: var(--grey); margin-bottom: 16px; } .contact-email { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--teal); text-decoration: none; font-weight: 500; } .contact-email:hover { text-decoration: underline; } /* ── FOOTER ── */ footer { padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); } .footer-logo { display: flex; align-items: center; gap: 10px; } .footer-logo img { height: 24px; width: auto; object-fit: contain; filter: invert(1); opacity: 0.6; } .footer-logo span { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--grey); } .footer-copy { font-size: 13px; color: var(--grey); } .footer-links { display: flex; gap: 24px; } .footer-links a { font-size: 13px; color: var(--grey); text-decoration: none; } .footer-links a:hover { color: var(--white); } /* ── DIVIDER ── */ .divider { border: none; border-top: 1px solid var(--border); margin: 0; } /* ── RESPONSIVE ── */ @media (max-width: 900px) { nav { padding: 0 20px; } .nav-links { display: none; } section { padding: 64px 20px; } .three-col { grid-template-columns: 1fr; } .usecase-grid { grid-template-columns: 1fr 1fr; } .comp-table { font-size: 13px; } .ip-bar { grid-template-columns: 1fr 1fr; } .reg-grid { grid-template-columns: 1fr 1fr; } .contact-grid { grid-template-columns: 1fr; } footer { flex-direction: column; gap: 16px; text-align: center; } .cred-item { min-width: 130px; } } @media (max-width: 600px) { .usecase-grid { grid-template-columns: 1fr; } .reg-grid { grid-template-columns: 1fr; } .ip-bar { grid-template-columns: 1fr 1fr; } } @media (max-width: 768px) { .nav-links { position: fixed; /* change from absolute → fixed */ top: 70px; /* same as navbar height */ left: 0; width: 100%; z-index: 9998; } }