/* =========================================
   1. THEME VARIABLES & FONTS
   ========================================= */
:root {
    --bg-color:    #001e19;
    --card-bg:     #0a2e27;
    --text-main:   #f1f5f9;
    --text-muted:  #94a3b8;
    --accent:      #3a997f;
    --accent-hover:#5ecfb0;
    --border:      #1a4035;
    --glow:        0 0 20px rgba(58, 153, 127, 0.25);
    --font-head:   'Exo 2', sans-serif;
    --font-mono:   'JetBrains Mono', monospace;
}

/* =========================================
   2. RESET & BASE
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-head);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* =========================================
   3. NOTICE BANNER
   ========================================= */
.notice-banner {
    background: #dc2626;
    color: #fff;
    text-align: center;
    padding: 11px 48px 11px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-bottom: 3px solid #991b1b;
    position: relative;
    z-index: 200;
}

.notice-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    padding: 2px 6px;
    border-radius: 3px;
    transition: opacity 0.15s, background 0.15s;
}
.notice-close:hover { opacity: 1; background: rgba(0,0,0,0.2); }

/* =========================================
   4. SCAN LINE
   ========================================= */
.scan-line {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent);
    opacity: 0.12;
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 999;
}
@keyframes scan { 0% { top: -5%; } 100% { top: 110%; } }

/* =========================================
   5. LAYOUT & HEADER
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.4rem; font-weight: 700; letter-spacing: 2px; }
.highlight { color: var(--accent); }

nav ul { display: flex; gap: 28px; align-items: center; }
nav a { font-weight: 600; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.5px; }
nav a:hover { color: var(--accent); }

/* =========================================
   6. BUTTONS
   ========================================= */
.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-head);
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: var(--glow); }

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-text { color: var(--accent); font-weight: 700; margin-left: 20px; font-size: 0.95rem; }
.btn-text:hover { text-decoration: underline; }

/* =========================================
   7. HAMBURGER
   ========================================= */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-main);
    border-radius: 3px;
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) { top: 9px; transform: rotate(135deg); background: var(--accent); }
.hamburger.active span:nth-child(2) { opacity: 0; left: -60px; }
.hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-135deg); background: var(--accent); }

/* =========================================
   8. SECTIONS
   ========================================= */
section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.section-title { font-size: 2.1rem; margin-bottom: 20px; text-transform: uppercase; font-weight: 700; }
.center-title { text-align: center; margin-bottom: 60px; }
.section-desc { max-width: 700px; margin: 0 auto 50px; text-align: center; color: var(--text-muted); font-size: 1.1rem; }

/* HERO */
.hero {
    text-align: center;
    padding: 160px 0 120px;
    background: radial-gradient(circle at top center, var(--border) 0%, var(--bg-color) 70%);
}
.hero-title { font-size: 3.2rem; line-height: 1.4; margin-bottom: 25px; letter-spacing: -0.5px; font-weight: 700; white-space: nowrap; }
.subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; font-weight: 300; }
.hero-motto { font-style: italic; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; font-weight: 300; opacity: 0.8; line-height: 1.7; }
.hero-motto cite { display: block; margin-top: 5px; font-style: normal; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; }
.hero-actions { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* HERO EYE */
.hero-eye {
    display: inline-block;
    vertical-align: middle;
    width: 2em;
    height: 0.9em;
    margin: 0 0.08em;
    line-height: 0;
}
.eye-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    animation: eyeGlow 3s ease-in-out infinite;
}
.eye-outline { animation: eyeOutlinePulse 3s ease-in-out infinite; }
.eye-iris { transform-origin: 50px 25px; animation: irisPulse 3s ease-in-out infinite; }
.eye-pupil { transform-origin: 50px 25px; animation: pupilPulse 3s ease-in-out infinite; }

