/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #141414;
    --border: #1e1e1e;
    --border-light: #2a2a2a;
    --green: #00ffff;
    --green-dim: #00ccdd;
    --green-dark: #0099aa;
    --green-glow: rgba(0, 255, 255, 0.15);
    --green-glow-strong: rgba(0, 255, 255, 0.3);
    --text: #b0b0b0;
    --text-bright: #e0e0e0;
    --text-dim: #666;
    --white: #fff;
    --red: #ff4444;
    --yellow: #ffcc00;
    --cyan: #00ccff;
    --font: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Source Code Pro', monospace;
    --container: 1100px;
    --radius: 2px;
    --header-h: 60px;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--green-dim);
    text-decoration: underline;
}

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green) !important;
    text-decoration: none !important;
    letter-spacing: -0.5px;
}

.logo::before {
    content: '> ';
    color: var(--text-dim);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-cta {
    display: none;
}

.nav-links li a {
    color: var(--text);
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--green);
    background: var(--green-glow);
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none !important;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--green);
    color: var(--bg) !important;
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--green-dim);
    border-color: var(--green-dim);
    box-shadow: 0 0 20px var(--green-glow);
}

.btn-outline {
    background: transparent;
    color: var(--green) !important;
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--green);
    background: var(--green-glow);
}

.btn-lg {
    padding: 12px 28px;
    font-size: 0.85rem;
}

