/* ============================================================
   CLAUDE YOLO MODE
   COMPLETE WEBSITE CSS

   COLOR COMBINATION:
   1. DARK NAVY  #07182A
   2. CYAN       #20D6E8

   FILE:
   assets/css/style.css
============================================================ */


/* ============================================================
   SECTION 01
   ROOT VARIABLES / WEBSITE COLORS
============================================================ */

:root {
    --primary: #07182a;
    --primary-soft: #10243a;
    --primary-light: #172d45;

    --accent: #20d6e8;
    --accent-dark: #079aaa;
    --accent-soft: rgba(32, 214, 232, 0.11);

    --white: #ffffff;

    --bg: #ffffff;
    --bg-soft: #f5f8fa;
    --bg-light: #f8fafc;

    --text: #07182a;
    --text-soft: #536174;
    --text-muted: #718095;

    --border: rgba(7, 24, 42, 0.1);
    --border-dark: rgba(255, 255, 255, 0.09);

    --radius-small: 9px;
    --radius-medium: 13px;
    --radius-large: 20px;

    --shadow-small:
        0 8px 24px rgba(7, 24, 42, 0.06);

    --shadow-medium:
        0 18px 45px rgba(7, 24, 42, 0.1);

    --shadow-large:
        0 30px 70px rgba(7, 24, 42, 0.18);

    --container: 1280px;
}


/* ============================================================
   SECTION 02
   RESET
============================================================ */

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


html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}


body {
    margin: 0;

    min-height: 100vh;

    overflow-x: hidden;

    background: var(--bg);

    color: var(--text);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}


body,
button,
input,
select,
textarea {
    font-family:
        "Inter",
        Arial,
        sans-serif;
}


img,
svg {
    display: block;

    max-width: 100%;
}


button,
input,
select,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;

    text-decoration: none;
}


ul,
ol {
    margin: 0;
    padding: 0;
}


::selection {
    background: var(--accent);

    color: var(--primary);
}


/* ============================================================
   SECTION 03
   GLOBAL CONTAINER
============================================================ */

.site-container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* ============================================================
   SECTION 04
   SCROLL PROGRESS BAR
============================================================ */

.scroll-progress {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 9999;

    width: 0;
    height: 3px;

    background: var(--accent);

    transition: width 0.08s linear;
}


/* ============================================================
   SECTION 05
   HEADER
============================================================ */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    background:
        rgba(7, 24, 42, 0.97);

    color: var(--white);

    backdrop-filter: blur(18px);

    transition:
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.site-header.is-scrolled {
    background:
        rgba(7, 24, 42, 0.99);

    box-shadow:
        0 10px 35px rgba(7, 24, 42, 0.15);
}


.site-header > div:first-child {
    min-height: 70px;

    padding-top: 9px !important;
    padding-bottom: 9px !important;
}


/* ============================================================
   SECTION 06
   WEBSITE LOGO
============================================================ */

.brand {
    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 0;
}


.brand-mark {
    display: grid;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    place-items: center;

    border-radius: 11px;

    background: var(--accent);

    color: var(--primary);

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        monospace;

    font-size: 0.86rem;

    font-weight: 900;

    box-shadow:
        0 8px 20px
        rgba(32, 214, 232, 0.17);

    transition:
        transform 0.25s ease;
}


.brand:hover .brand-mark {
    transform:
        translateY(-2px)
        rotate(-2deg);
}


.brand > span:last-child {
    display: grid;

    line-height: 1.15;
}


.brand strong {
    color: var(--white);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 0.98rem;

    font-weight: 800;

    letter-spacing: -0.025em;
}


.brand small {
    margin-top: 3px;

    color: #91a2b6;

    font-size: 0.63rem;

    font-weight: 600;
}


/* ============================================================
   SECTION 07
   DESKTOP NAVIGATION
============================================================ */

.nav-link {
    display: inline-flex;

    min-height: 40px;

    align-items: center;

    justify-content: center;

    padding:
        0.56rem 0.75rem;

    border-radius: 10px;

    color: #bec9d7;

    font-size: 0.82rem;

    font-weight: 700;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}


.nav-link:hover {
    transform: translateY(-1px);

    background:
        rgba(255, 255, 255, 0.055);

    color: var(--white);
}


.nav-link.is-active {
    background: var(--accent);

    color: var(--primary);
}


/* ============================================================
   SECTION 08
   HEADER CTA BUTTON
============================================================ */

.header-cta {
    display: inline-flex;

    min-height: 42px;

    align-items: center;

    justify-content: center;

    padding:
        0 16px;

    border-radius: 11px;

    background: var(--accent);

    color: var(--primary);

    font-size: 0.81rem;

    font-weight: 800;

    box-shadow:
        0 8px 20px
        rgba(32, 214, 232, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.header-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 28px
        rgba(32, 214, 232, 0.23);
}


/* ============================================================
   SECTION 09
   MOBILE MENU BUTTON
============================================================ */

.menu-toggle {
    display: grid;

    width: 42px;
    height: 42px;

    place-content: center;

    gap: 4px;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 10px;

    background: transparent;
}


.menu-toggle span {
    width: 19px;
    height: 2px;

    border-radius: 50px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.menu-toggle[aria-expanded="true"]
span:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}


.menu-toggle[aria-expanded="true"]
span:nth-child(2) {
    opacity: 0;
}


.menu-toggle[aria-expanded="true"]
span:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}


/* ============================================================
   SECTION 10
   MOBILE NAVIGATION
============================================================ */

.mobile-menu {
    max-height: 0;

    overflow: hidden;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);

    transition:
        max-height 0.35s ease;
}


.mobile-menu.is-open {
    max-height: 600px;
}


.mobile-menu a {
    display: block;

    padding:
        0.72rem 0;

    color: #c5d0dd;

    font-size: 0.86rem;

    font-weight: 700;
}


.mobile-menu a:hover {
    color: var(--accent);
}


/* ============================================================
   SECTION 11
   HERO MAIN SECTION
============================================================ */

.new-hero {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 18%,
            rgba(32, 214, 232, 0.16),
            transparent 31%
        ),
        #ffffff;

    border-bottom:
        1px solid var(--border);
}


/* GRID BACKGROUND */

.new-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(7, 24, 42, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7, 24, 42, 0.04) 1px,
            transparent 1px
        );

    background-size:
        38px 38px;

    mask-image:
        linear-gradient(
            to bottom,
            black 20%,
            transparent 100%
        );
}


/* ============================================================
   SECTION 12
   HERO GRID
============================================================ */

.new-hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, 0.95fr);

    align-items: center;

    gap: 65px;

    width: min(
        calc(100% - 40px),
        1280px
    );

    min-height: 610px;

    margin-inline: auto;

    padding:
        62px 0;
}


/* ============================================================
   SECTION 13
   HERO LEFT CONTENT
============================================================ */

.new-hero-content {
    max-width: 720px;
}


.new-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        7px 12px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.9);

    color: var(--primary);

    box-shadow: var(--shadow-small);

    font-size: 0.66rem;

    font-weight: 900;

    letter-spacing: 0.085em;

    text-transform: uppercase;
}


.new-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 5px
        var(--accent-soft);
}


/* ============================================================
   SECTION 14
   HERO HEADING
============================================================ */

.new-hero-title {
    max-width: 720px;

    margin:
        23px 0 0;

    color: var(--primary);

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            3rem,
            4.6vw,
            4.6rem
        );

    font-weight: 800;

    letter-spacing: -0.055em;

    line-height: 1.02;
}


.new-hero-title span {
    color: var(--accent-dark);
}


/* ============================================================
   SECTION 15
   HERO DESCRIPTION
============================================================ */

.new-hero-description {
    max-width: 660px;

    margin-top: 22px;

    color: var(--text-soft);

    font-size: 1.01rem;

    line-height: 1.72;
}


.new-hero-description code {
    padding:
        3px 6px;

    border-radius: 6px;

    background:
        rgba(7, 24, 42, 0.055);

    color: var(--accent-dark);

    font-size: 0.91em;
}


/* ============================================================
   SECTION 16
   HERO BUTTONS
============================================================ */

.new-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 11px;

    margin-top: 27px;
}


.new-btn-primary,
.new-btn-secondary {
    display: inline-flex;

    min-height: 46px;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        0 17px;

    border-radius: 11px;

    font-size: 0.82rem;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.new-btn-primary {
    background: var(--primary);

    color: var(--white);

    box-shadow:
        0 12px 28px
        rgba(7, 24, 42, 0.16);
}


.new-btn-primary span {
    color: var(--accent);

    transition:
        transform 0.2s ease;
}


.new-btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 35px
        rgba(7, 24, 42, 0.22);
}


.new-btn-primary:hover span {
    transform: translateX(3px);
}


.new-btn-secondary {
    border:
        1px solid var(--border);

    background: var(--white);

    color: var(--primary);
}


.new-btn-secondary:hover {
    transform: translateY(-3px);

    border-color: var(--accent);
}


/* ============================================================
   SECTION 17
   HERO BENEFITS
============================================================ */

.new-hero-benefits {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    max-width: 660px;

    margin-top: 32px;

    padding-top: 22px;

    border-top:
        1px solid var(--border);
}


.new-hero-benefits > div {
    display: flex;

    align-items: center;

    gap: 9px;
}


.benefit-icon {
    display: grid;

    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    place-items: center;

    border-radius: 8px;

    background: var(--accent-soft);

    color: var(--accent-dark);

    font-size: 0.7rem;

    font-weight: 900;
}


.new-hero-benefits strong {
    display: block;

    color: var(--primary);

    font-size: 0.7rem;
}


.new-hero-benefits small {
    display: block;

    margin-top: 2px;

    color: #8290a0;

    font-size: 0.6rem;
}


/* ============================================================
   SECTION 18
   HERO RIGHT VISUAL WRAPPER
============================================================ */

.hero-visual {
    position: relative;

    display: flex;

    min-height: 455px;

    align-items: center;

    justify-content: center;
}


.hero-visual-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32, 214, 232, 0.22),
            transparent 68%
        );

    filter: blur(5px);
}


/* ============================================================
   SECTION 19
   HERO PERMISSION PREVIEW CARD
============================================================ */

.permission-preview {
    position: relative;

    z-index: 2;

    width: min(
        100%,
        465px
    );

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 21px;

    background: var(--primary);

    color: var(--white);

    box-shadow:
        0 35px 80px
        rgba(7, 24, 42, 0.22);

    transform: rotate(1.2deg);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.permission-preview:hover {
    transform:
        rotate(0)
        translateY(-5px);

    box-shadow:
        0 42px 90px
        rgba(7, 24, 42, 0.27);
}


/* ============================================================
   SECTION 20
   HERO PREVIEW TOPBAR
============================================================ */

.preview-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        13px 17px;

    border-bottom:
        1px solid var(--border-dark);

    background:
        rgba(255, 255, 255, 0.02);
}


.preview-top > div {
    display: flex;

    gap: 5px;
}


.preview-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.24);
}


.preview-label {
    color: #8195ad;

    font-size: 0.6rem;

    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


.preview-content {
    padding: 20px;
}


/* ============================================================
   SECTION 21
   HERO PREVIEW STATUS
============================================================ */

.preview-status {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 21px;
}


.preview-status > div {
    display: flex;

    align-items: center;

    gap: 10px;
}


.status-pulse {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 6px
        var(--accent-soft);

    animation:
        statusPulse 2s infinite;
}


.preview-status small {
    display: block;

    color: #72879f;

    font-size: 0.59rem;
}


.preview-status strong {
    display: block;

    margin-top: 2px;

    color: var(--white);

    font-size: 0.84rem;
}


.safe-chip {
    padding:
        5px 9px;

    border-radius: 999px;

    background: var(--accent-soft);

    color: #6cecf5;

    font-size: 0.6rem;

    font-weight: 800;
}


/* ============================================================
   SECTION 22
   HERO PERMISSION FLOW
============================================================ */

.permission-flow {
    padding: 15px;

    border:
        1px solid var(--border-dark);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.025);
}


