        :root {
            --teal: #0084B4;
            --deep-teal: #024963;
            --black: #1F1F1F;
            --white: #FFFFFF;
            --silver: #B8B8B8;
            --silver-light: #E8E8E8;
            --bg-dark: #141414;
            --bg-card: #1E2124;
            --border: rgba(0,132,180,0.25);
            --glow: rgba(0,132,180,0.15);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg-dark);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4 {
            font-family: 'Barlow Condensed', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 1.05;
        }

        /* ===== NAVBAR ===== */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(20,20,20,0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0 2rem;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
        }

        .nav.scrolled {
            height: 60px;
            background: rgba(20,20,20,0.98);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            cursor: pointer;
        }

        .nav-logo img {
            height: 42px;
            width: auto;
            filter: drop-shadow(0 0 8px rgba(0,132,180,0.4));
        }

        .nav-brand {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 800;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--white);
            line-height: 1.1;
        }

        .nav-brand span {
            display: block;
            font-size: 0.65rem;
            font-weight: 400;
            color: var(--teal);
            letter-spacing: 0.15em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--silver);
            text-decoration: none;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0; right: 0;
            height: 2px;
            background: var(--teal);
            transform: scaleX(0);
            transition: transform 0.2s;
        }

        .nav-links a:hover { color: var(--white); }
        .nav-links a:hover::after { transform: scaleX(1); }

        .nav-cta {
            background: var(--teal);
            color: var(--white) !important;
            padding: 0.5rem 1.25rem;
            border-radius: 2px;
            font-weight: 700 !important;
            transition: background 0.2s !important;
        }

        .nav-cta:hover { background: #0095cc !important; }
        .nav-cta::after { display: none !important; }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 24px; height: 2px;
            background: var(--white);
            transition: all 0.3s;
        }

        /* ===== PAGES ===== */
        .page { display: none; }
        .page.active { display: block; }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 0 2rem;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to right,
                    #141414 0%,
                    #141414 28%,
                    rgba(20,20,20,0.9) 45%,
                    rgba(2,73,99,0.45) 72%,
                    rgba(0,132,180,0.2) 100%
                ),
                url('control.jpg') center / cover no-repeat;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0,132,180,0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,132,180,0.06) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
        }

        .hero-diagonal {
            position: absolute;
            bottom: -2px; left: 0; right: 0;
            height: 120px;
            background: var(--bg-dark);
            clip-path: polygon(0 100%, 100% 0, 100% 100%);
        }

        .hero-accent-line {
            position: absolute;
            top: 0;
            left: 50%;
            width: 1px;
            height: 35%;
            background: linear-gradient(to bottom, transparent, var(--teal), transparent);
            opacity: 0.4;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding-top: 70px;
        }

        .hero-eyebrow {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            color: var(--teal);
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            opacity: 0;
            animation: fadeUp 0.6s ease 0.1s forwards;
        }

        .hero-eyebrow::before {
            content: '';
            width: 32px; height: 2px;
            background: var(--teal);
        }

        .hero h1 {
            font-size: clamp(3rem, 7vw, 6.5rem);
            font-weight: 900;
            color: var(--white);
            max-width: 900px;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.25s forwards;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--teal);
            display: block;
        }

        .hero-sub {
            font-size: 1.15rem;
            color: var(--silver);
            max-width: 620px;
            line-height: 1.75;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.4s forwards;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.7s ease 0.55s forwards;
        }

        /* ===== BUTTONS ===== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--teal);
            color: var(--white);
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.875rem 2rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.25s;
        }

        .btn-primary:hover { background: #0095cc; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,132,180,0.4); }
        .btn-primary:hover::before { opacity: 1; }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: var(--silver);
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.875rem 2rem;
            border: 1px solid rgba(184,184,184,0.3);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.25s;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        }

        .btn-outline:hover {
            color: var(--white);
            border-color: var(--teal);
            background: rgba(0,132,180,0.1);
        }

        /* ===== PAIN POINTS ===== */
        .pain-section {
            padding: 6rem 2rem 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            color: var(--teal);
            text-transform: uppercase;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .section-label::before {
            content: '';
            width: 24px; height: 2px;
            background: var(--teal);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 3rem;
            max-width: 600px;
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5px;
            background: var(--border);
            margin-bottom: 5rem;
        }

        .pain-card {
            background: var(--bg-dark);
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: background 0.3s;
        }

        .pain-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 3px; height: 0;
            background: var(--teal);
            transition: height 0.4s ease;
        }

        .pain-card:hover { background: #191d1f; }
        .pain-card:hover::before { height: 100%; }

        .pain-icon {
            width: 48px; height: 48px;
            margin-bottom: 1.25rem;
            color: var(--teal);
        }

        .pain-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: var(--white);
        }

        .pain-card p {
            color: var(--silver);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .pain-number {
            position: absolute;
            bottom: 1.5rem; right: 1.5rem;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: rgba(0,132,180,0.07);
            line-height: 1;
            user-select: none;
        }

        /* ===== SOLUTION ===== */
        .solution-section {
            background: linear-gradient(135deg, var(--deep-teal) 0%, #011f2e 100%);
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .solution-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .solution-inner {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .solution-text h2 {
            font-size: clamp(2rem, 4vw, 3.25rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .solution-text h2 span { color: #4dc8f0; }

        .solution-text p {
            color: rgba(255,255,255,0.75);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .solution-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .stat-box {
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 1.5rem;
            position: relative;
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 3px; height: 100%;
            background: var(--teal);
        }

        .stat-num {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 2.75rem;
            font-weight: 900;
            color: var(--teal);
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.4;
        }

        /* ===== ABOUT PAGE ===== */
        .page-header {
            padding: 8rem 2rem 4rem;
            background: linear-gradient(180deg, rgba(2,73,99,0.2) 0%, transparent 100%);
            text-align: center;
            position: relative;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%; transform: translateX(-50%);
            width: 80px; height: 3px;
            background: var(--teal);
        }

        .page-header h1 {
            font-size: clamp(2.25rem, 5vw, 4.5rem);
            font-weight: 900;
            max-width: 800px;
            margin: 0 auto 1.25rem;
            color: var(--white);
        }

        .page-header p {
            font-size: 1.1rem;
            color: var(--silver);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.75;
        }

        .intro-band {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 4rem 2rem;
        }

        .intro-band-inner {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
        }

        .intro-band-inner p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.9;
        }

        .intro-band-inner strong { color: var(--teal); }

        .benefits-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2px;
            background: var(--border);
            margin-top: 3rem;
        }

        .benefit-card {
            background: var(--bg-dark);
            padding: 3rem 2.5rem;
            position: relative;
            transition: background 0.3s;
        }

        .benefit-card:hover { background: var(--bg-card); }

        .benefit-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 2.5rem; right: 2.5rem;
            height: 1px;
            background: var(--border);
        }

        .benefit-icon {
            width: 52px; height: 52px;
            background: rgba(0,132,180,0.12);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--teal);
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: var(--white);
        }

        .benefit-card p {
            color: var(--silver);
            font-size: 0.95rem;
            line-height: 1.75;
        }

        .blockchain-band {
            background: linear-gradient(135deg, #0a1a20 0%, #071215 100%);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .blockchain-band::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle at center, rgba(0,132,180,0.06) 0%, transparent 60%);
        }

        .blockchain-band-inner {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .blockchain-band h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .blockchain-band p {
            color: var(--silver);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        /* ===== GET STARTED PAGE ===== */
        .steps-section {
            padding: 5rem 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .steps-list {
            list-style: none;
            margin-top: 3rem;
        }

        .step-item {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 2rem;
            padding: 2.5rem 0;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .step-num {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--teal);
            line-height: 1;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .step-item:hover .step-num { opacity: 1; }

        .step-content h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .step-content p {
            color: var(--silver);
            font-size: 0.95rem;
            line-height: 1.75;
        }

        .support-band {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 3rem;
            max-width: 1100px;
            margin: 0 auto 4rem;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
        }

        .support-band h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .support-band p {
            color: var(--silver);
            font-size: 0.95rem;
        }

        /* ===== FORMS ===== */
        .form-section {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 3.5rem;
            max-width: 760px;
            margin: 0 auto 5rem;
        }

        .form-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .form-section > p {
            color: var(--silver);
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-bottom: 1.25rem;
        }

        .form-group label {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--silver);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(184,184,184,0.2);
            color: var(--white);
            padding: 0.875rem 1rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
            width: 100%;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--teal);
            background: rgba(0,132,180,0.06);
        }

        .form-group textarea { resize: vertical; min-height: 120px; }

        .form-group select option { background: var(--black); }

        /* ===== CONTACT PAGE ===== */
        .contact-grid {
            max-width: 1100px;
            margin: 0 auto;
            padding: 3rem 2rem 5rem;
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 4rem;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.25rem;
        }

        .contact-info p {
            color: var(--silver);
            font-size: 0.95rem;
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .contact-detail {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            margin-bottom: 1.25rem;
        }

        .contact-detail-icon {
            width: 36px; height: 36px;
            background: rgba(0,132,180,0.12);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--teal);
        }

        .contact-detail-text strong {
            display: block;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--silver);
            margin-bottom: 0.15rem;
        }

        .contact-detail-text span {
            color: var(--white);
            font-size: 0.95rem;
        }

        .security-note {
            background: rgba(0,132,180,0.06);
            border: 1px solid var(--border);
            border-left: 3px solid var(--teal);
            padding: 1.25rem 1.5rem;
            margin-top: 2rem;
        }

        .security-note p {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.6;
            margin: 0;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #0d0d0d;
            border-top: 1px solid rgba(0,132,180,0.2);
            padding: 3rem 2rem 2rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand img {
            height: 50px;
            margin-bottom: 1rem;
            filter: brightness(0.85);
        }

        .footer-brand p {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.4);
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 1rem;
        }

        .footer-col a {
            display: block;
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            transition: color 0.2s;
            cursor: pointer;
        }

        .footer-col a:hover { color: var(--white); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.3);
        }

        .footer-security {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.25);
            text-align: right;
            max-width: 500px;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== MOBILE NAV ===== */
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            
            .nav-links {
                position: fixed;
                top: 70px; left: 0; right: 0;
                background: rgba(20,20,20,0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s;
                pointer-events: none;
                z-index: 999;
            }

            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
            .pain-grid { grid-template-columns: 1fr; }
            .solution-inner { grid-template-columns: 1fr; gap: 2.5rem; }
            .solution-stats { grid-template-columns: 1fr 1fr; }
            .benefits-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .support-band { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .solution-stats { grid-template-columns: 1fr; }
            .stat-num { font-size: 2.25rem; }
            .hero-content { padding-top: 90px; }
            .page-header { padding: 6rem 1.25rem 2.5rem; }
            .form-section { padding: 2rem 1.25rem; }
            .steps-section { padding: 3rem 1.25rem; }
            .contact-grid { padding: 0 1.25rem; }
        }

        /* ===== MISC ===== */
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--teal), transparent);
            opacity: 0.3;
            margin: 0;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(0,132,180,0.12);
            border: 1px solid var(--border);
            padding: 0.3rem 0.75rem;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 1rem;
        }

        .tag::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--teal);
            border-radius: 50%;
        }

        .success-msg {
            display: none;
            background: rgba(0,132,180,0.1);
            border: 1px solid var(--teal);
            color: var(--teal);
            padding: 1rem 1.5rem;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-top: 1rem;
        }

        /* arrow icon */
        .arrow-right {
            display: inline-block;
            width: 16px; height: 16px;
            border-top: 2px solid currentColor;
            border-right: 2px solid currentColor;
            transform: rotate(45deg);
            flex-shrink: 0;
        }