@keyframes eyeGlow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(58,153,127,0.3)); }
    50%       { filter: drop-shadow(0 0 28px rgba(94,207,176,1)) drop-shadow(0 0 50px rgba(58,153,127,0.5)); }
}
@keyframes eyeOutlinePulse {
    0%, 100% { stroke: #3a997f; stroke-width: 2; }
    50%       { stroke: #5ecfb0; stroke-width: 3; }
}
@keyframes irisPulse {
    0%, 100% { transform: scale(1);    stroke: #3a997f; stroke-width: 2; }
    50%       { transform: scale(1.14); stroke: #5ecfb0; stroke-width: 2.5; }
}
@keyframes pupilPulse {
    0%, 100% { transform: scale(1);    fill: #3a997f; }
    50%       { transform: scale(1.35); fill: #a8f0dc; }
}

/* SPLIT / SERVICES */
.split-wrapper { display: flex; gap: 50px; justify-content: center; flex-wrap: wrap; }
.split-col { flex: 1; min-width: 300px; padding: 20px; }
.split-divider { width: 1px; background: var(--border); }

.col-header { text-align: center; margin-bottom: 30px; }
.icon-large { font-size: 3rem; margin-bottom: 15px; color: var(--accent); }
.split-col h3 { font-size: 1.5rem; margin-bottom: 10px; font-weight: 600; }
.split-col p { color: var(--text-muted); font-size: 1rem; }

.service-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    color: var(--text-muted);
}
.service-list li strong { color: var(--text-main); display: block; margin-bottom: 3px; font-weight: 600; }
.service-list li::before { content: "►"; position: absolute; left: 0; top: 4px; color: var(--accent); font-size: 0.8rem; }

/* DESIGNER / PROFILE SECTION */
.designer-section { background: var(--card-bg); }
.designer-content { display: flex; gap: 50px; align-items: center; }
.designer-text { flex: 1; }
.designer-visual { flex: 1; display: flex; justify-content: center; }

.lead { font-size: 1.2rem; margin-bottom: 30px; font-weight: 300; }

.quote-box {
    background: rgba(0,0,0,0.2);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-muted);
}

.checklist li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

.hologram-card {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--accent);
    padding: 25px;
    width: 320px;
    font-family: var(--font-mono);
    box-shadow: var(--glow);
    border-radius: 4px;
}
.holo-header { border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 15px; color: var(--accent); font-weight: bold; letter-spacing: 1px; }
.holo-body span { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.bar { height: 6px; background: #333; margin-bottom: 15px; border-radius: 3px; overflow: hidden; }
.fill { height: 100%; background: var(--accent); }

/* CONTACT FORM */
.form-wrapper { max-width: 700px; margin: 0 auto; background: var(--card-bg); padding: 40px; border-radius: 8px; border: 1px solid var(--border); }
.form-intro { text-align: center; margin-bottom: 30px; color: var(--text-muted); }

.form-row { display: flex; gap: 20px; }
.form-group { margin-bottom: 20px; width: 100%; }
label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
input, textarea {
    width: 100%; padding: 12px;
    background: var(--bg-color); border: 1px solid var(--border);
    color: var(--text-main); font-family: var(--font-head);
    transition: 0.3s; border-radius: 4px;
}
input:focus, textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 5px rgba(58,153,127,0.3); }
.status-msg { margin-top: 15px; text-align: center; font-family: var(--font-mono); font-size: 0.9rem; }

/* =========================================
   9. AUDIT ORDER SECTION
   ========================================= */
.audit-box {
    max-width: 700px;
    margin: 0 auto;
}
.audit-box.mode-premium {
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--glow);
}

.audit-toggle {
    display: flex;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-bottom: none;
}
.audit-box.mode-premium .audit-toggle {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
}

.audit-tab {
    flex: 1;
    padding: 18px 16px;
    background: var(--bg-color);
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
    color: var(--text-muted);
    transition: background 0.3s, color 0.3s;
    text-align: center;
    border-bottom: 3px solid transparent;
}
.audit-tab .tab-name {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
}
.audit-tab .tab-time {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.73rem;
}

.audit-tab.tab-active-standard {
    background: var(--card-bg);
    color: var(--text-main);
    border-bottom: 3px solid var(--accent);
}
.audit-tab.tab-active-standard .tab-time { color: var(--accent); }

.audit-tab.tab-active-premium {
    background: #001510;
    color: var(--text-main);
    border-bottom: 3px solid var(--accent);
}
.audit-tab.tab-active-premium .tab-time { color: var(--accent); }

.audit-form-wrapper {
    padding: 40px;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    transition: background 0.4s ease;
}

.audit-form-wrapper.mode-standard { background: var(--card-bg); }
.audit-form-wrapper.mode-premium  { background: #001510; border: none; border-radius: 0; }

.audit-form-wrapper.mode-premium input,
.audit-form-wrapper.mode-premium textarea {
    background: var(--bg-color);
    border-color: var(--border);
    color: var(--text-main);
}
.audit-form-wrapper.mode-premium input:focus,
.audit-form-wrapper.mode-premium textarea:focus {
    border-color: var(--accent);
    box-shadow: var(--glow);
}

.audit-tier-badge {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 4px;
    color: var(--accent);
    border: 1px solid var(--border);
    background: transparent;
    transition: all 0.35s;
}
.mode-premium .audit-tier-badge {
    border-color: var(--accent);
    box-shadow: var(--glow);
}

.btn-audit-submit {
    width: 100%;
    padding: 16px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}
.mode-standard .btn-audit-submit {
    background: var(--accent);
    color: #fff;
}
.mode-standard .btn-audit-submit:hover { background: var(--accent-hover); box-shadow: var(--glow); }

.mode-premium .btn-audit-submit {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    letter-spacing: 1px;
}
.mode-premium .btn-audit-submit:hover {
    background: var(--accent);
    color: var(--bg-color);
    box-shadow: var(--glow);
}

.audit-sample {
    max-width: 700px;
    margin: 30px auto 0;
    text-align: center;
}
.audit-sample-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid var(--accent);
    border-radius: 5px;
    padding: 9px 20px;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.audit-sample-link:hover {
    background: var(--accent);
    color: var(--bg-color);
    box-shadow: var(--glow);
}
.audit-sample-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid currentColor;
    border-radius: 3px;
    padding: 1px 5px;
    opacity: 0.75;
}

.audit-followup {
    margin-top: 16px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--accent);
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mode-standard .followup-premium { display: none; }
.mode-premium  .followup-standard { display: none; }

/* =========================================
   10. SEARCH SECTION
   ========================================= */
.search-section {
    background: var(--bg-color);
}

.eye-pulse-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.eye-pulse {
    font-size: 7rem;
    line-height: 1;
    animation: eyePulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(58, 153, 127, 0.5));
}

@keyframes eyePulse {
    0%, 100% { transform: scale(1);    opacity: 1;    }
    50%       { transform: scale(1.1); opacity: 0.8;  }
}

.eye-pulse-label {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    color: var(--accent);
    letter-spacing: 1px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 6px 16px;
}

.eye-pulse-sub {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.eye-ring {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eye-ring::before,
.eye-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--accent);
    animation: radarRing 3s ease-out infinite;
    pointer-events: none;
}
.eye-ring::after { animation-delay: -1.5s; }
@keyframes radarRing {
    0%   { transform: scale(0.6); opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0; }
}

a.eye-pulse-label {
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
a.eye-pulse-label:hover {
    border-color: var(--accent-hover);
    color: var(--accent-hover);
    box-shadow: var(--glow);
}

.search-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.search-eye-col {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}

.search-text-col {
    flex: 1;
}

@media (max-width: 768px) {
    .search-layout {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .search-eye-col {
        min-width: unset;
        width: 100%;
    }
    .eye-pulse { font-size: 5rem; }
    .search-text-col .section-title,
    .search-text-col p { text-align: center; }
}

/* =========================================
   11. SOCIAL SECTION
   ========================================= */
.social-section {
    background: var(--card-bg);
}

.social-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 300px;
    min-width: 300px;
    max-width: 440px;
    padding: 24px 28px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-color);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow);
}

.social-card-yt:hover   { border-color: #ff0000; box-shadow: 0 0 20px rgba(255,0,0,0.2); }
.social-card-tw:hover   { border-color: #9146ff; box-shadow: 0 0 20px rgba(145,70,255,0.2); }
.social-card-blog:hover { border-color: #82c91e; box-shadow: 0 0 20px rgba(130,201,30,0.2); }

.social-card-icon {
    font-size: 2.4rem;
    flex-shrink: 0;
    width: 52px;
    text-align: center;
}
.social-card-yt .social-card-icon  { color: #ff0000; }
.social-card-tw .social-card-icon  { color: #9146ff; }

.social-card-body { flex: 1; }
.social-card-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 2px; }
.social-card-handle { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); margin-bottom: 8px; }
.social-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.social-card-arrow { font-size: 1.3rem; color: var(--text-muted); flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.social-card:hover .social-card-arrow { color: var(--accent); transform: translateX(4px); }

/* =========================================
   12. FOOTER
   ========================================= */
footer { padding: 60px 0 30px; background: var(--card-bg); border-top: 1px solid var(--border); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 40px; gap: 30px; }
.footer-grid h4 { font-size: 1rem; letter-spacing: 1px; margin-bottom: 12px; }
.footer-grid p { line-height: 2; color: var(--text-muted); font-size: 0.9rem; }
.footer-links a { display: block; margin-bottom: 10px; color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; border-top: 1px solid var(--border); padding-top: 20px; color: #666; font-size: 0.8rem; }

/* =========================================
   13. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .nav-container { flex-direction: row !important; align-items: center; justify-content: space-between; padding: 0 20px; position: relative; }
    .hamburger { display: block; order: -1; margin-right: 20px; flex-shrink: 0; }
    .logo { flex-grow: 1; text-align: right; font-size: 1.1rem; }

    nav {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: auto;
        min-height: 50vh;
        background: var(--card-bg);
        border-bottom: 2px solid var(--accent);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        padding-top: 80px;
        padding-bottom: 40px;
    }
    nav.nav-open { transform: translateY(0%); }
    nav ul { flex-direction: column; align-items: center; gap: 25px; }
    nav a { font-size: 1.3rem; display: block; padding: 5px 0; font-weight: 700; }

    .hero-title { font-size: 2rem; white-space: normal; }
    .hero-eye { width: 1.8em; height: 0.85em; }
    .split-divider { display: none; }
    .designer-content { flex-direction: column; }
    .form-row { flex-direction: column; gap: 0; }
    .audit-toggle { border-radius: 8px 8px 0 0; }
    .audit-box.mode-premium { border-radius: 8px; }
    .audit-tab { padding: 14px 12px; }
    .audit-tab .tab-name { font-size: 0.78rem; }
    .hologram-card { width: 100%; max-width: 340px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-text { margin-left: 0; margin-top: 10px; }
}