.flow-row {
    display: grid;

    grid-template-columns:
        30px 1fr auto;

    align-items: center;

    gap: 11px;
}


.flow-number {
    display: grid;

    width: 30px;
    height: 30px;

    place-items: center;

    border-radius: 8px;

    background:
        rgba(32, 214, 232, 0.08);

    color: #55e5ef;

    font-size: 0.56rem;

    font-weight: 900;
}


.flow-row strong {
    display: block;

    color: #edf4f9;

    font-size: 0.69rem;
}


.flow-row small {
    display: block;

    margin-top: 2px;

    color: #71859d;

    font-size: 0.56rem;
}


.flow-state {
    padding:
        4px 7px;

    border-radius: 999px;

    font-size: 0.54rem;

    font-weight: 800;
}


.flow-state.allowed {
    background:
        rgba(32, 214, 232, 0.1);

    color: #65e9f3;
}


.flow-state.review {
    border:
        1px solid rgba(255, 255, 255, 0.09);

    color: #a8b7c8;
}


.flow-line {
    width: 1px;
    height: 14px;

    margin:
        4px 0
        4px 14px;

    background:
        rgba(32, 214, 232, 0.2);
}


/* ============================================================
   SECTION 23
   HERO COMMAND PREVIEW
============================================================ */

.preview-command {
    position: relative;

    margin-top: 14px;

    overflow: hidden;

    padding:
        13px 15px;

    border-radius: 11px;

    background: #0e2338;
}


.preview-command > span {
    display: block;

    margin-bottom: 7px;

    color: #71869e;

    font-size: 0.54rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.07em;
}


.preview-command code {
    color: #e5f7f8;

    font-size: 0.67rem;
}


.terminal-cursor {
    display: inline-block;

    width: 6px;
    height: 12px;

    margin-left: 5px;

    vertical-align: middle;

    background: var(--accent);

    animation:
        cursorBlink 1s
        steps(2)
        infinite;
}


/* ============================================================
   SECTION 24
   HERO FLOATING CARD
============================================================ */

.hero-floating-card {
    position: absolute;

    right: -10px;
    bottom: 32px;

    z-index: 3;

    display: flex;

    min-width: 200px;

    align-items: center;

    gap: 10px;

    padding:
        11px 13px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.96);

    box-shadow:
        0 18px 42px
        rgba(7, 24, 42, 0.13);

    animation:
        heroFloat
        4s ease-in-out
        infinite;
}


.floating-icon {
    display: grid;

    width: 35px;
    height: 35px;

    place-items: center;

    border-radius: 9px;

    background: var(--accent);

    color: var(--primary);

    font-family: monospace;

    font-weight: 900;
}


.hero-floating-card small {
    display: block;

    color: #7b8998;

    font-size: 0.57rem;
}


.hero-floating-card strong {
    display: block;

    margin-top: 2px;

    color: var(--primary);

    font-size: 0.68rem;
}


/* ============================================================
   SECTION 25
   COMMAND BUILDER V2 MAIN SECTION
============================================================ */

.command-builder-v2 {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 5% 25%,
            rgba(32, 214, 232, 0.085),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #f5f8fa 0%,
            #ffffff 100%
        );

    border-bottom:
        1px solid var(--border);

    scroll-margin-top: 80px;
}


.command-builder-v2::before {
    content: "";

    position: absolute;

    right: -200px;
    bottom: -230px;

    width: 490px;
    height: 490px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32, 214, 232, 0.1),
            transparent 70%
        );

    pointer-events: none;
}


.command-v2-container {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 40px),
        1280px
    );

    margin-inline: auto;

    padding:
        64px 0 72px;
}


/* ============================================================
   SECTION 26
   COMMAND BUILDER INTRO
============================================================ */

.command-v2-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(350px, 0.75fr);

    align-items: end;

    gap: 65px;

    margin-bottom: 32px;
}


.command-v2-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #718095;

    font-size: 0.64rem;

    font-weight: 900;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.command-v2-tag > span {
    width: 23px;
    height: 2px;

    border-radius: 20px;

    background: var(--accent);
}


.command-v2-heading h2 {
    max-width: 690px;

    margin:
        12px 0 0;

    color: var(--primary);

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            2.25rem,
            3.6vw,
            3.45rem
        );

    font-weight: 800;

    letter-spacing: -0.05em;

    line-height: 1.06;
}


.command-v2-heading h2 span {
    color: var(--accent-dark);
}


.command-v2-description > p {
    max-width: 500px;

    color: #617083;

    font-size: 0.89rem;

    line-height: 1.7;
}


/* ============================================================
   SECTION 27
   COMMAND BUILDER SMALL STEPS
============================================================ */

.command-v2-mini-features {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 16px;
}


.command-v2-mini-features > span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        7px 9px;

    border:
        1px solid var(--border);

    border-radius: 8px;

    background: var(--white);

    color: #657286;

    font-size: 0.61rem;

    font-weight: 700;
}


.command-v2-mini-features strong {
    color: var(--accent-dark);

    font-size: 0.56rem;
}


/* ============================================================
   SECTION 28
   COMMAND BUILDER MAIN TOOL
============================================================ */

.command-v2-tool {
    position: relative;

    overflow: hidden;

    max-width: 1160px;

    margin-inline: auto;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 21px;

    background: var(--primary);

    color: var(--white);

    box-shadow: var(--shadow-large);
}


.command-v2-tool::after {
    content: "";

    position: absolute;

    top: -140px;
    right: -120px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32, 214, 232, 0.11),
            transparent 70%
        );

    pointer-events: none;
}


/* ============================================================
   SECTION 29
   COMMAND TOOL HEADER
============================================================ */

.command-v2-top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        19px 23px;

    border-bottom:
        1px solid var(--border-dark);

    background:
        rgba(255, 255, 255, 0.018);
}


.command-v2-top-left {
    display: flex;

    align-items: center;

    gap: 11px;
}


.command-v2-terminal-icon {
    display: grid;

    width: 41px;
    height: 41px;

    flex: 0 0 41px;

    place-items: center;

    border-radius: 10px;

    background: var(--accent);

    color: var(--primary);

    font-family: monospace;

    font-size: 0.78rem;

    font-weight: 900;
}


.command-v2-top-left span {
    display: block;

    color: #7990aa;

    font-size: 0.58rem;

    font-weight: 900;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.command-v2-top-left h3 {
    margin:
        3px 0 0;

    color: var(--white);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.2rem;

    font-weight: 800;

    letter-spacing: -0.025em;
}


/* ============================================================
   SECTION 30
   COMMAND TOOL STATUS
============================================================ */

.command-v2-status {
    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        7px 10px;

    border:
        1px solid
        rgba(32, 214, 232, 0.14);

    border-radius: 10px;

    background:
        rgba(32, 214, 232, 0.07);
}


.command-v2-status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--accent);
}


.command-v2-status small {
    display: block;

    color: #71879f;

    font-size: 0.52rem;
}


.command-v2-status strong {
    display: block;

    margin-top: 1px;

    color: #72edf5;

    font-size: 0.64rem;
}


/* ============================================================
   SECTION 31
   COMMAND TOOL BODY
============================================================ */

.command-v2-body {
    position: relative;

    z-index: 2;

    padding:
        24px 23px 21px;
}


/* ============================================================
   SECTION 32
   COMMAND OPERATING SYSTEM & ENVIRONMENT
============================================================ */

.command-v2-main-options {
    display: grid;

    grid-template-columns:
        minmax(260px, 0.8fr)
        minmax(420px, 1.2fr);

    gap: 17px;
}


.command-v2-option {
    min-width: 0;
}


.command-v2-option-title {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 9px;
}


.command-v2-option-title > span {
    display: grid;

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    place-items: center;

    border-radius: 8px;

    background:
        rgba(32, 214, 232, 0.08);

    color: #55e8f1;

    font-size: 0.54rem;

    font-weight: 900;
}


.command-v2-option-title strong {
    display: block;

    color: #e8eef5;

    font-size: 0.71rem;
}


.command-v2-option-title small {
    display: block;

    margin-top: 1px;

    color: #71849b;

    font-size: 0.55rem;
}


/* ============================================================
   SECTION 33
   COMMAND OS SELECT
============================================================ */

.command-v2-option select {
    width: 100%;

    min-height: 43px;

    padding:
        0 12px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 10px;

    outline: none;

    background:
        rgba(255, 255, 255, 0.055);

    color: var(--white);

    font-size: 0.78rem;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.command-v2-option select:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px
        rgba(32, 214, 232, 0.08);
}


.command-v2-option select option {
    background: var(--white);

    color: var(--primary);
}


/* ============================================================
   SECTION 34
   ENVIRONMENT BUTTONS
============================================================ */

.command-v2-environments {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;
}


.command-v2-environments .choice-tab {
    display: flex;

    min-height: 43px;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding:
        0 8px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.025);

    color: #b9c6d5;

    font-size: 0.69rem;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.environment-symbol {
    color: #7390aa;

    font-family: monospace;

    font-size: 0.64rem;

    font-weight: 800;
}


.command-v2-environments
.choice-tab:hover {
    transform: translateY(-2px);

    border-color:
        rgba(32, 214, 232, 0.55);

    color: var(--white);
}


.command-v2-environments
.choice-tab.is-active {
    border-color: var(--accent);

    background: var(--accent);

    color: var(--primary);

    box-shadow:
        0 8px 20px
        rgba(32, 214, 232, 0.12);
}


.command-v2-environments
.choice-tab.is-active
.environment-symbol {
    color: var(--primary);
}


/* ============================================================
   SECTION 35
   PERMISSION MODE AREA
============================================================ */

.command-v2-mode-section {
    margin-top: 21px;
}


.command-v2-mode-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 8px;
}


.command-v2-mode-heading
.command-v2-option-title {
    margin-bottom: 0;
}


.command-v2-safe-note {
    color: #71879f;

    font-size: 0.58rem;

    font-weight: 700;
}


/* ============================================================
   SECTION 36
   PERMISSION MODE BUTTONS
============================================================ */

.command-v2-modes {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 7px;
}


.command-v2-modes .mode-tab {
    display: grid;

    min-height: 53px;

    place-content: center;

    gap: 2px;

    padding:
        6px 5px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.02);

    color: #bac6d4;

    text-align: center;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.command-v2-modes
.mode-tab strong {
    color: inherit;

    font-size: 0.67rem;

    font-weight: 800;
}


.command-v2-modes
.mode-tab small {
    color: #71849b;

    font-size: 0.51rem;
}


.command-v2-modes
.mode-tab:hover {
    transform: translateY(-2px);

    border-color: var(--accent);
}


.command-v2-modes
.mode-tab.is-active {
    border-color: var(--accent);

    background: var(--accent);

    color: var(--primary);
}


.command-v2-modes
.mode-tab.is-active small {
    color:
        rgba(7, 24, 42, 0.65);
}


/* ============================================================
   SECTION 37
   COMMAND RESULT GRID
============================================================ */

.command-v2-output-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(240px, 0.65fr);

    gap: 12px;

    margin-top: 21px;
}


/* ============================================================
   SECTION 38
   GENERATED COMMAND RESULT
============================================================ */

.command-v2-result {
    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.04);
}


.command-v2-result-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding:
        12px 14px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}


