/* Azurio Style - High-End Digital Agency Theme */

:root {
    --bg: #0B0B0F;
    --bg-light: #15151A;
    --accent: #CCFF00; /* Signature neon lime/yellow */
    --accent-hover: #E2FF4D;
    --text: #FFFFFF;
    --text-muted: #888899;
    --border: rgba(255, 255, 255, 0.1);
    --red: #ff4d4d;
    
    --font-h: 'Syne', sans-serif;
    --font-p: 'Inter', sans-serif;
    
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    font-size: 16px;
    background: var(--bg);
}

body.az-body {
    font-family: var(--font-p);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::-webkit-selection {
    background: var(--accent);
    color: var(--bg);
}
::selection {
    background: var(--accent);
    color: var(--bg);
}

a, button {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

.az-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography Utilities */
.az-text-outline, .az-title-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text);
}

h1, h2, h3, h4, .az-font-syne {
    font-family: var(--font-h);
    font-weight: 700;
}

/* Loader */
.az-loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.az-loader-logo {
    width: clamp(120px, 20vw, 200px);
    height: auto;
    margin-bottom: 32px;
    animation: loaderPulse 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 18px rgba(204,255,0,0.25));
}

@-webkit-keyframes loaderPulse {
    0%,100% { opacity: 1;   -webkit-transform: scale(1);    transform: scale(1);    }
    50%      { opacity: 0.6; -webkit-transform: scale(0.96); transform: scale(0.96); }
}
@keyframes loaderPulse {
    0%,100% { opacity: 1;   transform: scale(1);    }
    50%      { opacity: 0.6; transform: scale(0.96); }
}

.az-loader-progress {
    width: 200px; height: 2px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.az-loader-progress::after {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 100%; width: 0%;
    background: var(--accent);
    animation: load 1.5s var(--ease) forwards;
}

@-webkit-keyframes load { to { width: 100%; } }
@keyframes load { to { width: 100%; } }

/* Header */
.az-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 30px 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(5,5,8,0.85) 0%, transparent 100%);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    transition: background 0.4s;
}

.az-header.scrolled {
    background: rgba(5,5,8,0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 20px 0;
}

.az-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.az-logo {
    display: inline-flex;
    align-items: center;
}

.az-logo-img {
    height: 28px; /* Scales based on aspect ratio */
    width: auto;
    object-fit: contain;
    display: block;
}

.az-nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.az-btn-sm {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.az-btn-sm::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; width: 100%; height: 1px;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}
.az-btn-sm:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.az-hamburger {
    width: 36px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.az-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), width 0.4s var(--ease);
    transform-origin: left center;
}
.az-hamburger span:nth-child(2) { width: 70%; }
.az-hamburger:hover span:nth-child(2) { width: 100%; }
.az-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(1px, -1px); }
.az-hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.az-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(1px, 1px); }

/* Fullscreen Menu Overlay */
.az-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: -webkit-clip-path 0.8s var(--ease);
    transition: clip-path 0.8s var(--ease);
}
.az-menu-overlay.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.az-menu-links {
    list-style: none;
    text-align: center;
}
.az-menu-link {
    font-family: var(--font-h);
    font-size: 8vw;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--border);
    transition: color 0.4s, -webkit-text-stroke 0.4s;
    display: block;
}
.az-menu-link:hover {
    color: var(--accent);
    -webkit-text-stroke: 1.5px var(--accent);
}

/* ============================================================
   HERO SECTION — Azurio Style
   ============================================================ */

.az-hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: #050508;
}

.az-hero-02 {
    position: relative;
    width: 100%;
    height: 100%;
}

/* --- Background Video --- */
.az-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background: #050508;
}

/* Video (optional override — shown when assets/video/hero.mp4 exists) */
#heroBgVideo {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.72;
    z-index: 2;
}

.az-hero-bg__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3;
    background: linear-gradient(
        180deg,
        rgba(5,5,8,0.25) 0%,
        rgba(5,5,8,0.10) 40%,
        rgba(5,5,8,0.50) 100%
    );
}

.az-hero-bg__vignette {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3;
    background: radial-gradient(
        ellipse 90% 80% at 50% 50%,
        transparent 40%,
        rgba(5,5,8,0.80) 100%
    );
    pointer-events: none;
}

/* (gallery images removed — video is the full hero visual) */

/* --- Center Content --- */
.az-hero-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
    pointer-events: none;
}

