/* Anime Future City (Cyber-Anime) Style */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700;900&family=Rajdhani:wght@500;700&display=swap');

:root {
    --ac-bg: #f4f5f7;
    --ac-surface: #ffffff;
    --ac-primary: #00e5ff; /* Electric Blue */
    --ac-secondary: #ff0055; /* Hot Pink */
    --ac-accent: #ffe600; /* Neon Yellow */
    --ac-text: #1a1a24;
    --ac-text-light: #666677;
    --ac-dark: #0a0a14;
    
    --font-head: 'Rajdhani', 'Noto Sans SC', sans-serif;
    --font-body: 'Noto Sans SC', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--ac-bg);
    color: var(--ac-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Background Watermarks */
.bg-kanji {
    position: fixed;
    font-size: 40vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: -1;
    pointer-events: none;
    line-height: 1;
    writing-mode: vertical-rl;
    top: 50%;
    transform: translateY(-50%);
}
.bg-kanji.left { left: 5%; }
.bg-kanji.right { right: 5%; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-weight: 900;
}

a {
    text-decoration: none;
    color: var(--ac-primary);
    transition: all 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Angled Buttons */
.btn-anime {
    display: inline-block;
    padding: 12px 35px;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: var(--ac-dark);
    position: relative;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    z-index: 1;
}
.btn-anime::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, var(--ac-primary), var(--ac-secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-anime:hover {
    color: #fff;
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 var(--ac-accent);
}
.btn-anime:hover::before {
    opacity: 1;
}
.btn-anime.outline {
    background: var(--ac-surface);
    color: var(--ac-dark);
}
.btn-anime.outline::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    background: var(--ac-surface);
    z-index: -1;
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
    transition: background 0.3s;
}
.btn-anime.outline:hover {
    color: #fff;
}
.btn-anime.outline:hover::after {
    background: transparent;
}

/* Navigation - Slanted Top Bar */
.ac-nav {
    background: var(--ac-surface);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--ac-primary);
}
.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ac-brand {
    font-size: 32px;
    color: var(--ac-dark);
    position: relative;
    display: inline-block;
}
.ac-brand::after {
    content: '';
    position: absolute;
    bottom: 5px; left: -5px; width: 110%; height: 10px;
    background: var(--ac-accent);
    z-index: -1;
    transform: skewX(-20deg);
}
.ac-links {
    display: flex;
    gap: 40px;
}
.ac-links a {
    font-family: var(--font-head);
    font-size: 18px;
    color: var(--ac-text);
    font-weight: 700;
    position: relative;
}
.ac-links a:hover, .ac-links a.active {
    color: var(--ac-secondary);
}
.ac-links a::before {
    content: '';
    position: absolute;
    top: -5px; left: -10px; width: 20px; height: 20px;
    border-top: 2px solid var(--ac-primary);
    border-left: 2px solid var(--ac-primary);
    opacity: 0;
    transition: all 0.3s;
}
.ac-links a:hover::before, .ac-links a.active::before {
    opacity: 1;
    top: -2px; left: -5px;
}
.ac-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Section */
.ac-hero {
    padding: 80px 0;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--ac-dark);
    text-shadow: 4px 4px 0 var(--ac-primary);
}
.hero-desc {
    font-size: 20px;
    color: var(--ac-text-light);
    margin-bottom: 40px;
    background: var(--ac-surface);
    padding: 20px;
    border-left: 5px solid var(--ac-secondary);
    box-shadow: 10px 10px 0 rgba(0,0,0,0.05);
}
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.trust-labels {
    display: flex;
    gap: 20px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
}
.trust-labels span {
    background: var(--ac-dark);
    color: #fff;
    padding: 5px 15px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.hero-img-wrap {
    position: relative;
}
.hero-img-wrap::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px; width: 100%; height: 100%;
    background: var(--ac-accent);
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    z-index: -1;
}

/* Metrics - HUD Style */
.ac-metrics {
    padding: 40px 0;
}
.hud-grid {
    display: flex;
    justify-content: space-between;
    background: var(--ac-dark);
    padding: 30px 50px;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    color: #fff;
    position: relative;
}
.hud-grid::after {
    content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255,255,255,0.1) 5px, rgba(255,255,255,0.1) 10px);
}
.m-item {
    text-align: center;
    position: relative;
    z-index: 2;
}
.m-val {
    font-family: var(--font-head);
    font-size: 48px;
    color: var(--ac-primary);
    text-shadow: 0 0 10px var(--ac-primary);
    line-height: 1;
    margin-bottom: 5px;
}
.m-lbl {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--ac-accent);
}