.command-v2-result-top span {
    display: block;

    color: #71879f;

    font-size: 0.54rem;

    font-weight: 900;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


.command-v2-result-top strong {
    display: block;

    margin-top: 2px;

    color: var(--white);

    font-size: 0.8rem;
}


/* ============================================================
   SECTION 39
   COPY COMMAND BUTTON
============================================================ */

.command-v2-copy {
    flex: 0 0 auto;

    min-height: 34px;

    padding:
        0 11px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 8px;

    background: transparent;

    color: var(--white);

    font-size: 0.62rem;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.command-v2-copy:hover {
    transform: translateY(-1px);

    background: var(--accent);

    color: var(--primary);
}


/* ============================================================
   SECTION 40
   GENERATED CODE
============================================================ */

.command-v2-code {
    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        15px 14px 8px;
}


.command-prompt {
    color: var(--accent);

    font-family: monospace;

    font-size: 0.78rem;

    font-weight: 900;
}


.command-v2-code code {
    overflow-wrap: anywhere;

    color: #edf8fa;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        monospace;

    font-size: 0.75rem;

    font-weight: 600;

    line-height: 1.6;
}


.command-v2-result > p {
    margin:
        4px 14px 14px;

    color: #98aabd;

    font-size: 0.69rem;

    line-height: 1.55;
}


/* ============================================================
   SECTION 41
   COMMAND SAFETY GUIDANCE
============================================================ */

.command-v2-safety {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 14px;

    border:
        1px solid rgba(32, 214, 232, 0.2);

    border-radius: 14px;

    background:
        rgba(32, 214, 232, 0.065);

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}


.command-v2-safety-icon {
    display: grid;

    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    place-items: center;

    border-radius: 8px;

    background: var(--accent);

    color: var(--primary);

    font-size: 0.69rem;

    font-weight: 900;
}


.command-v2-safety span {
    display: block;

    color: #6f879e;

    font-size: 0.53rem;

    font-weight: 900;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


.command-v2-safety strong {
    display: block;

    margin-top: 4px;

    color: var(--white);

    font-size: 0.71rem;

    line-height: 1.35;
}


.command-v2-safety p {
    margin-top: 5px;

    color: #94a8ba;

    font-size: 0.64rem;

    line-height: 1.5;
}


.command-v2-safety.is-good-fit {
    border-color:
        rgba(32, 214, 232, 0.38);

    background:
        rgba(32, 214, 232, 0.09);
}


.command-v2-safety.is-high-risk {
    border-color:
        rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.045);
}


/* ============================================================
   SECTION 42
   COMMAND DETAILS CARDS
============================================================ */

.command-v2-details {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 9px;

    margin-top: 11px;
}


.command-v2-detail {
    display: flex;

    min-width: 0;

    align-items: flex-start;

    gap: 9px;

    padding: 12px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.025);
}


.command-v2-detail-icon {
    display: grid;

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    place-items: center;

    border-radius: 7px;

    background:
        rgba(32, 214, 232, 0.08);

    color: #51e7f0;

    font-size: 0.51rem;

    font-weight: 900;
}


.command-v2-detail span {
    display: block;

    margin-bottom: 4px;

    color: #6f849b;

    font-size: 0.51rem;

    font-weight: 900;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}


.command-v2-detail code,
.command-v2-detail strong {
    display: block;

    color: #d9e5ef;

    font-size: 0.62rem;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


.command-v2-detail code {
    font-family:
        ui-monospace,
        monospace;
}


/* ============================================================
   SECTION 43
   COMMAND BUILDER FOOTER
============================================================ */

.command-v2-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 17px;

    padding-top: 15px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}


.command-v2-local {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #7389a1;

    font-size: 0.61rem;
}


.command-v2-local > span {
    display: grid;

    width: 20px;
    height: 20px;

    place-items: center;

    border-radius: 6px;

    background:
        rgba(32, 214, 232, 0.09);

    color: #51e6f0;

    font-weight: 900;
}


.command-v2-reset {
    flex: 0 0 auto;

    min-height: 34px;

    padding:
        0 10px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background: transparent;

    color: #a7b5c5;

    font-size: 0.6rem;

    font-weight: 800;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.command-v2-reset:hover {
    border-color: var(--accent);

    background:
        rgba(32, 214, 232, 0.06);

    color: var(--accent);
}


/* ============================================================
   SECTION 44
   GENERAL SECTION SPACING
============================================================ */

.section-space {
    padding:
        70px 0;
}


main > section.mx-auto.max-w-7xl {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}


main > section.mx-auto.max-w-5xl {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}


section.bg-slate-50 > div {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}


/* ============================================================
   SECTION 45
   GENERAL SECTION HEADINGS
============================================================ */

.section-title {
    color: var(--primary);

    font-family:
        "Manrope",
        sans-serif;

    font-weight: 800;

    letter-spacing: -0.04em;

    line-height: 1.12;
}


main .section-title.text-4xl,
main .section-title.text-5xl {
    font-size:
        clamp(
            2rem,
            3.3vw,
            3rem
        ) !important;
}


.lead {
    color: var(--text-soft);

    line-height: 1.72;
}


/* ============================================================
   SECTION 46
   EYEBROW GLOBAL
============================================================ */

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        6px 10px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background: var(--white);

    color: var(--primary);

    font-size: 0.64rem;

    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    box-shadow: var(--shadow-small);
}


.eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);
}


/* ============================================================
   SECTION 47
   GENERAL CONTENT CARDS
============================================================ */

.content-card,
.feature-card,
.guide-card,
.faq-item,
.callout {
    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    background: var(--white);

    box-shadow: var(--shadow-small);
}


/* ============================================================
   SECTION 48
   GUIDE CARDS
============================================================ */

.guide-card,
.feature-card {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}


.guide-card:hover,
.feature-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(32, 214, 232, 0.5);

    box-shadow:
        var(--shadow-medium);
}


.guide-card.p-6 {
    padding: 21px !important;
}


.guide-card h3 {
    color: var(--primary);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.12rem !important;

    line-height: 1.35;
}


.guide-card p {
    color: var(--text-soft);

    line-height: 1.65 !important;
}


.icon-chip {
    display: grid;

    width: 42px;
    height: 42px;

    place-items: center;

    border-radius: 11px;

    background: var(--primary);

    color: var(--accent);

    font-family: monospace;

    font-weight: 900;
}


.link-arrow {
    color: var(--accent-dark);

    font-size: 0.84rem;

    font-weight: 800;
}


/* ============================================================
   SECTION 49
   BADGES
============================================================ */

.badge {
    display: inline-flex;

    align-items: center;

    padding:
        5px 8px;

    border-radius: 999px;

    background: var(--accent-soft);

    color: var(--accent-dark);

    font-size: 0.62rem;

    font-weight: 800;
}


/* ============================================================
   SECTION 50
   DARK CONTENT BAND
============================================================ */

.band {
    background: var(--primary);

    color: var(--white);
}


.band .section-title {
    color: var(--white);
}


.band .lead {
    color: #b6c2d0;
}


.metric {
    padding: 16px;

    border:
        1px solid var(--border-dark);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.035);
}


.metric strong {
    display: block;

    color: var(--accent);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.25rem;
}


/* ============================================================
   SECTION 51
   PERMISSION COMPARISON TABLE
============================================================ */

.mode-table-wrap {
    overflow-x: auto;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background: var(--white);

    box-shadow: var(--shadow-small);
}


.mode-table {
    width: 100%;

    min-width: 720px;

    border-collapse: collapse;
}


.mode-table th,
.mode-table td {
    padding:
        13px 15px;

    border-bottom:
        1px solid var(--border);

    text-align: left;

    vertical-align: top;
}


.mode-table th {
    background:
        rgba(7, 24, 42, 0.035);

    color: var(--primary);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}


.mode-table td {
    color: #516073;

    font-size: 0.8rem;

    line-height: 1.55;
}


.mode-table tr:last-child td {
    border-bottom: 0;
}


.mode-name {
    color: var(--primary);

    font-weight: 800;
}


/* ============================================================
   SECTION 52
   SAFETY CHECKER
============================================================ */

.checker {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: var(--bg-light);
}


.checker.p-6,
.checker.sm\:p-8 {
    padding: 25px !important;
}


.check-row {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding:
        12px 0;

    border-bottom:
        1px solid var(--border);
}


.check-row:last-child {
    border-bottom: 0;
}


.check-row strong {
    color: var(--primary);

    font-size: 0.83rem;
}


.check-row small {
    color: var(--text-muted);

    font-size: 0.72rem;

    line-height: 1.55 !important;
}


/* ============================================================
   SECTION 53
   TOGGLE SWITCH
============================================================ */

.switch {
    position: relative;

    width: 43px;
    height: 24px;

    flex: 0 0 43px;
}


.switch input {
    position: absolute;

    opacity: 0;
}


.switch span {
    position: absolute;

    inset: 0;

    border-radius: 999px;

    background: #d5dee7;

    cursor: pointer;

    transition:
        background 0.25s ease;
}


.switch span::after {
    content: "";

    position: absolute;

    top: 3px;
    left: 3px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: var(--white);

    box-shadow:
        0 2px 6px
        rgba(7, 24, 42, 0.18);

    transition:
        transform 0.25s ease;
}


.switch input:checked + span {
    background: var(--accent);
}


.switch input:checked + span::after {
    transform:
        translateX(19px);
}


/* ============================================================
   SECTION 54
   SAFETY SCORE RING
============================================================ */

.score-ring {
    position: relative;

    display: grid;

    width: 105px;
    height: 105px;

    place-items: center;

    border-radius: 50%;

    background:
        conic-gradient(
            var(--accent)
            var(--score, 0%),
            rgba(7, 24, 42, 0.08)
            0
        );

    transition:
        background 0.4s ease;
}


.score-ring::after {
    content: "";

    position: absolute;

    width: 78px;
    height: 78px;

    border-radius: 50%;

    background: var(--white);
}


.score-ring strong,
.score-ring span {
    position: relative;

    z-index: 2;
}


/* ============================================================
   SECTION 55
   FAQ
============================================================ */

.faq-item {
    overflow: hidden;

    border-radius: 15px;

    box-shadow: none;
}


.faq-question {
    display: flex;

    width: 100%;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding:
        15px 17px;

    border: 0;

    background: transparent;

    color: var(--primary);

    text-align: left;

    font-size: 0.85rem;

    font-weight: 800;
}


.faq-icon {
    color: var(--accent-dark);

    font-size: 1.2rem;

    transition:
        transform 0.25s ease;
}


.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease;
}


.faq-answer > div {
    padding:
        0 17px 16px;

    color: #59687a;

    font-size: 0.8rem;

    line-height: 1.7;
}


.faq-item.is-open .faq-answer {
    max-height: 350px;
}


.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}


/* ============================================================
   SECTION 56
   CODE BLOCKS
============================================================ */

.code-shell {
    overflow: hidden;

    border-radius: 15px;

    background: var(--primary);

    box-shadow:
        0 15px 35px
        rgba(7, 24, 42, 0.15);
}


.code-topbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0.65rem 0.85rem;

    border-bottom:
        1px solid var(--border-dark);

    color: #b9c4d2;

    font-family: monospace;

    font-size: 0.68rem;

    font-weight: 700;
}


.copy-button {
    padding:
        6px 9px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background: transparent;

    color: var(--white);

    font-size: 0.66rem;
}


.copy-button:hover {
    background: var(--accent);

    color: var(--primary);
}


.code-shell pre {
    overflow-x: auto;

    margin: 0;

    padding: 15px;

    color: #edf4f7;

    font-family: monospace;

    font-size: 0.77rem;

    line-height: 1.7;
}


/* ============================================================
   SECTION 57
   ARTICLE CONTENT TYPOGRAPHY
============================================================ */

.prose-lite {
    color: #536174;
}


.prose-lite p {
    margin:
        0.9rem 0;

    line-height: 1.78;
}


.prose-lite h2 {
    margin:
        2rem 0
        0.75rem;

    color: var(--primary);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.65rem;

    font-weight: 800;

    letter-spacing: -0.035em;

    line-height: 1.25;
}


.prose-lite h3 {
    margin:
        1.5rem 0
        0.6rem;

    color: var(--primary);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.15rem;

    font-weight: 800;

    line-height: 1.35;
}