.az-hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(2.4rem, 10vw, 13rem);
    font-weight: 700;
    line-height: 0.90;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--text);
}

/* Mask-reveal wrapper */
.hz-line {
    display: block;
    overflow: hidden;
    line-height: 1;
    padding-bottom: 0.05em;
}

.hz-inner {
    display: block;
    transform: translateY(110%);
}

.hz-outline .hz-inner {
    color: transparent;
    -webkit-text-stroke: 2px var(--text);
}

.az-hero-tagline {
    margin-top: 28px;
    font-family: var(--font-p);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
}

/* --- Bottom Bar --- */
.az-hero-footer {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    z-index: 6;
    opacity: 0;
}

.az-hero-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.az-socials-row {
    list-style: none;
    display: flex;
    gap: 24px;
}

.az-socials-row a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
}

.az-socials-row a:hover { color: var(--accent); }

.az-scroll-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
}

.az-scroll-cta:hover { color: var(--accent); }

.az-scroll-cta__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.az-scroll-cta__icon {
    width: 38px;
    height: 38px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.az-scroll-cta:hover .az-scroll-cta__icon {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

/* Primary Button Azurio Style */
.az-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 40px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease);
}

.az-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--text);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    z-index: 0;
}

.az-btn:hover { transform: translateY(-4px); }
.az-btn:hover::before { transform: translateY(0); }

.az-btn-text, .az-btn-icon { position: relative; z-index: 1; transition: color 0.4s; }
.az-btn:hover .az-btn-text,
.az-btn:hover .az-btn-icon { color: var(--bg); }
.az-btn-icon { font-size: 18px; }

/* Magnetic & Hover Utils */
[data-magnetic] {
    display: inline-block;
}


/* Process / Accordion Section */
.az-process { padding: 120px 0; }
.az-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.az-accordion {
    border-top: 1px solid var(--border);
}

.az-accordion-item {
    border-bottom: 1px solid var(--border);
}

.az-accordion-header {
    display: flex;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: padding-left 0.4s var(--ease);
}

.az-accordion-header:hover {
    padding-left: 20px;
}

.az-accordion-header:hover .az-accordion-title {
    color: var(--accent);
}

.az-accordion-num {
    font-family: var(--font-h);
    font-size: 16px;
    color: var(--text-muted);
    width: 60px;
}

.az-accordion-title {
    font-size: 28px;
    flex: 1;
    transition: color 0.4s var(--ease);
}

.az-accordion-icon {
    font-size: 24px;
    color: var(--text-muted);
    transition: transform 0.4s var(--ease), color 0.4s;
}

.az-accordion-item.active .az-accordion-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.az-accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.6s var(--ease);
}

.az-accordion-inner {
    padding: 0 0 30px 60px;
    color: var(--text-muted);
    font-size: 16px;
}

/* Circular Scroll Progress */
.az-progress-wrap {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
}

.az-progress-wrap.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.az-progress-wrap svg {
    position: absolute;
    top: 0; left: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.az-progress-wrap svg path {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 2;
    transition: stroke-dashoffset 0.1s linear;
}

.az-progress-wrap svg path#progressPath {
    stroke: var(--accent);
    stroke-dasharray: 308; /* Approx 2*pi*r where r=49 */
    stroke-dashoffset: 308;
}

.az-progress-icon {
    color: var(--text);
    font-size: 18px;
    font-family: var(--font-p);
    transition: color 0.3s;
}

.az-progress-wrap:hover .az-progress-icon {
    color: var(--accent);
}

/* Marquee wrapper — rotation via pseudo-element so overflow:hidden
   doesn't clip the translateX animation on iOS Safari */
.az-marquee {
    position: relative;
    margin: 100px 0;
    padding: 0;
    color: var(--bg);
    /* extra vertical space to absorb the rotation bleed */
    overflow: visible;
}

.az-marquee::before {
    content: '';
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    background: var(--accent);
    -webkit-transform: rotate(-2deg) scaleX(1.06);
    -ms-transform: rotate(-2deg) scaleX(1.06);
    transform: rotate(-2deg) scaleX(1.06);
    z-index: 0;
}

/* Clip wrapper sits inside, prevents text overflowing the strip */
.az-marquee-clip {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 60px 0;
}

