@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    color: #d1d1d1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.CursorSpotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .CursorSpotlight { display: none; }
}

.BackgroundContainer {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    z-index: -1;
    background-color: #050505;
    overflow: hidden;
    pointer-events: none;
}

.DamascusCirclePattern {
    position: absolute;
    top: -40%; 
    left: -40%;
    width: 180%; 
    height: 180%;
    background: repeating-radial-gradient(
        circle at 50% 50%,
        transparent 0,
        transparent 12px,
        rgba(239, 68, 68, 0.12) 13px,
        rgba(239, 68, 68, 0.12) 15px
    );
    filter: url(#DamascusDistortion);
    animation: PatternPan 40s ease-in-out infinite alternate;
}

.GradientOverlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: radial-gradient(circle at 50% 15%, transparent 0%, rgba(5, 5, 5, 0.95) 75%);
}

@keyframes PatternPan {
    0% { transform: translate(0%, 0%) scale(1); }
    100% { transform: translate(-10%, -5%) scale(1.1); }
}

.Reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.Reveal.Active {
    opacity: 1;
    transform: translateY(0);
}

.SlideRightToLeft {
    opacity: 0;
    transform: translateX(80px);
    animation: SlideInFromRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes SlideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navigation Bar */
.NavigationBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.BrandContainer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.BrandLogo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.DeltaIcon {
    color: #ef4444;
    font-size: 1.3rem;
    line-height: 1;
}

.StatusBadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.StatusDot {
    width: 5px;
    height: 5px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: PulseDot 2s infinite;
}

@keyframes PulseDot {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.PrivateTag {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.NavLinks {
    display: flex;
    align-items: center;
    gap: 20px;
}

.NavLinks a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.NavLinks a:hover {
    color: #ffffff;
}

.NavCta {
    background: #ffffff;
    color: #000000 !important;
    padding: 7px 14px;
    border-radius: 4px;
    font-weight: 600 !important;
}

.HeroSection {
    text-align: center;
    padding: 100px 20px 60px 20px;
    position: relative;
    z-index: 2;
}

.HeroTitle {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.HeroSubtitle {
    font-size: 1.05rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-weight: 400;
    padding: 0 10px;
}

.SlotTrackerBox {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 480px;
    margin: 0 auto 35px auto;
    padding: 18px 22px;
    border-radius: 8px;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.SlotHeaderRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.SlotLabel {
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

.SlotCountText {
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.SlotCountText span {
    color: #f87171;
}

.ProgressBarBackground {
    width: 100%;
    height: 7px;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ProgressBarFill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    transition: width 1s ease-out;
}

.ButtonGroup {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.BtnPrimary, .BtnOutline {
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.BtnPrimary {
    background: #ffffff;
    color: #000000;
    border: none;
}

.BtnPrimary:hover {
    background: #e2e2e2;
    transform: translateY(-2px);
}

.BtnOutline {
    background: rgba(10, 10, 10, 0.5);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.BtnOutline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Core Features */
.FeatureGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.FeatureCard {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.FeatureCard:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.3);
}

.CardIcon {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.CardTitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.CardText {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.5;
}

.SectionContainer {
    padding: 70px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.SectionHeader {
    text-align: center;
    margin-bottom: 45px;
}

.SectionTag {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 6px;
}

.SectionTitle {
    font-size: clamp(2rem, 5vw, 2.4rem);
    color: #ffffff;
    font-weight: 700;
}

.StatusGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.StatusItem {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
}

.StatusItem:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.StatusName { 
    color: #fff; 
    font-size: 0.95rem; 
    font-weight: 600; 
}

.StatusState { 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    font-weight: 700; 
    letter-spacing: 1px; 
    display: flex;
    align-items: center;
    gap: 6px;
}

.StatusState::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.StateUndetected { color: #4ade80; }
.StateUndetected::before { background: #4ade80; box-shadow: 0 0 5px #4ade80; }

.ArchGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

@media (max-width: 900px) {
    .ArchGrid { grid-template-columns: 1fr; }
}

.ArchTextContent {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ArchSpecBlock {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 16px;
    transition: border-color 0.3s;
}

.ArchSpecBlock:hover {
    border-color: rgba(239, 68, 68, 0.6);
}

.ArchSpecTitle {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ArchSpecDesc {
    color: #888;
    font-size: 0.85rem;
}

.ConsoleBox {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: #a0a0a0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow-x: auto;
}

.ConsoleHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ConsoleDots {
    display: flex;
    gap: 6px;
}

.ConsoleDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #222;
}

.ConsoleDot:nth-child(1) { background: #ef4444; }
.ConsoleDot:nth-child(2) { background: #eab308; }
.ConsoleDot:nth-child(3) { background: #22c55e; }

.CopyStatus {
    font-size: 0.65rem;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}
.CopyStatus:hover { color: #fff; }

.ConsoleLine {
    margin-bottom: 6px;
    white-space: nowrap;
}

.LineGreen { color: #4ade80; }
.LineBlue { color: #60a5fa; }
.LineRed { color: #f87171; }
.LineMuted { color: #666666; }

/* Slotted Access Tiers */
.PricingGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .PricingGrid { grid-template-columns: 1fr; }
}

.PriceCard {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s;
}

.PriceCard:hover {
    transform: translateY(-4px);
}

.PriceCard.Featured {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(15, 10, 10, 0.75);
}

.FeaturedTag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.PlanName {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 4px;
}

.PlanSubtext {
    color: #777;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.PlanPrice {
    font-size: 2.4rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
}

.PlanPrice span {
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.FeatureList {
    list-style: none;
    margin-bottom: 30px;
}

.FeatureItem {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.FeatureItem::before {
    content: "✓";
    color: #ffffff;
    font-weight: bold;
}

.FaqGrid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.FaqItem {
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s;
    width: 100%;
}

.FaqItem:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.FaqQuestion {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.FaqQuestion::after {
    content: "+";
    font-family: 'JetBrains Mono', monospace;
    color: #ef4444;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.FaqItem.Open .FaqQuestion::after {
    transform: rotate(45deg);
}

.FaqAnswer {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.FaqItem.Open .FaqAnswer {
    max-height: 150px;
    margin-top: 10px;
}

.FooterContainer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

.FooterBrand {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.FooterLinks {
    display: flex;
    gap: 20px;
}

.FooterLinks a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.FooterLinks a:hover {
    color: #ffffff;
}

.FooterCopy {
    color: #555;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .NavigationBar { padding: 15px 20px; }
    .SectionContainer, .FeatureGrid { padding: 50px 20px; }
    .FooterContainer { justify-content: center; flex-direction: column; text-align: center; }
    .NavLinks { flex-wrap: wrap; justify-content: center; gap: 15px; }
}