.prose-lite ul,
.prose-lite ol {
    margin:
        0.9rem 0;

    padding-left: 1.3rem;
}


.prose-lite ul {
    list-style: disc;
}


.prose-lite ol {
    list-style: decimal;
}


.prose-lite li {
    margin:
        0.45rem 0;

    line-height: 1.7;
}


.prose-lite a {
    color: var(--accent-dark);

    font-weight: 700;

    text-decoration: underline;

    text-underline-offset: 3px;
}


/* ============================================================
   SECTION 58
   INFO / WARNING CALLOUTS
============================================================ */

.callout {
    padding:
        14px 16px;

    border-left:
        4px solid var(--accent);

    background: #f7fbfc;
}


.warning {
    border-left:
        4px solid var(--primary);

    background: #f3f6f9;
}


/* ============================================================
   SECTION 59
   GUIDES SEARCH
============================================================ */

.search-box {
    position: relative;
}


.search-box input {
    width: 100%;

    min-height: 44px;

    padding:
        0 15px
        0 43px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    outline: none;

    background: var(--white);

    color: var(--primary);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.search-box input:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 4px
        var(--accent-soft);
}


.search-box svg {
    position: absolute;

    top: 50%;
    left: 15px;

    transform:
        translateY(-50%);

    color: #7b8798;
}


/* ============================================================
   SECTION 60
   GENERAL FORMS
============================================================ */

input,
textarea,
select {
    width: 100%;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background: var(--white);

    padding:
        0.72rem 0.84rem;

    outline: none;

    color: var(--primary);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 4px
        var(--accent-soft);
}


.form-label {
    display: block;

    margin-bottom: 6px;

    color: var(--primary);

    font-size: 0.78rem;

    font-weight: 800;
}


textarea {
    min-height: 140px;

    resize: vertical;
}


/* ============================================================
   SECTION 61
   FORM SUCCESS / ERROR
============================================================ */

.notice-success {
    padding:
        12px 14px;

    border:
        1px solid
        rgba(32, 214, 232, 0.4);

    border-radius: 11px;

    background: var(--accent-soft);

    color: #075f68;
}


.notice-error {
    padding:
        12px 14px;

    border:
        1px solid
        rgba(7, 24, 42, 0.18);

    border-radius: 11px;

    background:
        rgba(7, 24, 42, 0.045);

    color: var(--primary);
}


/* ============================================================
   SECTION 62
   FOOTER
============================================================ */

.site-footer {
    background: var(--primary);

    color: var(--white);

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.site-footer > div {
    padding-top: 48px !important;
    padding-bottom: 32px !important;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1rem;

    font-weight: 800;
}


.footer-title {
    color: var(--white);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 0.83rem;

    font-weight: 800;
}


.footer-links {
    display: grid;

    gap: 9px;

    margin-top: 14px;

    color: #aebaca;

    font-size: 0.79rem;
}


.footer-links a {
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-links a:hover {
    transform: translateX(3px);

    color: var(--accent);
}


/* ============================================================
   SECTION 63
   REVEAL SCROLL ANIMATION
============================================================ */

.reveal {
    opacity: 0;

    transform:
        translateY(17px);

    transition:
        opacity 0.6s ease,
        transform 0.6s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        );
}


.reveal.is-visible {
    opacity: 1;

    transform: none;
}


/* ============================================================
   SECTION 64
   PULSE DOT
============================================================ */

.pulse-dot {
    animation:
        pulseDot
        2s ease-out
        infinite;
}


@keyframes pulseDot {

    0% {
        box-shadow:
            0 0 0 0
            rgba(32, 214, 232, 0.35);
    }

    70% {
        box-shadow:
            0 0 0 8px
            rgba(32, 214, 232, 0);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(32, 214, 232, 0);
    }

}


/* ============================================================
   SECTION 65
   HERO FLOAT ANIMATION
============================================================ */

@keyframes heroFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }

}


/* ============================================================
   SECTION 66
   HERO STATUS ANIMATION
============================================================ */

@keyframes statusPulse {

    0% {
        box-shadow:
            0 0 0 0
            rgba(32, 214, 232, 0.28);
    }

    70% {
        box-shadow:
            0 0 0 9px
            rgba(32, 214, 232, 0);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(32, 214, 232, 0);
    }

}


/* ============================================================
   SECTION 67
   TERMINAL CURSOR ANIMATION
============================================================ */

@keyframes cursorBlink {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }

}


/* ============================================================
   SECTION 68
   TABLET RESPONSIVE
   1024px
============================================================ */

@media (max-width: 1024px) {

    .new-hero-grid {
        grid-template-columns:
            1fr 0.85fr;

        gap: 35px;

        min-height: 570px;

        padding:
            55px 0;
    }


    .new-hero-title {
        font-size:
            clamp(
                2.7rem,
                6vw,
                4rem
            );
    }


    .permission-preview {
        max-width: 420px;
    }


    .hero-floating-card {
        right: 0;
    }


    .command-v2-intro {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .command-v2-description > p {
        max-width: 680px;
    }


    .command-v2-main-options {
        grid-template-columns: 1fr;
    }


    .command-v2-modes {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .command-v2-output-grid {
        grid-template-columns: 1fr;
    }


    .command-v2-details {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .command-v2-detail:last-child {
        grid-column:
            1 / -1;
    }

}


/* ============================================================
   SECTION 69
   MOBILE / TABLET RESPONSIVE
   850px
============================================================ */

@media (max-width: 850px) {

    .new-hero-grid {
        grid-template-columns: 1fr;

        min-height: auto;

        gap: 42px;

        padding:
            50px 0 62px;
    }


    .new-hero-content {
        max-width: 720px;
    }


    .hero-visual {
        min-height: auto;
    }


    .permission-preview {
        width:
            min(100%, 550px);

        transform: none;
    }


    .hero-floating-card {
        right: 3%;

        bottom: -15px;
    }

}


/* ============================================================
   SECTION 70
   MOBILE RESPONSIVE
   768px
============================================================ */

@media (max-width: 768px) {

    html {
        scroll-padding-top: 72px;
    }


    .site-header > div:first-child {
        min-height: 64px;
    }


    .brand-mark {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }


    .command-v2-container {
        padding:
            52px 0;
    }


    main > section.mx-auto.max-w-7xl,
    main > section.mx-auto.max-w-5xl {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }


    section.bg-slate-50 > div {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }


    .checker.p-6,
    .checker.sm\:p-8 {
        padding: 20px !important;
    }

}


/* ============================================================
   SECTION 71
   SMALL MOBILE RESPONSIVE
   650px
============================================================ */

@media (max-width: 650px) {

    .new-hero-grid,
    .command-v2-container {
        width:
            calc(100% - 28px);
    }


    .new-hero-grid {
        padding:
            42px 0 55px;
    }


    .new-hero-title {
        font-size:
            clamp(
                2.35rem,
                11vw,
                3.15rem
            );

        letter-spacing: -0.05em;
    }


    .new-hero-description {
        margin-top: 18px;

        font-size: 0.92rem;
    }


    .new-hero-actions {
        display: grid;
    }


    .new-btn-primary,
    .new-btn-secondary {
        width: 100%;
    }


    .new-hero-benefits {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .permission-preview {
        border-radius: 17px;
    }


    .preview-content {
        padding: 16px;
    }


    .flow-row {
        grid-template-columns:
            29px 1fr;
    }


    .flow-state {
        display: none;
    }


    .hero-floating-card {
        position: relative;

        right: auto;
        bottom: auto;

        width: fit-content;

        margin:
            -14px auto 0;
    }


    .command-v2-heading h2 {
        font-size: 2.2rem;
    }


    .command-v2-mini-features {
        display: grid;

        grid-template-columns: 1fr;
    }


    .command-v2-top {
        align-items: flex-start;

        flex-direction: column;

        padding: 17px;
    }


    .command-v2-status {
        width: 100%;
    }


    .command-v2-body {
        padding:
            18px 17px;
    }


    .command-v2-environments {
        grid-template-columns: 1fr;
    }


    .command-v2-mode-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    .command-v2-modes {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .command-v2-details {
        grid-template-columns: 1fr;
    }


    .command-v2-detail:last-child {
        grid-column: auto;
    }


    .command-v2-footer {
        align-items: flex-start;

        flex-direction: column;
    }


    .command-v2-reset {
        width: 100%;
    }

}


/* ============================================================
   SECTION 72
   VERY SMALL MOBILE
   480px
============================================================ */

@media (max-width: 480px) {

    .brand small {
        display: none;
    }


    .brand strong {
        font-size: 0.89rem;
    }


    .new-hero-title {
        font-size: 2.3rem;
    }


    .new-eyebrow {
        font-size: 0.57rem;
    }


    .command-v2-heading h2 {
        font-size: 2rem;
    }


    .command-v2-result-top {
        align-items: flex-start;

        flex-direction: column;
    }


    .command-v2-copy {
        width: 100%;
    }


    .command-v2-tool {
        border-radius: 16px;
    }


    .command-v2-top-left h3 {
        font-size: 1.08rem;
    }


    .mode-table {
        min-width: 650px;
    }

}


/* ============================================================
   SECTION 73
   ACCESSIBILITY / REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation: none !important;

        transition-duration: 0.01ms !important;
    }


    .reveal {
        opacity: 1;

        transform: none;
    }


    .permission-preview {
        transform: none;
    }

}






/* ============================================================
   SECTION
   RESOURCE HUB / WHAT THIS SITE IS ABOUT
============================================================ */

.resource-hub-section {
    position: relative;

    overflow: hidden;

    padding:
        78px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fafc 100%
        );

    border-top:
        1px solid
        rgba(7, 24, 42, 0.06);

    border-bottom:
        1px solid
        rgba(7, 24, 42, 0.07);
}


/* background glow */

.resource-hub-section::before {
    content: "";

    position: absolute;

    left: -240px;
    top: 20%;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32, 214, 232, 0.10),
            transparent 70%
        );

    pointer-events: none;
}


/* ============================================================
   RESOURCE HUB CONTAINER
============================================================ */

.resource-hub-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(350px, 0.82fr)
        minmax(600px, 1.18fr);

    align-items: start;

    gap: 70px;

    width: min(
        calc(100% - 40px),
        1280px
    );

    margin-inline: auto;
}


/* ============================================================
   RESOURCE HUB LEFT SIDE
============================================================ */

.resource-hub-intro {
    position: sticky;

    top: 105px;
}


.resource-hub-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        7px 11px;

    border:
        1px solid
        rgba(7, 24, 42, 0.10);

    border-radius: 999px;

    background: #ffffff;

    color: #07182a;

    box-shadow:
        0 7px 22px
        rgba(7, 24, 42, 0.05);

    font-size: 0.63rem;

    font-weight: 900;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.resource-hub-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #20d6e8;

    box-shadow:
        0 0 0 4px
        rgba(32, 214, 232, 0.10);
}


/* ============================================================
   RESOURCE HUB HEADING
============================================================ */

.resource-hub-title {
    max-width: 560px;

    margin:
        20px 0 0;

    color: #07182a;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            2.6rem,
            3.8vw,
            3.9rem
        );

    font-weight: 800;

    letter-spacing: -0.052em;

    line-height: 1.04;
}


.resource-hub-title span {
    display: block;

    color: #079aaa;
}


/* ============================================================
   RESOURCE HUB DESCRIPTION
============================================================ */

.resource-hub-description {
    max-width: 540px;

    margin-top: 21px;

    color: #5c6a7c;

    font-size: 0.94rem;

    line-height: 1.75;
}


/* ============================================================
   RESOURCE LEARNING PATH
============================================================ */

.resource-path {
    max-width: 520px;

    margin-top: 30px;

    padding:
        20px;

    border:
        1px solid
        rgba(7, 24, 42, 0.08);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.72);

    box-shadow:
        0 12px 35px
        rgba(7, 24, 42, 0.05);
}