.az-marquee-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    font-family: var(--font-h);
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    -webkit-animation: marquee-scroll 22s linear infinite;
    animation: marquee-scroll 22s linear infinite;
    will-change: transform;
    /* promote to own GPU layer without conflicting with animation transform */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@-webkit-keyframes marquee-scroll {
    0%   { -webkit-transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); }
}
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.az-marquee-inner span { margin-right: 40px; }
.az-marquee-inner .az-text-outline { -webkit-text-stroke: 2px var(--bg); color: transparent; }

/* Mobile responsive marquee */
@media (max-width: 768px) {
    .az-marquee { margin: 48px 0; }
    .az-marquee-clip { padding: 18px 0; }
    .az-marquee-inner {
        font-size: 14px;
        letter-spacing: 0.5px;
        font-weight: 700;
        -webkit-animation-duration: 14s;
        animation-duration: 14s;
    }
    .az-marquee-inner span { margin-right: 12px; }
    .az-marquee-inner .az-text-outline { -webkit-text-stroke: 1px var(--bg); }
}

@media (max-width: 480px) {
    .az-marquee { margin: 32px 0; }
    .az-marquee-clip { padding: 14px 0; }
    .az-marquee-inner {
        font-size: 12px;
        letter-spacing: 0.4px;
        font-weight: 700;
        -webkit-animation-duration: 12s;
        animation-duration: 12s;
    }
    .az-marquee-inner span { margin-right: 10px; }
    .az-marquee-inner .az-text-outline { -webkit-text-stroke: 1px var(--bg); }
}

/* About Section */
.az-about { padding: 120px 0; }
.az-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.az-section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 40px;
}

.az-card {
    padding: 40px;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
    transition: background 0.4s;
}
.az-card:hover { background: var(--bg-light); }

.az-card-num {
    font-family: var(--font-h);
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 20px;
}

.az-card-title {
    font-size: 28px;
    margin-bottom: 16px;
}

.az-card-text {
    color: var(--text-muted);
    font-size: 16px;
}

/* Features List */
.az-features { padding: 120px 0; }

.az-section-header { margin-bottom: 80px; }
.az-eyebrow {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.az-feature-list {
    border-top: 1px solid var(--border);
}

.az-feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    transition: padding 0.4s var(--ease);
}

.az-feature-item:hover {
    padding-left: 20px;
    padding-right: 20px;
    background: var(--bg-light);
}

.az-feature-num {
    font-family: var(--font-h);
    font-size: 24px;
    color: var(--text-muted);
    width: 100px;
}

.az-feature-content { flex: 1; }
.az-feature-content h3 { font-size: 40px; margin-bottom: 12px; }
.az-feature-content p { color: var(--text-muted); max-width: 500px; }

.az-feature-icon {
    font-size: 40px;
    color: var(--accent);
    transform: rotate(0deg);
    transition: transform 0.4s var(--ease);
}
.az-feature-item:hover .az-feature-icon { transform: rotate(45deg); }

/* Stats */
.az-stats { padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.az-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }

.az-stat-item { border-right: 1px solid var(--border); }
.az-stat-item:last-child { border-right: none; }

.az-stat-num {
    font-family: var(--font-h);
    font-size: 64px;
    color: var(--text);
    margin-bottom: 10px;
}
.az-stat-label {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer / Waitlist */
.az-footer { padding: 160px 0 40px; }

.az-massive-title {
    font-size: clamp(5rem, 14vw, 15rem);
    line-height: 0.85;
    margin-bottom: 80px;
    text-align: center;
}

.az-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
}

/* Minimalist Form Azurio Style */
.az-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.az-input-group { position: relative; }

.az-input-group input, .az-input-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    color: var(--text);
    font-family: var(--font-p);
    font-size: 16px;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.4s;
}

.az-input-group input:focus, .az-input-group select:focus { border-color: var(--accent); }

.az-input-group label {
    position: absolute;
    top: 16px; left: 0;
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s var(--ease);
}

.az-input-group input:focus ~ label,
.az-input-group input:not(:placeholder-shown) ~ label,
.az-input-group select:valid ~ label {
    top: -12px;
    font-size: 12px;
    color: var(--accent);
}

.az-btn-full { width: 100%; margin-top: 40px; }

.az-error { color: var(--red); font-size: 12px; position: absolute; bottom: -20px; left: 0; display:none; }
.az-error.visible { display: block; }

/* Checkbox Grid */
.az-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.az-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s var(--ease);
}