/* Menu toggle mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--green);
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ==================== HERO (boot sequence) ==================== */
.hero-boot {
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.boot-sequence {
    text-align: left;
    max-width: 440px;
    margin: 0 auto 40px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.boot-line {
    font-size: 0.75rem;
    color: var(--text);
    line-height: 2;
}

.boot-ok {
    color: var(--green);
    font-weight: 700;
    margin-right: 6px;
}

.boot-warn {
    color: var(--yellow);
    font-weight: 700;
    margin-right: 6px;
}

.hero-centered h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-centered h1 span {
    color: var(--green);
    text-shadow: 0 0 40px var(--green-glow);
}

.hero-sub {
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hstat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green);
}

.hstat-label {
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hstat-sep {
    color: var(--border-light);
    font-size: 1.2rem;
    user-select: none;
}

/* Terminal window in hero */
.terminal-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: var(--red); }
.terminal-dots span:nth-child(2) { background: var(--yellow); }
.terminal-dots span:nth-child(3) { background: #00cc00; }

.terminal-title {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-left: 10px;
}

.terminal-body {
    padding: 16px;
    min-height: 300px;
    font-size: 0.8rem;
    line-height: 1.8;
}

.terminal-line {
    margin-bottom: 4px;
}

.terminal-line .prompt {
    color: var(--green);
}

.terminal-line .cmd {
    color: var(--text-bright);
}

.terminal-line .output {
    color: var(--text);
}

.terminal-line .comment {
    color: var(--text-dim);
}

.terminal-line .highlight {
    color: var(--cyan);
}

.terminal-line .warn {
    color: var(--yellow);
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--green);
    animation: blink 1s infinite;
    vertical-align: text-bottom;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ==================== FEATURES (log-style list) ==================== */
.features-log {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--text-bright);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-title h2::before {
    content: '## ';
    color: var(--green);
    font-weight: 400;
}

.section-title p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.log-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.log-entry {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.log-entry:first-child {
    border-top: 1px solid var(--border);
}

.log-entry:hover {
    background: var(--green-glow);
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.log-num {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-weight: 700;
    min-width: 24px;
    padding-top: 2px;
}

.log-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-secondary);
    padding: 4px;
}

.log-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.log-body h3 {
    font-size: 0.9rem;
    color: var(--text-bright);
    margin-bottom: 4px;
    font-weight: 600;
}

.log-body p {
    font-size: 0.78rem;
    color: var(--text);
    line-height: 1.6;
}

/* ==================== DEMO TERMINAL ==================== */
.demo-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.demo-terminal {
    max-width: 640px;
    margin: 0 auto;
}

/* ==================== PRICING (table layout) ==================== */
.pricing-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    min-width: 600px;
}

.pricing-table th,
.pricing-table td {
    padding: 12px 18px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-table thead th {
    background: var(--bg-card);
    font-size: 0.85rem;
    color: var(--text-bright);
    font-weight: 700;
    padding: 18px;
}

.pricing-table thead th span {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green);
    margin-top: 4px;
}

.pricing-table .pt-feature {
    text-align: left;
    color: var(--text-dim);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.pricing-table td:first-child {
    text-align: left;
    color: var(--text);
    font-weight: 500;
}

.pricing-table td {
    color: var(--text);
}

.pricing-table .pt-highlight {
    background: var(--green-glow);
    color: var(--text-bright);
    font-weight: 600;
}

.pricing-table thead .pt-highlight {
    border-left: 1px solid var(--green-dark);
    border-right: 1px solid var(--green-dark);
    position: relative;
}

.pricing-table thead .pt-highlight::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--bg);
    padding: 1px 10px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pt-yes { color: var(--green); font-weight: 700; }
.pt-no { color: var(--text-dim); }

.pt-cta-row td {
    padding: 18px;
    border-bottom: none;
}

.pt-cta-row .btn {
    font-size: 0.72rem;
    padding: 6px 16px;
}

/* ==================== COMING SOON (terminal card) ==================== */
.coming-soon {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.cs-terminal {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.cs-body {
    padding: 20px 24px;
}

.cs-body .terminal-line {
    margin-bottom: 4px;
}

.cs-action {
    margin-top: 24px;
    text-align: center;
}

/* ==================== FOOTER ==================== */
footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.footer-links h4 {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    font-size: 0.8rem;
    color: var(--text);
}

.footer-links ul li a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* ==================== CHAT WIDGET ==================== */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-toggle {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--green);
    color: var(--bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 0 20px var(--green-glow);
}

.chat-toggle svg {
    width: 22px;
    height: 22px;
}

.chat-toggle:hover {
    background: var(--green-dim);
    transform: scale(1.05);
}

.chat-toggle.active {
    background: var(--text-dim);
    box-shadow: none;
}

.chat-window {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 360px;
    height: 480px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chat-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-window-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.chat-avatar {
    width: 32px;
    height: 32px;
    background: var(--green-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.chat-info h4 {
    font-size: 0.8rem;
    color: var(--text-bright);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--text-dim);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
}

.chat-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.welcome-message {
    text-align: center;
    padding: 20px 10px;
}

.welcome-message h5 {
    color: var(--green);
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.welcome-message p {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.quick-action {
    font-family: var(--font);
    font-size: 0.7rem;
    padding: 4px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--green);
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.quick-action:hover {
    border-color: var(--green);
    background: var(--green-glow);
}

.chat-message {
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 0.78rem;
    line-height: 1.5;
    border-radius: var(--radius);
    max-width: 85%;
    word-wrap: break-word;
    position: relative;
}

.chat-message.user {
    background: var(--green-glow);
    color: var(--text-bright);
    margin-left: auto;
    border: 1px solid var(--green-dark);
}

.chat-message.bot {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.chat-message .timestamp {
    display: block;
    font-size: 0.6rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* Typing indicator */
.chat-message.typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 12px 16px;
}

.chat-message.typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: typingDot 1.4s infinite;
}

.chat-message.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-message.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
}

.chat-input-container {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.chat-input {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-bright);
    font-family: var(--font);
    font-size: 0.78rem;
    padding: 8px 10px;
    border-radius: var(--radius);
    outline: none;
}

.chat-input:focus {
    border-color: var(--green);
}

.chat-input::placeholder {
    color: var(--text-dim);
}

.chat-send {
    width: 34px;
    height: 34px;
    background: var(--green);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    transition: all 0.2s;
}

.chat-send:hover {
    background: var(--green-dim);
}

.chat-send svg {
    width: 16px;
    height: 16px;
}

/* ==================== MAIN CHAT (Hero) ==================== */
.main-chat-window {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.main-chat-header {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar-main {
    width: 34px;
    height: 34px;
    background: var(--green-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.chat-header-info h4 {
    font-size: 0.8rem;
    color: var(--text-bright);
}

.chat-status-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--text-dim);
}

.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
}

.main-chat-messages {
    padding: 14px;
    min-height: 260px;
    max-height: 320px;
    overflow-y: auto;
}

.chat-welcome {
    text-align: center;
    padding: 30px 16px;
}

.welcome-icon {
    color: var(--green);
    margin-bottom: 12px;
}

.chat-welcome h3 {
    font-size: 0.95rem;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.chat-welcome p {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.welcome-suggestions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-btn {
    font-family: var(--font);
    font-size: 0.7rem;
    padding: 5px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--green);
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.suggestion-btn:hover {
    border-color: var(--green);
    background: var(--green-glow);
}

.main-chat-message {
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 0.78rem;
    line-height: 1.5;
    border-radius: var(--radius);
    max-width: 85%;
    word-wrap: break-word;
}

.main-chat-message.user {
    background: var(--green-glow);
    color: var(--text-bright);
    margin-left: auto;
    border: 1px solid var(--green-dark);
}

.main-chat-message.bot {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.main-chat-message .msg-time {
    display: block;
    font-size: 0.6rem;
    color: var(--text-dim);
    margin-top: 4px;
}

.main-chat-message.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    width: fit-content;
}

.main-chat-message.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: typingDot 1.4s infinite;
}

.main-chat-message.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.main-chat-message.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

.main-chat-input {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.main-chat-input input {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-bright);
    font-family: var(--font);
    font-size: 0.78rem;
    padding: 8px 10px;
    border-radius: var(--radius);
    outline: none;
}

.main-chat-input input:focus {
    border-color: var(--green);
}

.main-chat-input input::placeholder {
    color: var(--text-dim);
}

.main-chat-send {
    width: 34px;
    height: 34px;
    background: var(--green);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    transition: all 0.2s;
}

.main-chat-send:hover {
    background: var(--green-dim);
}

.main-chat-send svg {
    width: 16px;
    height: 16px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    html { font-size: 14px; }

    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-cta-desktop {
        display: none !important;
    }

    .nav-cta {
        display: block;
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-centered h1 { font-size: 2rem; }

    .hero-stats { gap: 12px; }
    .hstat-sep { display: none; }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .log-entry:hover {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .chat-window {
        width: calc(100vw - 20px);
        right: -10px;
        height: 60vh;
    }

    .boot-sequence {
        max-width: 100%;
    }
}

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