.resource-path-item {
    display: grid;

    grid-template-columns:
        36px 1fr;

    align-items: start;

    gap: 11px;
}


.resource-path-number {
    display: grid;

    width: 34px;
    height: 34px;

    place-items: center;

    border-radius: 9px;

    background: #07182a;

    color: #20d6e8;

    font-size: 0.59rem;

    font-weight: 900;
}


.resource-path-item strong {
    display: block;

    color: #07182a;

    font-size: 0.78rem;

    font-weight: 800;
}


.resource-path-item p {
    max-width: 390px;

    margin-top: 4px;

    color: #718095;

    font-size: 0.7rem;

    line-height: 1.55;
}


.resource-path-line {
    width: 1px;
    height: 18px;

    margin:
        5px 0
        5px 16px;

    background:
        linear-gradient(
            #20d6e8,
            rgba(32, 214, 232, 0.15)
        );
}


/* ============================================================
   RESOURCE MAIN LINK
============================================================ */

.resource-hub-main-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 24px;

    color: #07182a;

    font-size: 0.76rem;

    font-weight: 800;
}


.resource-hub-main-link span {
    display: grid;

    width: 29px;
    height: 29px;

    place-items: center;

    border-radius: 8px;

    background: #20d6e8;

    color: #07182a;

    transition:
        transform 0.25s ease;
}


.resource-hub-main-link:hover span {
    transform:
        translateX(4px);
}


/* ============================================================
   RESOURCE CARDS GRID
============================================================ */

.resource-hub-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}


/* ============================================================
   RESOURCE CARD
============================================================ */

.resource-hub-card {
    position: relative;

    display: flex;

    min-height: 280px;

    flex-direction: column;

    overflow: hidden;

    padding: 23px;

    border:
        1px solid
        rgba(7, 24, 42, 0.09);

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 8px 28px
        rgba(7, 24, 42, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* accent top line */

.resource-hub-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 22px;

    width: 0;
    height: 3px;

    border-radius:
        0 0 10px 10px;

    background: #20d6e8;

    transition:
        width 0.3s ease;
}


.resource-hub-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(32, 214, 232, 0.42);

    box-shadow:
        0 18px 45px
        rgba(7, 24, 42, 0.09);
}


.resource-hub-card:hover::before {
    width:
        calc(100% - 44px);
}


/* ============================================================
   RESOURCE CARD TOP
============================================================ */

.resource-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.resource-card-number {
    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;

    border-radius: 10px;

    background: #07182a;

    color: #20d6e8;

    font-family: monospace;

    font-size: 0.62rem;

    font-weight: 900;
}


.resource-card-type {
    padding:
        5px 8px;

    border-radius: 999px;

    background:
        rgba(32, 214, 232, 0.09);

    color: #078e9d;

    font-size: 0.54rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}


/* ============================================================
   RESOURCE CARD ICON
============================================================ */

.resource-card-icon {
    display: flex;

    width: 43px;
    height: 43px;

    align-items: center;

    justify-content: center;

    gap: 4px;

    margin-top: 27px;

    border-radius: 11px;

    background:
        rgba(32, 214, 232, 0.09);
}


/* permission sliders */

.resource-card-icon > span {
    width: 4px;
    height: 20px;

    border-radius: 4px;

    background: #079aaa;
}


.resource-card-icon > span:nth-child(2) {
    height: 28px;
}


.resource-card-icon > span:nth-child(3) {
    height: 14px;
}


/* command icon */

.resource-card-command code {
    color: #079aaa;

    font-family: monospace;

    font-size: 0.85rem;

    font-weight: 900;
}


/* Auto vs YOLO */

.resource-card-split {
    gap: 6px;
}


.resource-card-split span {
    display: grid;

    width: 19px;
    height: 19px;

    place-items: center;

    border-radius: 5px;

    background: #07182a;

    color: #20d6e8;

    font-size: 0.5rem;

    font-weight: 900;
}


.resource-card-split i {
    width: 7px;
    height: 1px;

    background:
        rgba(7, 24, 42, 0.22);
}


/* sandbox icon */

.resource-card-box span {
    width: 22px;
    height: 22px;

    border:
        2px solid #079aaa;

    border-radius: 5px;

    background: transparent;
}


/* ============================================================
   RESOURCE CARD TEXT
============================================================ */

.resource-hub-card h3 {
    margin:
        17px 0 0;

    color: #07182a;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 1.2rem;

    font-weight: 800;

    letter-spacing: -0.025em;
}


.resource-hub-card > p {
    margin-top: 9px;

    color: #627084;

    font-size: 0.78rem;

    line-height: 1.68;
}


.resource-hub-card > p code {
    color: #078e9d;

    font-size: 0.91em;
}


/* ============================================================
   RESOURCE CARD FOOTER
============================================================ */

.resource-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: auto;

    padding-top: 20px;

    color: #078e9d;

    font-size: 0.72rem;

    font-weight: 800;
}


.resource-card-footer strong {
    display: grid;

    width: 29px;
    height: 29px;

    place-items: center;

    border-radius: 8px;

    background:
        rgba(32, 214, 232, 0.10);

    color: #079aaa;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.resource-hub-card:hover
.resource-card-footer strong {
    transform:
        translateX(3px);

    background: #20d6e8;

    color: #07182a;
}


/* ============================================================
   RESOURCE HUB RESPONSIVE - TABLET
============================================================ */

@media (max-width: 1050px) {

    .resource-hub-container {
        grid-template-columns:
            1fr;

        gap: 38px;
    }


    .resource-hub-intro {
        position: static;

        max-width: 760px;
    }


    .resource-hub-title {
        max-width: 700px;
    }


    .resource-hub-description {
        max-width: 680px;
    }


    .resource-path {
        max-width: 680px;
    }

}


/* ============================================================
   RESOURCE HUB RESPONSIVE - MOBILE
============================================================ */

@media (max-width: 700px) {

    .resource-hub-section {
        padding:
            55px 0;
    }


    .resource-hub-container {
        width:
            calc(100% - 28px);
    }


    .resource-hub-title {
        font-size:
            clamp(
                2.3rem,
                10vw,
                3rem
            );
    }


    .resource-hub-grid {
        grid-template-columns:
            1fr;
    }


    .resource-hub-card {
        min-height: 260px;

        padding: 20px;
    }


    .resource-path {
        padding: 17px;
    }

}



/* ============================================================
   CLAUDE LEARNING HUB
============================================================ */

.learning-hub {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 5% 35%,
            rgba(32, 214, 232, 0.09),
            transparent 25%
        ),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.learning-hub::before {
    position: absolute;
    top: 70px;
    right: -120px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(32, 214, 232, 0.12);
    border-radius: 50%;
    content: "";
}

.learning-hub-container {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}


/* SECTION INTRO */

.learning-hub-header {
    margin-bottom: 46px;
}

.learning-hub-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(7, 24, 42, 0.11);
    border-radius: 100px;
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(7, 24, 42, 0.05);
    color: #07182a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.learning-hub-eyebrow > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #20d6e8;
    box-shadow: 0 0 0 5px rgba(32, 214, 232, 0.13);
}

.learning-hub-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    align-items: end;
    gap: 60px;
    margin-top: 24px;
}

.learning-hub-heading-grid h2 {
    max-width: 680px;
    margin: 0;
    color: #07182a;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.6rem, 4.2vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.learning-hub-heading-grid h2 span {
    display: block;
    color: #079aaa;
}

.learning-hub-summary {
    padding-bottom: 5px;
}

.learning-hub-summary p {
    max-width: 540px;
    margin: 0;
    color: #536174;
    font-size: 1rem;
    line-height: 1.8;
}

.learning-hub-all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 21px;
    color: #07182a;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.learning-hub-all-link span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    background: #07182a;
    color: #20d6e8;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.learning-hub-all-link:hover span {
    transform: translateX(4px);
    background: #079aaa;
    color: #ffffff;
}


/* LEARNING STEPS */

.learning-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    margin-bottom: 30px;
    padding: 22px;
    border: 1px solid rgba(7, 24, 42, 0.09);
    border-radius: 20px;
    background: #07182a;
    box-shadow: 0 22px 50px rgba(7, 24, 42, 0.14);
}

.learning-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px;
    min-width: 0;
    padding: 8px;
}

.learning-step-number {
    position: absolute;
    top: -2px;
    right: 3px;
    color: rgba(255, 255, 255, 0.28);
    font-family: "Manrope", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
}

.learning-step-icon {
    display: grid;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(32, 214, 232, 0.19);
    border-radius: 13px;
    background: rgba(32, 214, 232, 0.1);
    color: #20d6e8;
}

.learning-step strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
}

.learning-step p {
    margin: 0;
    color: #aebdcb;
    font-size: 0.76rem;
    line-height: 1.55;
}

.learning-step-arrow {
    color: rgba(32, 214, 232, 0.5);
    font-size: 1.25rem;
}

.icon-lines {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-lines i {
    display: block;
    width: 3px;
    border-radius: 5px;
    background: #20d6e8;
}

.icon-lines i:nth-child(1) {
    height: 13px;
}

.icon-lines i:nth-child(2) {
    height: 22px;
}

.icon-lines i:nth-child(3) {
    height: 17px;
}

.icon-terminal {
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 800;
}

.icon-shield {
    width: 20px;
    height: 23px;
    border: 2px solid #20d6e8;
    border-radius: 10px 10px 12px 12px;
    clip-path: polygon(50% 0, 100% 18%, 90% 75%, 50% 100%, 10% 75%, 0 18%);
}


/* GUIDE CARDS */

.learning-guides-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.learning-guide-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 335px;
    flex-direction: column;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(7, 24, 42, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(7, 24, 42, 0.06);
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.learning-guide-card::before {
    position: absolute;
    top: 0;
    left: 24px;
    width: 55px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background: #20d6e8;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.learning-guide-card:hover {
    border-color: rgba(32, 214, 232, 0.42);
    box-shadow: 0 22px 48px rgba(7, 24, 42, 0.11);
    transform: translateY(-6px);
}

.learning-guide-card:hover::before {
    transform: scaleX(1);
}

.learning-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 28px;
}

.learning-card-icon {
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    border-radius: 13px;
    background: rgba(32, 214, 232, 0.11);
    color: #079aaa;
}

.learning-card-icon code {
    color: #079aaa;
    font-size: 0.85rem;
    font-weight: 800;
}

.learning-card-type {
    padding: 6px 9px;
    border-radius: 100px;
    background: #eefbfd;
    color: #078d9c;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.learning-card-content {
    flex: 1;
}

.learning-card-number {
    display: block;
    margin-bottom: 8px;
    color: #079aaa;
    font-family: "Manrope", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
}

.learning-card-content h3 {
    margin: 0;
    color: #07182a;
    font-family: "Manrope", sans-serif;
    font-size: 1.32rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.learning-card-content p {
    margin: 13px 0 0;
    color: #5b687a;
    font-size: 0.84rem;
    line-height: 1.7;
}

.learning-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(7, 24, 42, 0.08);
    color: #078d9c;
    font-size: 0.78rem;
    font-weight: 800;
}

.learning-card-footer strong {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    background: #e9fafc;
    color: #078d9c;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.learning-guide-card:hover .learning-card-footer strong {
    background: #07182a;
    color: #20d6e8;
    transform: translateX(3px);
}


/* CARD ICONS */

.card-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.card-bars i {
    display: block;
    width: 3px;
    border-radius: 5px;
    background: #079aaa;
}

.card-bars i:nth-child(1) {
    height: 15px;
}

.card-bars i:nth-child(2) {
    height: 23px;
}

.card-bars i:nth-child(3) {
    height: 18px;
}

.card-comparison {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-comparison i {
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 5px;
    background: #07182a;
    color: #20d6e8;
    font-size: 0.56rem;
    font-style: normal;
    font-weight: 800;
}

.card-comparison b {
    width: 8px;
    height: 1px;
    background: #079aaa;
}

.card-sandbox {
    width: 23px;
    height: 23px;
    border: 2px solid #079aaa;
    border-radius: 7px;
    box-shadow: inset 0 0 0 4px rgba(32, 214, 232, 0.08);
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .learning-hub-heading-grid {
        grid-template-columns: 1fr 0.8fr;
        gap: 35px;
    }

    .learning-guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .learning-guide-card {
        min-height: 310px;
    }

}

@media (max-width: 850px) {

    .learning-hub {
        padding: 75px 0;
    }

    .learning-hub-heading-grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 20px;
    }

    .learning-hub-summary p {
        max-width: 680px;
    }

    .learning-steps {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .learning-step-arrow {
        display: none;
    }

    .learning-step {
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        padding: 12px 8px 18px;
    }

    .learning-step:last-child {
        border-bottom: 0;
        padding-bottom: 8px;
    }

}

@media (max-width: 600px) {

    .learning-hub {
        padding: 58px 0;
    }

    .learning-hub-container {
        width: min(100% - 28px, 1280px);
    }

    .learning-hub-heading-grid h2 {
        font-size: clamp(2.25rem, 11vw, 3rem);
        letter-spacing: -0.045em;
    }

    .learning-hub-heading-grid h2 span {
        margin-top: 4px;
    }

    .learning-hub-summary p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .learning-steps {
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 16px;
    }

    .learning-step {
        grid-template-columns: 43px 1fr;
        gap: 12px;
    }

    .learning-step-icon {
        width: 43px;
        height: 43px;
    }

    .learning-guides-grid {
        grid-template-columns: 1fr;
    }

    .learning-guide-card {
        min-height: auto;
        padding: 21px;
    }

    .learning-card-top {
        margin-bottom: 23px;
    }

    .learning-card-content h3 {
        font-size: 1.2rem;
    }

}





/* ============================================================
   SECURITY BOUNDARY SECTION
============================================================ */

.security-boundary {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        linear-gradient(
            120deg,
            #061524 0%,
            #081d31 52%,
            #07182a 100%
        );
}

.security-boundary::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
    content: "";
    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 35%,
            black 75%,
            transparent
        );
}