.az-checkbox-label:hover {
    color: var(--accent);
}

.az-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent); /* Chrome 93+, Firefox 92+, Safari 15.4+ */
    cursor: pointer;
    flex-shrink: 0;
}

.az-checkbox-label span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.az-footer-info { display: flex; flex-direction: column; gap: 60px; }
.az-info-block h4 { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; font-family: var(--font-p);}
.az-info-block a { font-size: 24px; font-family: var(--font-h); font-weight: 600; display: inline-block; margin-bottom: 10px; transition: color 0.3s; }
.az-info-block a:hover { color: var(--accent); }

.az-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

.az-back-top { color: var(--text); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.az-back-top:hover { color: var(--accent); }

/* ── Trust Bar ──────────────────────────────────────────── */
.az-trust-bar {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.az-trust-bar__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.az-trust-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    white-space: nowrap;
}
.az-trust-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}
.az-trust-pills span {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}
.az-trust-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}
.az-live-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ── About / Process subtext ────────────────────────────── */
.az-about-sub, .az-process-sub {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.75;
    max-width: 440px;
    margin-top: 24px;
}

/* ── Testimonials ───────────────────────────────────────── */
.az-testimonials { padding: 120px 0; }

.az-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.az-testi-card {
    padding: 48px 40px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: border-color 0.4s, transform 0.4s var(--ease);
}
.az-testi-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}
.az-testi-stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 3px;
}
.az-testi-quote {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    flex: 1;
    font-style: italic;
}
.az-testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.az-testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.az-testi-meta strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}
.az-testi-meta span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ── Waitlist Urgency ───────────────────────────────────── */
.az-footer-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(204,255,0,0.08);
    border: 1px solid rgba(204,255,0,0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}
.az-footer-urgency strong { color: var(--accent); }
.az-urgency-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: livePulse 1.8s ease-out infinite;
}