/* Features - Asymmetric Cards */
.ac-features {
    padding: 80px 0;
}
.section-header {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--ac-dark);
    padding-bottom: 10px;
}
.s-title {
    font-size: 48px;
    color: var(--ac-dark);
    line-height: 0.8;
}
.s-sub {
    font-family: var(--font-head);
    font-size: 18px;
    color: var(--ac-secondary);
    font-weight: 700;
}
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.f-card {
    background: var(--ac-surface);
    padding: 40px 30px;
    position: relative;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s;
}
.f-card:hover {
    transform: translateY(-10px);
}
.f-card::before {
    content: '0' counter(f-count);
    counter-increment: f-count;
    position: absolute;
    top: 10px; right: 20px;
    font-family: var(--font-head);
    font-size: 60px;
    font-weight: 900;
    color: var(--ac-bg);
    z-index: 0;
}
.feat-grid { counter-reset: f-count; }
.f-icon {
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.f-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.f-card p {
    font-size: 15px;
    color: var(--ac-text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.f-list {
    list-style: none;
    position: relative;
    z-index: 1;
}
.f-list li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.f-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 8px; height: 8px;
    background: var(--ac-primary);
    transform: rotate(45deg);
}

/* Nodes - Data Table */
.ac-nodes {
    padding: 80px 0;
    background: var(--ac-dark);
    color: #fff;
    clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
    margin: 40px 0;
}
.node-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}
.n-info h2 { color: #fff; }
.n-info p { color: #aaa; margin-bottom: 30px; }
.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.d-row {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-left: 3px solid var(--ac-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.d-row:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: var(--ac-secondary);
}
.d-city { font-family: var(--font-head); font-size: 20px; font-weight: 700; }
.d-speed { color: var(--ac-accent); font-family: var(--font-head); }

/* Reviews - Chat UI */
.ac-reviews {
    padding: 80px 0;
}
.chat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.chat-msg {
    background: var(--ac-surface);
    padding: 30px;
    border-radius: 20px 20px 20px 0;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 2px solid transparent;
}
.chat-msg:hover {
    border-color: var(--ac-primary);
}
.chat-msg::after {
    content: ''; position: absolute; bottom: -15px; left: -2px;
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: var(--ac-surface) transparent transparent transparent;
}
.chat-msg:hover::after {
    border-color: var(--ac-primary) transparent transparent transparent;
}
.c-stars { color: var(--ac-secondary); margin-bottom: 15px; font-size: 18px; }
.c-text { font-size: 15px; margin-bottom: 20px; }
.c-user { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ac-dark); }

/* Pricing - Module Cards */
.ac-pricing {
    padding: 80px 0;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: end;
}
.p-card {
    background: var(--ac-surface);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #eee;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.p-card.pro {
    border-color: var(--ac-secondary);
    background: var(--ac-dark);
    color: #fff;
    transform: translateY(-20px);
    box-shadow: 15px 15px 0 var(--ac-secondary);
}
.p-badge {
    background: var(--ac-secondary);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 20px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.p-title { font-size: 28px; margin-bottom: 10px; }
.p-desc { font-size: 14px; color: var(--ac-text-light); margin-bottom: 20px; }
.pro .p-desc { color: #aaa; }
.p-price { font-family: var(--font-head); font-size: 56px; margin-bottom: 20px; line-height: 1; }
.p-price span { font-size: 18px; color: var(--ac-text-light); }
.pro .p-price { color: var(--ac-primary); }
.p-feat { list-style: none; text-align: left; margin-bottom: 30px; }
.p-feat li { padding: 10px 0; border-bottom: 1px dashed #ddd; font-size: 15px; }
.pro .p-feat li { border-bottom-color: #333; }
.p-feat li::before { content: '>'; color: var(--ac-primary); font-weight: bold; margin-right: 10px; }

/* FAQ */
.ac-faq {
    padding: 80px 0;
}
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.q-box {
    background: var(--ac-surface);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--ac-primary);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.03);
}
.q-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ac-dark);
}
.q-ans {
    font-size: 15px;
    color: var(--ac-text-light);
}

/* Footer */
.ac-footer {
    background: var(--ac-dark);
    color: #fff;
    padding: 60px 0 30px;
    clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
    margin-top: 50px;
}
.ft-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
}
.ft-brand { font-size: 36px; color: var(--ac-surface); }
.ft-links { display: flex; gap: 30px; }
.ft-links a { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #aaa; text-transform: uppercase; }
.ft-links a:hover { color: var(--ac-primary); }
.ft-copy { text-align: center; font-size: 14px; color: #666; border-top: 1px solid #333; padding-top: 20px; }

/* Subpages */
.page-header {
    padding: 80px 0 40px;
    text-align: center;
}
.page-header h1 { font-size: 56px; margin-bottom: 20px; }
.page-header p { font-size: 18px; color: var(--ac-text-light); }

.dl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 80px;
}
.dl-item {
    background: var(--ac-surface);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 2px solid transparent;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.05);
    transition: border 0.3s;
}
.dl-item:hover { border-color: var(--ac-primary); }
.dl-icon { font-size: 60px; }
.dl-info h3 { font-size: 28px; margin-bottom: 10px; }
.dl-info p { font-size: 15px; color: var(--ac-text-light); margin-bottom: 20px; }

.help-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    padding-bottom: 80px;
}
.h-nav { position: sticky; top: 100px; }
.h-nav a {
    display: block; padding: 15px 20px;
    background: var(--ac-surface);
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    color: var(--ac-text-light);
    border-left: 4px solid transparent;
}
.h-nav a:hover, .h-nav a.active {
    background: var(--ac-dark); color: #fff; border-left-color: var(--ac-primary);
}
.h-content {
    background: var(--ac-surface);
    padding: 50px;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.05);
}
.h-content h2 { font-size: 36px; color: var(--ac-dark); border-bottom: 2px solid #eee; padding-bottom: 15px; margin-bottom: 30px; }
.h-content h3 { font-size: 24px; margin: 30px 0 15px; color: var(--ac-secondary); }
.h-content p, .h-content li { font-size: 16px; color: var(--ac-text-light); margin-bottom: 15px; }
.h-content ul { padding-left: 20px; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid, .node-layout, .dl-grid, .help-layout { grid-template-columns: 1fr; }
    .feat-grid, .chat-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
    .p-card.pro { transform: none; box-shadow: 10px 10px 0 var(--ac-secondary); }
    .h-nav { position: static; display: flex; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .ac-links { display: none; }
    .hero-title { font-size: 50px; }
    .hero-actions { flex-direction: column; }
    .hud-grid { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .m-item { width: 45%; }
    .feat-grid, .chat-grid, .price-grid, .data-grid { grid-template-columns: 1fr; }
    .ft-inner { flex-direction: column; gap: 20px; }
    .dl-item { flex-direction: column; text-align: center; }
}