.security-boundary-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.security-glow-one {
    top: -170px;
    right: 7%;
    width: 420px;
    height: 420px;
    background: rgba(32, 214, 232, 0.08);
}

.security-glow-two {
    bottom: -230px;
    left: -130px;
    width: 450px;
    height: 450px;
    background: rgba(7, 154, 170, 0.07);
}

.security-boundary-container {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(1240px, calc(100% - 40px));
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: 85px;
    margin: 0 auto;
}


/* LEFT CONTENT */

.security-boundary-content {
    max-width: 590px;
}

.security-boundary-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border: 1px solid rgba(32, 214, 232, 0.21);
    border-radius: 100px;
    background: rgba(32, 214, 232, 0.06);
    color: #20d6e8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.security-boundary-eyebrow > span {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #20d6e8;
    box-shadow: 0 0 0 5px rgba(32, 214, 232, 0.09);
}

.security-boundary-content h2 {
    margin: 25px 0 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.6rem, 4vw, 4.3rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.security-boundary-content h2 span {
    display: block;
    margin-top: 5px;
    color: #20d6e8;
}

.security-boundary-content > p {
    max-width: 560px;
    margin: 24px 0 0;
    color: #b6c6d5;
    font-size: 1rem;
    line-height: 1.8;
}

.security-boundary-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin-top: 28px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.security-note-icon {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid rgba(32, 214, 232, 0.22);
    border-radius: 10px;
    background: rgba(32, 214, 232, 0.1);
    color: #20d6e8;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.security-boundary-note strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
}

.security-boundary-note small {
    display: block;
    color: #9eb1c1;
    font-size: 0.75rem;
    line-height: 1.6;
}

.security-boundary-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 27px;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.security-boundary-link span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    background: #20d6e8;
    color: #07182a;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.security-boundary-link:hover span {
    background: #ffffff;
    transform: translateX(5px);
}


/* SECURITY MAP */

.security-map {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 23px;
    background: rgba(11, 32, 51, 0.86);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.29),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
}

.security-map::before {
    position: absolute;
    top: -90px;
    right: -80px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(32, 214, 232, 0.11);
    border-radius: 50%;
    content: "";
}

.security-map-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.security-map-header > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.security-map-pulse {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #20d6e8;
    box-shadow: 0 0 0 6px rgba(32, 214, 232, 0.09);
}

.security-map-pulse::after {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(32, 214, 232, 0.4);
    border-radius: 50%;
    content: "";
    animation: securityPulse 2s ease-out infinite;
}

@keyframes securityPulse {

    0% {
        opacity: 0.8;
        transform: scale(0.7);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }

}

.security-map-header small {
    display: block;
    margin-bottom: 2px;
    color: #788da0;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.security-map-header strong {
    display: block;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
}

.security-map-status {
    padding: 7px 10px;
    border: 1px solid rgba(32, 214, 232, 0.16);
    border-radius: 100px;
    background: rgba(32, 214, 232, 0.08);
    color: #20d6e8;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


/* SECURITY LAYERS */

.security-map-body {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
    padding: 21px;
}

.security-map-line {
    position: absolute;
    top: 48px;
    bottom: 48px;
    left: 51px;
    width: 1px;
    background:
        linear-gradient(
            to bottom,
            #20d6e8,
            rgba(32, 214, 232, 0.09)
        );
}

.security-layer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 23px 43px 1fr;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.security-layer:hover {
    border-color: rgba(32, 214, 232, 0.23);
    background: rgba(32, 214, 232, 0.055);
    transform: translateX(-5px);
}

.security-layer-number {
    color: #668096;
    font-family: "Manrope", sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
}

.security-layer-icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(32, 214, 232, 0.14);
    border-radius: 12px;
    background: rgba(32, 214, 232, 0.08);
    color: #20d6e8;
}

.security-layer-icon code {
    color: #20d6e8;
    font-size: 0.76rem;
    font-weight: 800;
}

.security-layer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.security-layer-heading strong {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 0.87rem;
}

.security-layer-content p {
    margin: 5px 0 0;
    color: #91a5b6;
    font-size: 0.72rem;
    line-height: 1.5;
}

.security-level {
    flex: 0 0 auto;
    padding: 5px 7px;
    border-radius: 100px;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.security-level.controlled {
    background: rgba(92, 211, 150, 0.1);
    color: #6ee7a8;
}

.security-level.guarded {
    background: rgba(32, 214, 232, 0.1);
    color: #20d6e8;
}

.security-level.isolated {
    background: rgba(129, 140, 248, 0.12);
    color: #a5b4fc;
}

.security-level.exposed {
    background: rgba(251, 146, 60, 0.12);
    color: #fdba74;
}


/* SMALL CSS ICONS */

.security-hand-icon {
    position: relative;
    width: 18px;
    height: 21px;
    border: 2px solid #20d6e8;
    border-radius: 5px 5px 8px 8px;
}

.security-hand-icon::before {
    position: absolute;
    top: -5px;
    left: 6px;
    width: 2px;
    height: 11px;
    border-radius: 5px;
    background: #20d6e8;
    content: "";
}

.security-auto-icon {
    display: flex;
    align-items: center;
    gap: 3px;
}

.security-auto-icon i {
    display: block;
    width: 3px;
    border-radius: 4px;
    background: #20d6e8;
}

.security-auto-icon i:nth-child(1) {
    height: 11px;
}

.security-auto-icon i:nth-child(2) {
    height: 21px;
}

.security-auto-icon i:nth-child(3) {
    height: 15px;
}

.security-box-icon {
    width: 21px;
    height: 21px;
    border: 2px solid #20d6e8;
    border-radius: 6px;
    box-shadow:
        inset 0 0 0 3px rgba(32, 214, 232, 0.09);
}


/* MAP FOOTER */

.security-map-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(32, 214, 232, 0.04);
}

.security-map-footer > span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #20d6e8;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.security-map-footer > span i {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #20d6e8;
}

.security-map-footer p {
    margin: 0;
    color: #b4c3d0;
    font-size: 0.69rem;
    line-height: 1.5;
    text-align: right;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .security-boundary-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .security-boundary-content {
        max-width: 750px;
    }

    .security-boundary-content h2 {
        max-width: 720px;
    }

    .security-map {
        max-width: 760px;
    }

}

@media (max-width: 650px) {

    .security-boundary {
        padding: 65px 0;
    }

    .security-boundary-container {
        width: min(100% - 28px, 1240px);
        gap: 38px;
    }

    .security-boundary-content h2 {
        font-size: clamp(2.25rem, 11vw, 3.1rem);
    }

    .security-boundary-content > p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .security-boundary-note {
        padding: 14px;
    }

    .security-map {
        border-radius: 17px;
    }

    .security-map-header,
    .security-map-footer {
        padding: 16px;
    }

    .security-map-body {
        padding: 14px;
    }

    .security-map-line {
        display: none;
    }

    .security-layer {
        grid-template-columns: 39px 1fr;
        gap: 11px;
        padding: 13px;
    }

    .security-layer-number {
        display: none;
    }

    .security-layer-icon {
        width: 39px;
        height: 39px;
    }

    .security-layer-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .security-level {
        padding: 4px 6px;
    }

    .security-map-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .security-map-footer p {
        text-align: left;
    }

}








/* ============================================================
   COMPACT POPULAR GUIDES
============================================================ */

.compact-guides {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(32, 214, 232, 0.1),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f6fafc 100%
        );
}

.compact-guides::before {
    position: absolute;
    top: -170px;
    right: -130px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(32, 214, 232, 0.13);
    border-radius: 50%;
    content: "";
}

.compact-guides::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(32, 214, 232, 0.45),
            transparent
        );
    content: "";
}

.compact-guides-container {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}


/* ============================================================
   SECTION HEADER
============================================================ */

.compact-guides-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 30px;
}

.compact-guides-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 12px;
    border: 1px solid rgba(7, 24, 42, 0.1);
    border-radius: 100px;
    background: #ffffff;
    color: #07182a;
    box-shadow: 0 7px 20px rgba(7, 24, 42, 0.05);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.compact-guides-eyebrow i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20d6e8;
    box-shadow: 0 0 0 4px rgba(32, 214, 232, 0.12);
}

.compact-guides-heading h2 {
    max-width: 750px;
    margin: 18px 0 0;
    color: #07182a;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.25rem, 3.3vw, 3.4rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.compact-guides-heading h2 span {
    color: #079aaa;
}

.compact-guides-header-action {
    padding-bottom: 3px;
}

.compact-guides-header-action p {
    max-width: 410px;
    margin: 0;
    color: #627184;
    font-size: 0.84rem;
    line-height: 1.65;
}

.compact-guides-header-action a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 14px;
    color: #07182a;
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
}

.compact-guides-header-action a span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 8px;
    background: #07182a;
    color: #20d6e8;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.compact-guides-header-action a:hover span {
    background: #079aaa;
    color: #ffffff;
    transform: translateX(4px);
}


/* ============================================================
   CARD GRID
============================================================ */

.compact-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}


/* ============================================================
   GUIDE CARD
============================================================ */

.compact-guide-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 225px;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(7, 24, 42, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 28px rgba(7, 24, 42, 0.055);
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.compact-guide-card::before {
    position: absolute;
    top: 0;
    left: 20px;
    width: 48px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background: #20d6e8;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.compact-guide-card:hover {
    border-color: rgba(32, 214, 232, 0.43);
    box-shadow: 0 18px 38px rgba(7, 24, 42, 0.1);
    transform: translateY(-5px);
}

.compact-guide-card:hover::before {
    transform: scaleX(1);
}


/* FEATURED FIRST CARD */

.compact-guide-featured {
    border-color: #07182a;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(32, 214, 232, 0.14),
            transparent 35%
        ),
        #07182a;
}

