/* Global Styles */
@font-face {
  font-family: 'Komet';
  src: url('./komet.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Komet';
  src: url('./komet.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Komet';
  src: url('./komet.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'KometHeavy';
    src: url('assets/komet-heavy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #133596;
    --primary-dark: #0f2a77;
    --primary-light: #2a4cb5;
    --light-bg: #F5F5F5;
    --dark-bg: #0c0e1a;
    --darker-bg: #070914;
    --dark-accent: #141632;
    --text-color: #ffffff;
    --text-muted: #9ca3af;
    --card-bg: #141632;
    --border-color: #222642;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --gradient-bg: linear-gradient(135deg, #133596 0%, #0f2a77 100%);
    --getting-started-card-bg: #0D1726;
    --getting-started-card-border: #1B2D4A;
    --getting-started-step-dot-bg: #2164FF;
    --getting-started-connector-line: #1E3A64;
    --features-card-bg: #0D1726;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Komet', sans-serif;
    font-weight: 200;
    background-image: url('assets/octotoolsbanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: keeps the background fixed while scrolling */
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'KometHeavy', sans-serif !important;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 900;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.primary-btn {
    background: #133596;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-light);
    box-shadow: 0 6px 15px rgba(19, 53, 150, 0.3);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(12, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo img {
    height: 45px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    gap: 10px;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

nav ul {
    display: flex;
    gap: 35px;
}

nav ul li a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--text-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.twitter-link {
    background: rgba(29, 161, 242, 0.1);
    color: #1DA1F2;
    border: 1px solid rgba(29, 161, 242, 0.3);
}

.twitter-link:hover {
    background: rgba(29, 161, 242, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.header-cta .btn {
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-cta .btn i {
    font-size: 0.9rem;
}

.header-cta .secondary-btn i {
    color: #5865F2;
}

.mobile-cta {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 1px;
    transition: all 0.25s ease;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: -1;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 75vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-visual {
    flex: 0 0 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.octopus-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-octopus {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 25px 50px rgba(19, 53, 150, 0.4));
    animation: float 6s ease-in-out infinite;
    transform: translateX(-5%);
    border-radius: 20px;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-5%) translateY(0px);
    }
    50% {
        transform: translateX(-5%) translateY(-15px);
    }
}

.hero-content {
    flex: 0 0 45%;
    text-align: left;
    padding-left: 40px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    font-weight: 600;
    line-height: 1.3;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: none;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.hero .btn.primary-btn {
    background: var(--gradient-bg);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.hero .btn.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(19, 53, 150, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.hero .btn.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero .btn.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Open Source Section */
.open-source {
    background-image: url('assets/banner10.png');
    background-size: 400px;
    background-position: center;
    background-repeat: repeat;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.github-link-container {
    text-align: center;
    margin: 30px 0 50px 0;
}

.github-btn {
    background: linear-gradient(135deg, #333 0%, #24292e 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.github-btn:hover {
    background: linear-gradient(135deg, #444 0%, #333 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.why-open-source {
    margin: 60px 0;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 50px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.why-open-source::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.why-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.why-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.why-header h3 i {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.why-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.closing-statement {
    font-weight: 600;
    color: var(--primary-light) !important;
    font-size: 1.15rem !important;
}

.installation-section {
    margin-top: 80px;
    position: relative;
}

.installation-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.installation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.installation-steps h3,
.trust-indicators h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 700;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.2rem;
}

.prereq-list {
    list-style: none;
    padding: 0;
}

.prereq-list li {
    margin-bottom: 8px;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.prereq-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.prereq-list a {
    color: var(--primary-light);
    text-decoration: underline;
}

.prereq-list a:hover {
    color: var(--primary-color);
}

.code-block {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 15px;
    position: relative;
    font-family: 'Courier New', monospace;
    margin-top: 10px;
}

.code-block code {
    color: #e6e6e6;
    font-size: 0.9rem;
    line-height: 1.5;
    display: block;
    word-break: break-all;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.trust-icon {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-content h4 {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.trust-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.github-stats {
    margin-top: 30px;
    text-align: center;
}

.star-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.star-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    color: #333;
}

/* Features Section */
.features {
    background-image: url('assets/banner20.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: var(--features-card-bg);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    border: 1px solid transparent;
    box-shadow: 0 6px 18px rgba(0,0,0,.45);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, 
                transform 0.5s ease-out, 
                box-shadow 0.3s ease, 
                border-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card.appear {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover,
.feature-card:focus-within {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0,0,0,.5),
                0 0 15px 3px rgba(33, 100, 255, 0.6);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--getting-started-step-dot-bg);
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.25px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255,255,255,.72);
    line-height: 1.4;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.pricing-card {
    flex: 1;
    background-color: #141632;
    border-radius: 12px;
    border: 1px solid #2B2B2B;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price {
    font-family: 'Komet', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00FFB2;
    letter-spacing: 0.05em;
    position: absolute;
    top: 32px;
    right: 32px;
    margin: 0;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #133596;
    color: #FFFFFF;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0 12px 0 12px;
    letter-spacing: 0.05em;
}

.pro-card {
    background-color: #133596;
    border-color: #2B2B2B;
}

.pro-card:hover {
    box-shadow: 0 0 30px #133596aa;
}

.pricing-card h3 {
    font-family: 'Komet', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #F5F5F5;
    margin-top: 40px;
}

.section-subtitle {
    display: block;
    max-width: 560px;
    margin: 24px auto 0 auto;
    font-size: 1.25rem;
    font-weight: 400;
    color: #C7D5E8;
    text-align: center;
}

.price-wrapper {
    position: absolute;
    top: 32px;
    right: 32px;
    text-align: right;
}

.original-price {
    font-family: 'Komet', sans-serif;
    font-size: 1rem;
    text-decoration: line-through;
    color: #FF5C5C;
    opacity: 0.8;
    margin-bottom: 5px;
}

.pro-card .price {
    color: #00FFB2;
}

.card-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 36px;
    max-width: 80%;
    line-height: 1.5;
}

.features-list {
    margin-bottom: 36px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    padding: 0;
    border-bottom: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    font-size: 0.9rem;
    color: #F5F5F5;
}

.feature-check {
    color: #00FFB2;
    flex-shrink: 0;
}

.feature-cross {
    color: #00FFB2;
    flex-shrink: 0;
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
}

.pricing-card .btn {
    width: 100%;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.primary-btn {
    background: #133596;
    color: #FFFFFF;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #1a40a8;
    transform: translateY(-2px);
}

.pro-btn {
    background-color: #FFFFFF;
    color: #133596;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pro-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Pricing */
@media (max-width: 992px) {
    .pricing-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    .features-grid {
        gap: 30px;
    }
}

/* Getting Started Section */
.getting-started {
    position: relative;
    background: none;
}

.getting-started h2 {
    position: relative;
    z-index: 1;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background-color: var(--getting-started-card-bg);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px 5px var(--getting-started-step-dot-bg); /* Soft blue underglow */
}

.step::after {
    content: '';
    position: absolute;
    top: calc(20px + 1rem);
    right: calc(-40px / 2 - 1px + 20px);
    width: calc(40px - 20px);
    height: 1px;
    background: var(--getting-started-connector-line);
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--getting-started-step-dot-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 0 6px rgba(33,100,255,.45);
    animation: pulse 2.4s infinite;
}

.step-icon i {
    font-size: 2rem;
    margin-bottom: 25px;
    color: white;
}

.step h3 {
    position: relative;
    z-index: 1;
}

/* Security Section */
.security {
    background-image: url('assets/banner20.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    margin-bottom: 30px;
}

.security-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

.security-feature {
    text-align: center;
    padding: 0 20px;
    flex: 1;
    min-width: 250px;
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 55px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Comparison Section */
.comparison {
    background-image: url('assets/ChatGPT Image May 18, 2025, 07_56_33 PM.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--dark-accent);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-color);
}

.comparison-table th:first-child {
    width: 200px;
}

.comparison-table tbody tr:hover {
    background-color: rgba(19, 53, 150, 0.08);
}

.comparison-table td {
    background-color: var(--card-bg);
    color: var(--text-muted);
}

.feature-name {
    font-weight: 600;
    color: var(--text-color);
}

.octo-feature {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background-image: url('assets/banner10.png');
    background-size: 400px;
    background-position: center;
    background-repeat: repeat;
    padding: 120px 0;
}

.accordion {
    margin-top: 50px;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.accordion-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px 3px var(--getting-started-step-dot-bg);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
}

.accordion-icon {
    color: var(--primary-color);
    transition: transform 0.25s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 25px 25px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-split {
        gap: 60px;
    }
    
    .hero-content {
        padding-left: 20px;
    }
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .hero-visual {
        flex: none;
        order: 2;
    }

    .hero-content {
        flex: none;
        order: 1;
        padding-left: 0;
        text-align: center;
    }

    .hero-octopus {
        max-width: 400px;
        transform: translateX(0);
    }

    @keyframes float {
        0%, 100% {
            transform: translateX(0) translateY(0px);
        }
        50% {
            transform: translateX(0) translateY(-12px);
        }
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subheadline {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    section h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2.7rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .hero-octopus {
        max-width: 350px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    .section-subtitle {
        font-size: 1.15rem;
    }
    #pricing .pricing-grid {
        margin-top: 48px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    nav.active .mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }
    nav.active .mobile-cta .btn {
        width: 100%;
    }
    nav.active .mobile-cta .header-social {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step::after {
        top: auto;
        bottom: -35px;
        left: 50%;
        right: auto;
        width: 1px;
        height: 20px;
        transform: translateX(-50%);
        background: var(--getting-started-connector-line);
    }
    section h2 {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    
    .installation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-open-source {
        padding: 25px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .features-grid {
        gap: 30px;
    }
    .installation-steps h3,
    .trust-indicators h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-octopus {
        max-width: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        flex-direction: column;
    }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(33,100,255,.6); }
  70% { box-shadow: 0 0 0 10px rgba(33,100,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(33,100,255,0); }
}

/* END of styles for the new custom image carousel which is being removed */

/* Spacing for pricing grid below sub-heading */
#pricing .pricing-grid {
    margin-top: 64px;
} 

/* $OCTO Token Section */
.octo-token {
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    margin-bottom: 80px;
}

.octo-token::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(19, 53, 150, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(19, 53, 150, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.token-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.token-logo {
    margin-bottom: 1rem;
}

.token-symbol {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(19, 53, 150, 0.5));
    animation: tokenFloat 3s ease-in-out infinite;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(19, 53, 150, 0.2) 0%, rgba(19, 53, 150, 0.1) 100%);
    padding: 10px;
}

@keyframes tokenFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.token-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0c4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.token-subheader {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.token-announcement {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.token-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.announcement-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tokenomics-card {
    background: rgba(20, 22, 50, 0.6);
    border: 1px solid rgba(19, 53, 150, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 53, 150, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-8px);
    border-color: rgba(19, 53, 150, 0.4);
    box-shadow: 0 20px 40px rgba(19, 53, 150, 0.2);
}

.tokenomics-card:hover::before {
    opacity: 1;
}

.tokenomics-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(19, 53, 150, 0.3);
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.tokenomics-content ul {
    list-style: none;
    text-align: left;
}

.tokenomics-content li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.tokenomics-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.token-benefits {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(19, 53, 150, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.benefit-highlight h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

/* Responsive Design for Token Section */
@media (max-width: 768px) {
    .token-header h2 {
        font-size: 2.5rem;
    }
    
    .token-subheader {
        font-size: 1.1rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tokenomics-card {
        padding: 2rem;
    }
    
    .token-announcement {
        padding: 2rem;
    }
    
    .announcement-content p {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .address-block {
        flex-direction: column;
        gap: 20px;
    }
    .wallet-address {
        text-align: center;
    }
}