/* ── Founding Benefits ──────────────────────────────────── */
.az-footer-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
    margin-top: 0;
    margin-bottom: 80px;
    justify-content: center;
}
.az-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.az-benefit-check {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

/* ── Form Trust Line ────────────────────────────────────── */
.az-form-trust {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    gap: 20px;
    flex-wrap: wrap;
}
.az-form-count {
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

.az-trust-lock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
}
.az-trust-lock svg {
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.85;
}

/* ── Success / Closed ───────────────────────────────────── */
.az-success {
    padding: 60px 40px;
    border: 1px solid var(--accent);
    border-radius: 20px;
    text-align: center;
}
.az-success h3 {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}
.az-success p { color: var(--text-muted); font-size: 16px; margin-bottom: 10px; }

.az-closed-msg { color: var(--text-muted); font-size: 20px; padding: 40px 0; }

/* ── Footer CTA alignment ───────────────────────────────── */
.az-footer-cta { text-align: center; }

/* ── Safari iOS safe area + 100vh fix ──────────────────── */
.az-hero {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: 100dvh;
}

/* iPhone notch / Dynamic Island / home bar safe areas */
.az-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.az-footer-bottom {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
}

.az-progress-wrap {
    bottom: calc(40px + env(safe-area-inset-bottom));
    right: calc(40px + env(safe-area-inset-right));
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .az-container { padding: 0 32px; }
    .az-about-grid, .az-footer-grid { grid-template-columns: 1fr; gap: 60px; }
    .az-stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .az-stat-item { border: none; }
    .az-testi-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .az-process-grid { grid-template-columns: 1fr; }
    .az-trust-bar__inner { justify-content: center; text-align: center; }
    .az-footer { padding: 100px 0 40px; }
    .az-footer-grid { gap: 60px; }
    .az-about { padding: 80px 0; }
    .az-features { padding: 80px 0; }
    .az-process { padding: 80px 0; }
    .az-stats { padding: 60px 0; }
    .az-testimonials { padding: 80px 0; }
}

@media (max-width: 768px) {
    /* Container */
    .az-container { padding: 0 20px; }

    /* Sections */
    .az-about { padding: 60px 0; }
    .az-features { padding: 60px 0; }
    .az-process { padding: 60px 0; }
    .az-stats { padding: 48px 0; }
    .az-testimonials { padding: 60px 0; }
    .az-footer { padding: 80px 0 40px; }

    /* Section header */
    .az-section-header { margin-bottom: 48px; }
    .az-section-title { font-size: clamp(1.8rem, 7vw, 3rem); margin-bottom: 24px; }

    /* Hero */
    .az-hero-content { padding: 0 20px; }
    .az-hero-h1 {
        font-size: clamp(2.2rem, 9.5vw, 4.5rem);
        line-height: 0.93;
        letter-spacing: -0.02em;
        text-align: center;
    }
    .hz-outline .hz-inner { -webkit-text-stroke: 1px var(--text); }
    .az-hero-tagline {
        font-size: 10px;
        letter-spacing: 2px;
        margin-top: 18px;
        text-align: center;
    }
    .az-hero-footer { bottom: 24px; }
    .az-hero-footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .az-socials-row { display: none; }

    /* Nav */
    .az-nav-right { gap: 16px; }
    .az-btn-sm { font-size: 12px; }

    /* Form */
    .az-input-row { grid-template-columns: 1fr; gap: 32px; }
    .az-input-group input, .az-input-group select { font-size: 16px; /* prevents iOS zoom on focus */ }
    .az-btn { padding: 18px 32px; font-size: 13px; }
    .az-btn-full { width: 100%; }

    /* Select arrow for Safari (appearance:none removes it) */
    .az-input-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888899' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 4px center;
        padding-right: 28px;
    }

    /* Features */
    .az-feature-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 36px 0;
    }
    .az-feature-icon { display: none; }
    .az-feature-num { width: 60px; font-size: 18px; }
    .az-feature-content h3 { font-size: 26px; }

    /* Stats */
    .az-stats-grid { grid-template-columns: 1fr 1fr; }
    .az-stat-num { font-size: 44px; }

    /* Accordion */
    .az-accordion-title { font-size: 20px; }
    .az-accordion-inner { padding: 0 0 24px 40px; font-size: 15px; }
    .az-accordion-header { padding: 22px 0; }

    /* About */
    .az-about-grid { gap: 40px; }
    .az-about-sub, .az-process-sub { font-size: 15px; max-width: 100%; }
    .az-card { padding: 28px 20px; }
    .az-card-title { font-size: 22px; }

    /* Trust bar */
    .az-trust-bar__inner {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
    }
    .az-trust-pills { justify-content: center; }

    /* Testimonials */
    .az-testi-grid { grid-template-columns: 1fr; }
    .az-testi-card { padding: 32px 24px; }

    /* Footer */
    .az-massive-title { font-size: clamp(2.8rem, 11vw, 7rem); }
    .az-footer-benefits { -ms-flex-direction: column; flex-direction: column; align-items: center; text-align: center; gap: 10px 0; }
    .az-footer-grid { gap: 48px; }
    .az-footer-info { gap: 36px; }
    .az-info-block a { font-size: 18px; }
    .az-footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 12px;
    }

    /* Progress button */
    .az-progress-wrap { right: 20px; bottom: 20px; width: 44px; height: 44px; }

    /* Tap targets — min 44x44 per Apple HIG */
    .az-hamburger { width: 44px; height: 44px; justify-content: center; gap: 6px; padding: 4px; }
    a, button { -webkit-tap-highlight-color: transparent; }
}

@media (max-width: 480px) {
    /* Container */
    .az-container { padding: 0 16px; }

    /* Hero */
    .az-hero-h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 0.95;
    }
    .az-hero-tagline {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    /* Sections */
    .az-about { padding: 48px 0; }
    .az-features { padding: 48px 0; }
    .az-process { padding: 48px 0; }
    .az-testimonials { padding: 48px 0; }

    /* Stats — single column on very small screens */
    .az-stats-grid { grid-template-columns: 1fr 1fr; }
    .az-stat-num { font-size: 36px; }

    /* Footer */
    .az-massive-title {
        font-size: clamp(2.4rem, 10vw, 5rem);
        margin-bottom: 40px;
    }
    .az-massive-title .az-title-outline {
        -webkit-text-stroke: 1px var(--text);
    }
    .az-footer { padding: 60px 0 32px; }
    .az-success { padding: 40px 20px; }
    .az-success h3 { font-size: 36px; }

    /* Form */
    .az-input-row { gap: 28px; }
    .az-checkbox-grid { grid-template-columns: 1fr 1fr; }

    /* Accordion */
    .az-accordion-title { font-size: 17px; }
    .az-accordion-num { width: 40px; font-size: 14px; }
}
