/* Base Variables - Inherited from visual contract */
        :root {
            --text-main: #1a1e2d;
            --text-sub: #4a5568;
            --text-mut: #a0aec0;
            --bg-body: #f8fafc;
            --bg-surface: #ffffff;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 15px 40px rgba(239, 90, 95, 0.12);
            --primary: #ef5a5f;
            --primary-dark: #d64a4f;
            --primary-light: #fef0f1;
            --border: rgba(0, 0, 0, 0.08);
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --spacing-base: 24px;
        }

        /* Reset & Base */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: var(--font);
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
        img, svg { max-width: 100%; display: block; }
        
        /* Typography */
        .uorumw {
            word-break: break-word; overflow-wrap: break-word; word-break: keep-all;
        }
        
        /* Universal Flex Rule */
        .azaw { display: flex; flex-wrap: wrap; }
        .azaw > * { min-width: 0; }

        /* --- Global Header (Mandatory structure matching homepage) --- */
        .qpybp {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky; top: 0; z-index: 100;
            border-bottom: 1px solid var(--border);
        }
        .avepoci {
            display: flex; flex-wrap: wrap;
            align-items: center; justify-content: space-between;
            max-width: 1200px; margin: 0 auto; padding: 16px 5vw;
        }
        .wobzdh img { height: 32px; width: auto; }
        .pgohpm { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; }
        .pgohpm > * { min-width: 0; }
        .mix {
            font-size: 15px; font-weight: 500; color: var(--text-sub);
            padding: 8px 0; position: relative;
        }
        .mix:hover { color: var(--primary); }
        .mix.active { color: var(--primary); font-weight: 700; }
        .mix.active::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%;
            height: 3px; background-color: var(--primary); border-radius: 3px 3px 0 0;
        }
        @media (max-width: 768px) {
            .pgohpm { gap: 16px; width: 100%; justify-content: center; padding-top: 12px; }
            .mix { font-size: 14px; }
        }

        /* --- Structural Containers --- */
        .esicabo { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
        .nhkhex { min-height: 100vh; display: flex; flex-direction: column; }
        main { flex: 1; }

        /* --- Section 1: Hero (Role: intro, Tag: article) --- */
        .oyiteq {
            background: linear-gradient(135deg, #1b1625 0%, #3a1e28 50%, #ef5a5f 100%);
            padding: 80px 5vw 100px; color: #ffffff;
            position: relative; overflow: hidden;
            display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
        }
        .oyiteq > * { min-width: 0; }
        .oyiteq-inner {
            display: flex; flex-wrap: wrap; max-width: 1200px; width: 100%;
            gap: 48px; align-items: center;
        }
        .oyiteq-inner > * { min-width: 0; }
        .oyiteq-uorumw { flex: 1; min-width: 300px; }
        .oyiteq-visual { flex: 1; min-width: 300px; display: flex; flex-wrap: wrap; justify-content: flex-end; }
        
        .yaizu-oyiteq {
            font-size: clamp(36px, 4vw, 56px); font-weight: 700; line-height: 1.25;
            margin-bottom: 24px; letter-spacing: -0.5px; white-space: normal;
        }
        .uorumw-oyiteq {
            font-size: clamp(16px, 1.5vw, 20px); color: rgba(255,255,255,0.85);
            margin-bottom: 40px; max-width: 540px; line-height: 1.6;
        }
        
        .tcgve-actions { display: flex; flex-wrap: wrap; gap: 16px; }
        .tcgve-actions > * { min-width: 0; }
        .iduta {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 16px 36px; border-radius: var(--radius-md); font-weight: 700;
            font-size: 16px; cursor: pointer; transition: all 0.25s ease; border: none;
        }
        .iduta-primary {
            background-color: var(--bg-surface); color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        .iduta-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
        .iduta-outline {
            background-color: transparent; color: #ffffff;
            border: 2px solid rgba(255,255,255,0.4);
        }
        .iduta-outline:hover { background-color: rgba(255,255,255,0.1); border-color: #ffffff; transform: translateY(-3px); }

        /* Data UI Carrier for Hero */
        .tusuy-data {
            background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px); border-radius: var(--radius-lg);
            padding: 32px; width: 100%; max-width: 500px; box-shadow: 0 24px 48px rgba(0,0,0,0.2);
            transform: perspective(1000px) rotateY(-5deg); transition: transform 0.5s ease;
        }
        .tusuy-data:hover { transform: perspective(1000px) rotateY(0deg); }
        .fbtr-mock { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
        .fbtr-mock > * { min-width: 0; }
        .circle { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.2); }
        .circle:nth-child(1) { background: #ff5f56; }
        .circle:nth-child(2) { background: #ffbd2e; }
        .circle:nth-child(3) { background: #27c93f; }
        .hrf-mock { background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); height: 48px; margin-bottom: 16px; display: flex; align-items: center; padding: 0 16px; }
        .hrf-mock-fbtr { height: 8px; background: rgba(255,255,255,0.2); border-radius: 4px; width: 60%; }

        /* --- Section 2: Assets (Role: capability, Tag: aside) --- */
        .eqit { padding: 90px 0; background-color: var(--bg-body); }
        .yaizu-esicabo {
            font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--text-main);
            text-align: center; margin-bottom: 16px; white-space: normal;
        }
        .uorumw-desc {
            font-size: 18px; color: var(--text-sub); text-align: center;
            max-width: 700px; margin: 0 auto 56px; line-height: 1.6;
        }
        
        .azaw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
        .uyew-uyew {
            background: var(--bg-surface); border-radius: var(--radius-lg);
            padding: 40px 32px; box-shadow: var(--shadow-sm);
            border: 1px solid var(--border); transition: all 0.3s ease;
            display: flex; flex-direction: column;
        }
        .uyew-uyew:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(239, 90, 95, 0.3); }
        .vvmbw-vvmbw {
            width: 56px; height: 56px; border-radius: var(--radius-md);
            background: var(--primary-light); color: var(--primary);
            display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
        }
        .yaizu-uyew { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); white-space: normal;}
        .uorumw-uyew { color: var(--text-sub); flex: 1; }

        /* --- Section 3: Permissions (Role: acquire/value, Tag: div) --- */
        .toquf { padding: 90px 0; background-color: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .azaw-split { display: flex; flex-wrap: wrap; gap: 64px; align-items: center; }
        .azaw-split > * { min-width: 0; flex: 1; min-width: 320px; }
        
        .tcgve-pgohpm { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
        .hrf-hrf { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
        .hrf-hrf > * { min-width: 0; }
        .vvmbw-check {
            width: 24px; height: 24px; flex-shrink: 0; color: #10b981;
            background: rgba(16, 185, 129, 0.1); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; margin-top: 4px;
        }
        .uorumw-pgohpm-yaizu { font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
        .uorumw-pgohpm-desc { color: var(--text-sub); font-size: 15px; }

        /* Diagram UI for Permissions */
        .tusuy-diagram {
            background: var(--bg-body); border-radius: var(--radius-lg); padding: 40px;
            border: 1px solid var(--border); position: relative;
        }
        .irihi-node {
            background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
            padding: 16px; text-align: center; box-shadow: var(--shadow-sm); position: relative; z-index: 2;
            margin-bottom: 24px; font-weight: 500;
        }
        .irihi-node-primary { border-color: var(--primary); color: var(--primary); }
        .azaw-diagram-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
        .azaw-diagram-row > * { min-width: 0; flex: 1; }

        /* --- Section 4: API (Role: capability, Tag: article) --- */
        .eqit-alt { padding: 90px 0; background-color: var(--bg-body); }
        .tusuy-code {
            background: #1e1e1e; border-radius: var(--radius-md); padding: 32px;
            color: #d4d4d4; font-family: monospace; font-size: 14px; overflow-x: auto;
            box-shadow: var(--shadow-md); margin-top: 40px;
        }
        .uorumw-code-line { margin-bottom: 8px; display: block; }
        .code-keyword { color: #569cd6; }
        .code-string { color: #ce9178; }
        .code-comment { color: #6a9955; }

        /* --- Section 5: Lead Gen (Role: acquire, Tag: section) --- */
        .ikibup { padding: 80px 0; background-color: var(--bg-surface); }
        .irihi-iduta {
            background: linear-gradient(135deg, #fff0f1 0%, #ffffff 100%);
            border: 1px solid rgba(239, 90, 95, 0.15); border-radius: var(--radius-lg);
            padding: 64px 40px; text-align: center; box-shadow: var(--shadow-sm);
            max-width: 900px; margin: 0 auto;
        }
        .irihi-iduta .yaizu-esicabo { margin-bottom: 24px; }
        .ixom-submit {
            background-color: var(--primary); color: #ffffff;
            padding: 18px 48px; border-radius: var(--radius-md); font-weight: 700;
            font-size: 18px; display: inline-flex; align-items: center; justify-content: center;
            border: none; cursor: pointer; transition: all 0.25s ease; box-shadow: 0 8px 20px rgba(239, 90, 95, 0.2);
            margin-top: 32px;
        }
        .ixom-submit:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); background-color: var(--primary-dark); }

        /* --- Global Footer --- */
        .giqeg {
            background-color: #1a1e2d; color: #a0aec0; padding: 64px 5vw 32px;
            font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05);
        }
        .azaw-dhgo { display: flex; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; gap: 48px; justify-content: space-between; }
        .azaw-dhgo > * { min-width: 0; }
        .iraceqi-brand { font-size: 24px; font-weight: 700; color: #ffffff; margin-bottom: 16px; }
        .tcgve-links { display: flex; flex-direction: column; gap: 12px; }
        .mix-dhgo:hover { color: #ffffff; }
        .iraceqi-bottom {
            max-width: 1200px; margin: 48px auto 0; padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap;
            justify-content: space-between; gap: 16px;
        }
        .iraceqi-bottom > * { min-width: 0; }

        @media (max-width: 1024px) {
            .oyiteq { padding: 60px 5vw; }
            .eqit, .toquf, .eqit-alt, .ikibup { padding: 60px 0; }
        }
        @media (max-width: 768px) {
            .azaw-split { flex-direction: column; gap: 40px; }
            .oyiteq-inner { flex-direction: column; text-align: center; }
            .oyiteq-visual { justify-content: center; width: 100%; }
            .tcgve-actions { justify-content: center; }
            .irihi-iduta { padding: 40px 24px; }
        }

.avepoci-qpybp {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
}
.avepoci-qpybp,
.avepoci-qpybp *,
.avepoci-qpybp *::before,
.avepoci-qpybp *::after {
    box-sizing: border-box;
}

.avepoci-qpybp [role="navigation"],
.avepoci-qpybp div,
.avepoci-qpybp section,
.avepoci-qpybp article,
.avepoci-qpybp aside,
.avepoci-qpybp p,
.avepoci-qpybp h1,
.avepoci-qpybp h2,
.avepoci-qpybp h3,
.avepoci-qpybp h4,
.avepoci-qpybp h5,
.avepoci-qpybp h6,
.avepoci-qpybp a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.avepoci-qpybp p,
.avepoci-qpybp h1,
.avepoci-qpybp h2,
.avepoci-qpybp h3,
.avepoci-qpybp h4,
.avepoci-qpybp h5,
.avepoci-qpybp h6 {
    text-decoration: none;
}

.avepoci-qpybp img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.avepoci-qpybp {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.avepoci-qpybp a.avepoci-mix {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.avepoci-qpybp a.avepoci-mix,
.avepoci-qpybp a.avepoci-mix:hover,
.avepoci-qpybp a.avepoci-mix:focus,
.avepoci-qpybp a.avepoci-mix:active,
.avepoci-qpybp a.avepoci-mix.active,
.avepoci-qpybp a.avepoci-mix[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.avepoci-qpybp .avepoci-avepoci, .avepoci-qpybp .avepoci-pgohpm{
            display: flex;
            flex-wrap: wrap;
        }

.avepoci-qpybp .avepoci-avepoci > *, .avepoci-qpybp .avepoci-pgohpm > *{
            min-width: 0;
        }

.avepoci-qpybp{
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

.avepoci-qpybp .avepoci-avepoci{
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 4vw;
            align-items: center;
            justify-content: space-between;
        }

.avepoci-qpybp .avepoci-wobzdh{
            display: flex;
            align-items: center;
        }

.avepoci-qpybp .avepoci-wobzdh img{
            height: 36px;
            width: auto;
        }

.avepoci-qpybp .avepoci-pgohpm{
            gap: 8px;
            align-items: center;
        }

.avepoci-qpybp .avepoci-mix{
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px;
            border-radius: 8px;
            transition: 0.25s ease;
        }

.avepoci-qpybp .avepoci-mix:hover, .avepoci-qpybp .avepoci-mix.active{
            color: #ef5a5f;
            background-color: rgba(239, 90, 95, 0.08);
        }

@media (max-width: 768px){.avepoci-qpybp .avepoci-pgohpm{ display: none;  }}

.giqeg-dhgo {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
}
.giqeg-dhgo,
.giqeg-dhgo *,
.giqeg-dhgo *::before,
.giqeg-dhgo *::after {
    box-sizing: border-box;
}

.giqeg-dhgo [role="navigation"],
.giqeg-dhgo div,
.giqeg-dhgo section,
.giqeg-dhgo article,
.giqeg-dhgo aside,
.giqeg-dhgo p,
.giqeg-dhgo h1,
.giqeg-dhgo h2,
.giqeg-dhgo h3,
.giqeg-dhgo h4,
.giqeg-dhgo h5,
.giqeg-dhgo h6,
.giqeg-dhgo a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.giqeg-dhgo p,
.giqeg-dhgo h1,
.giqeg-dhgo h2,
.giqeg-dhgo h3,
.giqeg-dhgo h4,
.giqeg-dhgo h5,
.giqeg-dhgo h6 {
    text-decoration: none;
}

.giqeg-dhgo img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.giqeg-dhgo {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.giqeg-dhgo a,
.giqeg-dhgo a:hover,
.giqeg-dhgo a:focus,
.giqeg-dhgo a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.giqeg-dhgo .giqeg-tcgve, .giqeg-dhgo .giqeg-eqit, .giqeg-dhgo, .giqeg-dhgo .giqeg-giqeg{
            display: flex;
            flex-wrap: wrap;
        }

.giqeg-dhgo .giqeg-tcgve > *, .giqeg-dhgo .giqeg-eqit > *, .giqeg-dhgo > *, .giqeg-dhgo .giqeg-giqeg > *{
            min-width: 0;
        }

.giqeg-dhgo .giqeg-mix{
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px;
            border-radius: 8px;
            transition: 0.25s ease;
        }

.giqeg-dhgo .giqeg-mix:hover, .giqeg-dhgo .giqeg-mix.active{
            color: #ef5a5f;
            background-color: rgba(239, 90, 95, 0.08);
        }

.giqeg-dhgo .giqeg-eqit{
            width: 100%;
            max-width: 900px;
            z-index: 2;
            flex-direction: column;
            gap: 20px;
        }

.giqeg-dhgo .giqeg-eqit .giqeg-yaizu{
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -1px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

.giqeg-dhgo .giqeg-eqit .giqeg-uorumw{
            font-size: clamp(16px, 2vw, 22px);
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            max-width: 760px;
        }

.giqeg-dhgo .giqeg-yaizu.section-heading{
            font-size: clamp(28px, 3.5vw, 36px);
            text-align: center;
            margin-bottom: 20px;
            width: 100%;
        }

.giqeg-dhgo .giqeg-uorumw.section-sub{
            text-align: center;
            color: #4a5568;
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 40px;
            width: 100%;
        }

.giqeg-dhgo .giqeg-tcgve.grid-4{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            width: 100%;
        }

.giqeg-dhgo .giqeg-tcgve.faq-list{
            flex-direction: column;
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
            width: 100%;
        }

.giqeg-dhgo{
            background-color: #111424;
            color: #a0aec0;
            padding: 80px 4vw 40px;
            margin-top: 100px;
            flex-direction: column;
        }

.giqeg-dhgo .giqeg-tcgve.footer-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

.giqeg-dhgo .giqeg-tcgve.footer-grid .giqeg-yaizu{
            color: #ffffff;
            font-size: 16px;
            margin-bottom: 20px;
        }

.giqeg-dhgo .giqeg-tcgve.footer-grid .giqeg-mix{
            color: #a0aec0;
            padding: 6px 0;
            display: block;
            text-decoration: none;
        }

.giqeg-dhgo .giqeg-tcgve.footer-grid .giqeg-mix:hover{
            color: #ef5a5f;
            background: none;
        }

.giqeg-dhgo .giqeg-giqeg{
            width: 100%;
            max-width: 1400px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

@media (max-width: 768px){.giqeg-dhgo .giqeg-tcgve.grid-4{ grid-template-columns: 1fr; }

.giqeg-dhgo .giqeg-tcgve.footer-grid{ grid-template-columns: repeat(2, 1fr); }

.giqeg-dhgo .giqeg-eqit .giqeg-yaizu{ font-size: 32px; }

.giqeg-dhgo .giqeg-eqit .giqeg-uorumw{ font-size: 16px; }}

@media (max-width: 480px){.giqeg-dhgo .giqeg-tcgve.footer-grid{ grid-template-columns: 1fr; }}