.compact-guide-featured::before {
    transform: scaleX(1);
}

.compact-guide-featured .compact-card-number {
    color: rgba(255, 255, 255, 0.16);
}

.compact-guide-featured .compact-card-category {
    color: #20d6e8;
}

.compact-guide-featured .compact-card-content h3 {
    color: #ffffff;
}

.compact-guide-featured .compact-card-content p {
    color: #aebdca;
}

.compact-guide-featured .compact-card-footer {
    border-color: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.compact-guide-featured .compact-card-footer strong {
    background: #20d6e8;
    color: #07182a;
}

.compact-guide-featured:hover {
    border-color: #20d6e8;
    box-shadow: 0 21px 45px rgba(7, 24, 42, 0.2);
}


/* ============================================================
   CARD TOP
============================================================ */

.compact-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.compact-card-icon {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    place-items: center;
    border-radius: 11px;
    background: rgba(32, 214, 232, 0.11);
    color: #079aaa;
    font-family: monospace;
    font-size: 0.72rem;
    font-weight: 800;
}

.compact-guide-featured .compact-card-icon {
    border: 1px solid rgba(32, 214, 232, 0.18);
    background: rgba(32, 214, 232, 0.1);
    color: #20d6e8;
}

.compact-card-number {
    color: rgba(7, 24, 42, 0.1);
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}


/* ============================================================
   CARD CONTENT
============================================================ */

.compact-card-content {
    margin-top: 15px;
}

.compact-card-category {
    display: block;
    color: #078d9c;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.compact-card-content h3 {
    margin: 7px 0 0;
    color: #07182a;
    font-family: "Manrope", sans-serif;
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.32;
    letter-spacing: -0.025em;
}

.compact-card-content p {
    margin: 8px 0 0;
    color: #637184;
    font-size: 0.72rem;
    line-height: 1.55;
}


/* ============================================================
   CARD FOOTER
============================================================ */

.compact-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 13px;
    border-top: 1px solid rgba(7, 24, 42, 0.075);
    color: #078d9c;
    font-size: 0.66rem;
    font-weight: 800;
}

.compact-card-footer strong {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    place-items: center;
    border-radius: 7px;
    background: #eaf9fb;
    color: #078d9c;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.compact-guide-card:hover .compact-card-footer strong {
    background: #07182a;
    color: #20d6e8;
    transform: translateX(3px);
}

.compact-guide-featured:hover .compact-card-footer strong {
    background: #ffffff;
    color: #07182a;
}


/* ============================================================
   COMPARISON ICON
============================================================ */

.compare-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.compare-card-icon i {
    display: grid;
    width: 14px;
    height: 14px;
    place-items: center;
    border-radius: 4px;
    background: #07182a;
    color: #20d6e8;
    font-family: "Inter", sans-serif;
    font-size: 0.48rem;
    font-style: normal;
}

.compare-card-icon b {
    display: block;
    width: 5px;
    height: 1px;
    background: #079aaa;
}


/* ============================================================
   SANDBOX ICON
============================================================ */

.sandbox-card-icon i {
    display: block;
    width: 19px;
    height: 19px;
    border: 2px solid #079aaa;
    border-radius: 5px;
    box-shadow: inset 0 0 0 3px rgba(32, 214, 232, 0.1);
}


/* ============================================================
   WINDOWS ICON
============================================================ */

.windows-card-icon {
    grid-template-columns: repeat(2, 7px);
    grid-template-rows: repeat(2, 7px);
    align-content: center;
    gap: 2px;
}

.windows-card-icon i {
    display: block;
    width: 7px;
    height: 7px;
    background: #079aaa;
}


/* ============================================================
   TROUBLESHOOTING ICON
============================================================ */

.fixes-card-icon i {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid #079aaa;
    border-radius: 50%;
}

.fixes-card-icon i::before {
    position: absolute;
    top: 3px;
    left: 6px;
    color: #079aaa;
    content: "?";
    font-family: "Inter", sans-serif;
    font-size: 0.6rem;
    font-style: normal;
    font-weight: 800;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .compact-guides-header {
        grid-template-columns: 1fr 0.65fr;
        gap: 35px;
    }

    .compact-guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 700px) {

    .compact-guides {
        padding: 58px 0;
    }

    .compact-guides-container {
        width: min(100% - 28px, 1240px);
    }

    .compact-guides-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 17px;
    }

    .compact-guides-heading h2 {
        font-size: clamp(2.1rem, 10vw, 2.8rem);
    }

    .compact-guides-header-action p {
        max-width: 550px;
    }

    .compact-guides-grid {
        grid-template-columns: 1fr;
    }

    .compact-guide-card {
        min-height: 215px;
    }

}










/* ============================================================
   SAFETY COMMAND CENTER SECTION
============================================================ */

.safety-center-section {
    padding: 75px 20px;
    background:
        linear-gradient(
            180deg,
            #f5f8fa 0%,
            #ffffff 100%
        );
}

.safety-center {
    position: relative;
    width: min(1240px, 100%);
    margin: 0 auto;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(32, 214, 232, 0.15);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(32, 214, 232, 0.15),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #061523 0%,
            #081d30 52%,
            #07182a 100%
        );
    box-shadow:
        0 35px 80px rgba(7, 24, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.safety-center-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
    pointer-events: none;
    mask-image:
        linear-gradient(
            to right,
            transparent,
            #000 35%,
            #000
        );
}

.safety-center-glow {
    position: absolute;
    top: -190px;
    right: -100px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(32, 214, 232, 0.12);
    border-radius: 50%;
    pointer-events: none;
}


/* ============================================================
   HEADER
============================================================ */

.safety-center-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.safety-center-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 11px;
    border: 1px solid rgba(32, 214, 232, 0.18);
    border-radius: 100px;
    background: rgba(32, 214, 232, 0.07);
    color: #20d6e8;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.safety-center-eyebrow i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20d6e8;
    box-shadow: 0 0 0 4px rgba(32, 214, 232, 0.1);
}

.safety-center-heading h2 {
    margin: 15px 0 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.safety-center-heading h2 span {
    color: #20d6e8;
}

.safety-center-live {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.safety-live-dot {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
}

.safety-live-dot::after {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(52, 211, 153, 0.45);
    border-radius: 50%;
    content: "";
    animation: safetyLivePulse 2s ease-out infinite;
}

@keyframes safetyLivePulse {

    from {
        opacity: 0.8;
        transform: scale(0.6);
    }

    to {
        opacity: 0;
        transform: scale(1.7);
    }

}

.safety-center-live small {
    display: block;
    margin-bottom: 2px;
    color: #71879a;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.safety-center-live strong {
    display: block;
    color: #ffffff;
    font-size: 0.7rem;
}


/* ============================================================
   DASHBOARD LAYOUT
============================================================ */

.safety-center-dashboard {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    gap: 20px;
    padding-top: 20px;
}


/* ============================================================
   LEFT CHECKLIST
============================================================ */

.safety-checklist {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.03);
}

.safety-checklist-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
}

.safety-checklist-top small {
    display: block;
    margin-bottom: 3px;
    color: #20d6e8;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.safety-checklist-top strong {
    color: #ffffff;
    font-size: 0.76rem;
}

.safety-selected-count {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 100px;
    background: rgba(32, 214, 232, 0.08);
    color: #8299aa;
    font-size: 0.58rem;
    font-weight: 700;
}

.safety-selected-count b {
    color: #20d6e8;
}


/* ============================================================
   CHECKLIST ROW
============================================================ */

.safety-control-row {
    position: relative;
    display: grid;
    grid-template-columns: 25px 42px 1fr 35px;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
    cursor: pointer;
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.safety-control-row:last-child {
    border-bottom: 0;
}

.safety-control-row:hover {
    background: rgba(32, 214, 232, 0.035);
}

.safety-control-row.is-checked {
    background: rgba(32, 214, 232, 0.055);
}

.safety-control-number {
    color: #526b7f;
    font-family: "Manrope", sans-serif;
    font-size: 0.58rem;
    font-weight: 800;
}

.safety-control-text strong {
    display: block;
    color: #ffffff;
    font-size: 0.78rem;
}

.safety-control-text small {
    display: block;
    margin-top: 3px;
    color: #8397a9;
    font-size: 0.64rem;
    line-height: 1.45;
}

.safety-control-state {
    color: #667d90;
    font-size: 0.56rem;
    font-weight: 800;
    text-align: right;
    text-transform: uppercase;
}

.safety-control-row.is-checked .safety-control-state {
    color: #20d6e8;
}


/* ============================================================
   CUSTOM SWITCH
============================================================ */

.safety-dark-switch {
    position: relative;
    display: block;
    width: 42px;
    height: 23px;
}

.safety-dark-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.safety-switch-track {
    position: absolute;
    inset: 0;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 100px;
    background: #193044;
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.safety-switch-track i {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #8297a9;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.safety-dark-switch input:checked + .safety-switch-track {
    border-color: #20d6e8;
    background: rgba(32, 214, 232, 0.18);
}

.safety-dark-switch input:checked + .safety-switch-track i {
    background: #20d6e8;
    transform: translateX(19px);
}


/* ============================================================
   RIGHT RESULT PANEL
============================================================ */

.safety-result-panel {
    display: flex;
    flex-direction: column;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 17px;
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.025)
        );
}

.safety-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #8095a7;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.safety-reset {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    color: #9bafbf;
    font-family: inherit;
    font-size: 0.57rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.safety-reset:hover {
    background: rgba(32, 214, 232, 0.1);
    color: #20d6e8;
}


/* ============================================================
   SCORE RING
============================================================ */

.safety-score-ring {
    --score: 0%;
    --ring-color: #fb7185;

    position: relative;
    display: grid;
    width: 120px;
    height: 120px;
    place-items: center;
    margin: 17px auto;
    border-radius: 50%;
    background:
        conic-gradient(
            var(--ring-color) var(--score),
            rgba(255, 255, 255, 0.08) 0
        );
    transition: background 0.4s ease;
}

.safety-score-ring::before {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    background: #0b2134;
    content: "";
}

.safety-score-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.safety-score-inner strong {
    display: block;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
}

.safety-score-inner small {
    color: #71879a;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ============================================================
   RESULT CONTENT
============================================================ */

.safety-result-content {
    text-align: center;
}

.safety-risk-badge {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 100px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.safety-risk-badge.high {
    background: rgba(251, 113, 133, 0.1);
    color: #fb7185;
}

.safety-risk-badge.medium {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.safety-risk-badge.good {
    background: rgba(32, 214, 232, 0.1);
    color: #20d6e8;
}

.safety-risk-badge.strong {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

.safety-result-content h3 {
    margin: 10px 0 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.safety-result-content p {
    margin: 8px auto 0;
    color: #8ca0b1;
    font-size: 0.68rem;
    line-height: 1.55;
}


/* ============================================================
   MODE RESULT
============================================================ */

.safety-mode-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 16px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
}

.safety-mode-result small {
    display: block;
    margin-bottom: 3px;
    color: #71879a;
    font-size: 0.52rem;
    text-transform: uppercase;
}

.safety-mode-result strong {
    display: block;
    color: #ffffff;
    font-size: 0.72rem;
}

.safety-mode-result > span {
    padding: 5px 7px;
    border-radius: 100px;
    background: rgba(32, 214, 232, 0.09);
    color: #20d6e8;
    font-size: 0.52rem;
    font-weight: 800;
    text-transform: uppercase;
}


/* ============================================================
   PROGRESS
============================================================ */

.safety-progress {
    margin-top: 14px;
}

.safety-progress-heading {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #7890a3;
    font-size: 0.55rem;
}

.safety-progress-heading strong {
    color: #ffffff;
}

.safety-progress-track {
    height: 5px;
    margin-top: 7px;
    overflow: hidden;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
}

.safety-progress-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #079aaa,
            #20d6e8
        );
    transition: width 0.4s ease;
}


/* ============================================================
   BUTTON
============================================================ */

.safety-center-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding: 11px 12px;
    border-radius: 10px;
    background: #20d6e8;
    color: #07182a;
    font-size: 0.68rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.safety-center-button span {
    font-size: 1rem;
}

.safety-center-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .safety-center-dashboard {
        grid-template-columns: 1fr;
    }

    .safety-result-panel {
        min-height: 430px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .safety-center-section {
        padding: 55px 14px;
    }

    .safety-center {
        padding: 19px;
        border-radius: 18px;
    }

    .safety-center-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .safety-center-heading h2 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .safety-center-live {
        display: none;
    }

    .safety-checklist-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .safety-control-row {
        grid-template-columns: 38px 1fr auto;
        gap: 11px;
        padding: 15px;
    }

    .safety-control-number {
        display: none;
    }

    .safety-control-text small {
        font-size: 0.61rem;
    }

    .safety-result-panel {
        min-height: 420px;
    }

}

















/* ============================================================
   PERMISSION MODE EXPLORER SECTION
============================================================ */

.permission-explorer-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(32, 214, 232, 0.09),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f9fb 100%
        );
}

.permission-explorer-section::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(32, 214, 232, 0.5),
            transparent
        );
    content: "";
}

.permission-explorer-container {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}


/* ============================================================
   SECTION HEADER
============================================================ */

.permission-explorer-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.5fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 30px;
}

.permission-explorer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 12px;
    border: 1px solid rgba(7, 24, 42, 0.1);
    border-radius: 100px;
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(7, 24, 42, 0.05);
    color: #07182a;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.permission-explorer-eyebrow i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20d6e8;
    box-shadow: 0 0 0 4px rgba(32, 214, 232, 0.12);
}

.permission-explorer-header h2 {
    max-width: 790px;
    margin: 17px 0 0;
    color: #07182a;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.3rem, 3.6vw, 3.65rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.052em;
}

.permission-explorer-header h2 span {
    color: #079aaa;
}

.permission-explorer-header > p {
    max-width: 430px;
    margin: 0;
    color: #617083;
    font-size: 0.85rem;
    line-height: 1.7;
}


/* ============================================================
   MAIN DARK EXPLORER
============================================================ */

.permission-explorer {
    position: relative;
    display: grid;
    min-height: 585px;
    grid-template-columns: minmax(315px, 0.72fr) minmax(0, 1.28fr);
    overflow: hidden;
    border: 1px solid rgba(32, 214, 232, 0.14);
    border-radius: 23px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(32, 214, 232, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061523 0%,
            #0a2136 100%
        );
    box-shadow:
        0 32px 75px rgba(7, 24, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.permission-explorer-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.024) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.024) 1px,
            transparent 1px
        );
    background-size: 43px 43px;
    pointer-events: none;
    mask-image:
        linear-gradient(
            to right,
            transparent,
            #000
        );
}


/* ============================================================
   LEFT MODE SELECTOR
============================================================ */

.permission-mode-selector {
    position: relative;
    z-index: 2;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 14, 24, 0.35);
}

.permission-selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
    padding: 2px 5px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.permission-selector-header small {
    display: block;
    margin-bottom: 3px;
    color: #20d6e8;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.permission-selector-header strong {
    color: #ffffff;
    font-size: 0.76rem;
}

.permission-selector-header > span {
    padding: 6px 8px;
    border-radius: 100px;
    background: rgba(32, 214, 232, 0.08);
    color: #20d6e8;
    font-size: 0.54rem;
    font-weight: 800;
    text-transform: uppercase;
}


/* ============================================================
   MODE BUTTON
============================================================ */

.permission-mode-button {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: 22px 38px 1fr 25px;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    padding: 11px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: inherit;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.permission-mode-button:last-child {
    margin-bottom: 0;
}

.permission-mode-button:hover {
    border-color: rgba(32, 214, 232, 0.13);
    background: rgba(32, 214, 232, 0.045);
    transform: translateX(3px);
}

.permission-mode-button.is-active {
    border-color: rgba(32, 214, 232, 0.25);
    background:
        linear-gradient(
            90deg,
            rgba(32, 214, 232, 0.13),
            rgba(32, 214, 232, 0.045)
        );
}

.permission-mode-button.is-active::before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: #20d6e8;
    content: "";
}

.permission-mode-number {
    color: #526c80;
    font-size: 0.54rem;
    font-weight: 800;
}

.permission-mode-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    color: #8297a9;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.permission-mode-button.is-active .permission-mode-icon {
    border-color: rgba(32, 214, 232, 0.18);
    background: rgba(32, 214, 232, 0.11);
    color: #20d6e8;
}

.permission-mode-name strong {
    display: block;
    color: #dbe5ec;
    font-size: 0.72rem;
    font-weight: 800;
}

.permission-mode-name small {
    display: block;
    margin-top: 2px;
    color: #71879a;
    font-size: 0.56rem;
}

.permission-mode-button.is-active .permission-mode-name strong {
    color: #ffffff;
}

.permission-mode-arrow {
    color: #526b7e;
    font-size: 0.9rem;
    text-align: center;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.permission-mode-button.is-active .permission-mode-arrow {
    color: #20d6e8;
    transform: translateX(3px);
}


/* ============================================================
   CSS ICONS
============================================================ */

.manual-icon i {
    width: 17px;
    height: 19px;
    border: 2px solid currentColor;
    border-radius: 5px 5px 8px 8px;
}

.edit-icon i {
    position: relative;
    width: 17px;
    height: 17px;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.edit-icon i::after {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 8px;
    height: 2px;
    background: currentColor;
    content: "";
    transform: rotate(-45deg);
}

.plan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.plan-icon i {
    width: 3px;
    border-radius: 3px;
    background: currentColor;
}

.plan-icon i:nth-child(1) {
    height: 10px;
}

.plan-icon i:nth-child(2) {
    height: 19px;
}

.plan-icon i:nth-child(3) {
    height: 14px;
}

.auto-icon i {
    width: 19px;
    height: 19px;
    border: 2px dashed currentColor;
    border-radius: 50%;
}

.rules-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rules-icon i {
    position: relative;
    width: 19px;
    height: 2px;
    background: currentColor;
}

.rules-icon i::before {
    position: absolute;
    top: -2px;
    left: 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.bypass-icon {
    font-family: monospace;
    font-size: 0.68rem;
    font-weight: 800;
}


/* ============================================================
   RIGHT RESULT PANEL
============================================================ */

.permission-mode-result {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 28px;
}

.permission-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.permission-current-mode {
    display: flex;
    align-items: center;
    gap: 14px;
}

.permission-current-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border: 1px solid rgba(32, 214, 232, 0.2);
    border-radius: 13px;
    background: rgba(32, 214, 232, 0.1);
    color: #20d6e8;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.permission-current-mode small {
    display: block;
    margin-bottom: 3px;
    color: #71879a;
    font-size: 0.54rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.permission-current-mode h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}

.permission-risk-badge {
    padding: 7px 10px;
    border-radius: 100px;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.permission-risk-badge.controlled {
    background: rgba(52, 211, 153, 0.1);
    color: #6ee7a8;
}

.permission-risk-badge.moderate {
    background: rgba(32, 214, 232, 0.1);
    color: #20d6e8;
}

.permission-risk-badge.guarded {
    background: rgba(129, 140, 248, 0.12);
    color: #a5b4fc;
}

.permission-risk-badge.high {
    background: rgba(251, 113, 133, 0.11);
    color: #fb7185;
}


/* ============================================================
   RESULT DESCRIPTION
============================================================ */

.permission-result-description {
    padding: 20px 0 17px;
}

.permission-result-description > span {
    display: block;
    margin-bottom: 7px;
    color: #20d6e8;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.permission-result-description p {
    max-width: 700px;
    margin: 0;
    color: #d6e0e8;
    font-size: 0.82rem;
    line-height: 1.65;
}


/* ============================================================
   INFORMATION CARDS
============================================================ */

.permission-result-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.permission-info-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 11px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
}

.permission-info-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: rgba(32, 214, 232, 0.09);
    color: #20d6e8;
    font-size: 0.65rem;
    font-weight: 800;
}

.permission-info-card small {
    display: block;
    margin-bottom: 4px;
    color: #71879a;
    font-size: 0.52rem;
    text-transform: uppercase;
}

.permission-info-card strong {
    display: block;
    color: #d7e1e9;
    font-size: 0.65rem;
    line-height: 1.45;
}


/* ============================================================
   AUTONOMY METER
============================================================ */

.permission-autonomy {
    margin-top: 17px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.025);
}

.permission-autonomy-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.permission-autonomy-heading small {
    display: block;
    margin-bottom: 3px;
    color: #71879a;
    font-size: 0.51rem;
    text-transform: uppercase;
}

.permission-autonomy-heading strong {
    display: block;
    color: #ffffff;
    font-size: 0.7rem;
}

.permission-autonomy-heading > span {
    color: #20d6e8;
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.permission-autonomy-track {
    height: 6px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
}

.permission-autonomy-track span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #079aaa,
            #20d6e8
        );
    box-shadow: 0 0 15px rgba(32, 214, 232, 0.32);
    transition: width 0.4s ease;
}

.permission-autonomy-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    color: #5f7689;
    font-size: 0.49rem;
}


/* ============================================================
   COMMAND BOX
============================================================ */

.permission-command-box {
    margin-top: 17px;
    overflow: hidden;
    border: 1px solid rgba(32, 214, 232, 0.13);
    border-radius: 11px;
    background: rgba(2, 12, 21, 0.58);
}

.permission-command-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #70889a;
    font-size: 0.52rem;
    text-transform: uppercase;
}

.permission-command-header button {
    padding: 5px 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: #a2b3c1;
    font-family: inherit;
    font-size: 0.5rem;
    font-weight: 800;
    cursor: pointer;
}

.permission-command-header button:hover {
    color: #20d6e8;
}

.permission-command-code {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 13px;
}

.permission-command-code > span {
    color: #20d6e8;
    font-family: monospace;
    font-weight: 800;
}

.permission-command-code code {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 0.7rem;
}

.permission-command-code i {
    width: 2px;
    height: 15px;
    flex: 0 0 2px;
    background: #20d6e8;
    animation: permissionCursor 1s steps(1) infinite;
}

@keyframes permissionCursor {

    50% {
        opacity: 0;
    }

}


/* ============================================================
   RESULT FOOTER
============================================================ */

.permission-result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: auto;
    padding-top: 18px;
    color: #70879a;
    font-size: 0.58rem;
}

.permission-result-footer a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    color: #ffffff;
    font-size: 0.61rem;
    font-weight: 800;
    text-decoration: none;
}

.permission-result-footer a strong {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 7px;
    background: #20d6e8;
    color: #07182a;
    transition: transform 0.25s ease;
}

.permission-result-footer a:hover strong {
    transform: translateX(3px);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .permission-explorer-header {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 17px;
    }

    .permission-explorer-header > p {
        max-width: 650px;
    }

    .permission-explorer {
        grid-template-columns: 1fr;
    }

    .permission-mode-selector {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .permission-mode-button {
        grid-template-columns: 22px 38px 1fr 25px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .permission-explorer-section {
        padding: 58px 0;
    }

    .permission-explorer-container {
        width: min(100% - 28px, 1240px);
    }

    .permission-explorer-header h2 {
        font-size: clamp(2.1rem, 10vw, 2.8rem);
    }

    .permission-explorer {
        border-radius: 17px;
    }

    .permission-mode-selector,
    .permission-mode-result {
        padding: 15px;
    }

    .permission-result-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .permission-result-cards {
        grid-template-columns: 1fr;
    }

    .permission-result-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

}