@font-face {
  font-family: 'Alliance No.1';
  
  /* The format hint for OTF is 'opentype' */
  src: url('./fonts/alliance_no_1_regular.otf') format('opentype'); 
  
  font-weight: 400; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: 'Alliance No.2';
  
  /* The format hint for OTF is 'opentype' */
  src: url('./fonts/alliance_no_2_regular.otf') format('opentype'); 
  
  font-weight: 400; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: 'Cascadia Code';
  
  /* The format hint for OTF is 'opentype' */
  src: url('./fonts/CascadiaCode.ttf') format('truetype'); 
  
  font-weight: 400; /* Regular */
  font-style: normal;
}
/* Removed sprite animation - now using JavaScript with individual images */

@keyframes play-sprite_agent_demo {
  /* The animation starts with the background positioned at the very beginning (frame 1) */
  from {
    background-position: 0px 0;
  }

  /* The animation ends by shifting the background all the way to the left to show the last frame */
  to {
    /* 
       This value is the TOTAL WIDTH of your sprite sheet MINUS ONE FRAME.
       Calculation: 600px (Frame Width) *59 (Number of Steps) = 2320px

       Tell browser to end at -2320px 0 (shifting left by 2320px, 0 on the Y axis)
    */
    background-position: -28200px 0;
    
  }
}
/* --- Global Styles --- */
a,
a:link,
a:visited {
  text-decoration: none;
}

/* This is the background of the browser window, visible on screens wider than your max-width */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f0f2f5; /* A light grey for contrast */
}


/* --- Main Container from Figma --- */
.main-container {
  /* Layout from Figma */
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Style from Figma */
  background: #020202;
  color: #ffffff; /* Added so text is visible */

  /* --- RESPONSIVE SIZING --- */
  width: 100%;
  
  /* THIS IS THE CHANGED LINE: Updated for the MacBook 16 width */
  max-width: 1728px;
  
  margin: 0 auto; /* This centers the container on wide screens */

  min-height: 100vh;
}

.banner {
  /* CSS from Figma */
  display: flex;
  height: 56px;
  padding: 4px 64px;
  align-items: center;
  gap: 50px;
  align-self: stretch; /* This makes it full-width inside the parent */

  /* Add a subtle border to distinguish it from the content */
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}
.banner__logo-container {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;

}
.banner__logo-container__logo_image {

width: 23.3px;
height: 23.356px;
}
.banner__logo-container__logo-text {
  width: 207px;
  height: 22px;
  color: #FFF; /* Or use the more common shorthand: #fff */
  font-family: 'Alliance No.1' ;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;

}

.banner__left-aligned {
    display: flex;
    height: 30px;
    padding-top: 4px;
    justify-content: center;
    align-items: flex-end;
    gap: 128px;
}
.banner__right-aligned {
    display: flex;
    padding: 4px 0;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 50px;
    flex: 1 0 0;
    align-self: stretch;
}

.banner__left-aligned__middle-section {
    display: flex;
    align-items: center;
    gap: 32px;
}
.banner__left-aligned__middle-section__page {
    color: #FFF;

    font-family: "Alliance No.1";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 178.571% */
    text-decoration: none;

}
.banner__right-aligned__options {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 32px;
    align-self: stretch;

}
.banner__right-aligned__options__book-demo {
    display: flex;
    padding: 4px 30px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    background: #FFF;
}
.banner__right-aligned__options__book-demo__text {
    color: #000;

font-family: "Alliance No.1";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 178.571% */

}
.banner__right-aligned__options__login {
color: #FFF;

font-family: "Alliance No.1";
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 104.167% */

}
.introduction {
    display: flex;
    width: 100%;
    max-width: 1512px;
    padding: 128px 32px 64px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.introduction__title {
    color: #FFF;
    font-family: "Alliance No.2";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px; /* 80% */
    width: 100%;
    max-width: 1112px;
    text-align: center;
}

.introduction__animation {
    display: flex;
    width: 600px;
    height: 600px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    background: #020202;
    position: relative;
}

.introduction__animation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.introduction__animation img.active {
    display: block;
}

.capabilities {
    display: flex;
    padding: 32px 64px 16px 64px;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    background: #020202;
}
.capabilities__sections {
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #020202;
    flex: 1;
}
.capabilities__sections__section{
    display: flex;
    width: 100%;
    max-width: 547px;
    padding: 8px 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    background: #020202;
}
.capabilities__sections__section__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}
.capabilities__sections__section__line{
    width: 100%;
    max-width: 547px;
    height: 1px;
    background: rgba(255, 255, 255, 0.50);
}

.capabilities__sections__section__content__title{
    align-self: stretch;
    color: #FFF;
    font-family: "Alliance No.2";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 100% */
}
.capabilities__sections__section__content__body{
    align-self: stretch;
    color: #FFF;
    font-family: "Alliance No.1";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
/* Terminal Demo Styles */
.terminal-demo {
    display: flex;
    width: 800px;
    height: 600px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    background: #020202;
}

.terminal-demo__container {
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-demo__header {
    background: #1a1a1a;
    padding: 12px 16px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-demo__title {
    color: #888;
    font-family: 'Cascadia Code', monospace;
    font-size: 14px;
}

.terminal-demo__content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.terminal-demo__steps {
    display: flex;
    flex-direction: column;
    padding: 16px 8px;
    gap: 8px;
    background: #0a0a0a;
    border-right: 1px solid #333;
}

.step-indicator {
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-family: 'Cascadia Code', monospace;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0;
}

.step-indicator:hover {
    color: #fff;
    transform: scale(1.2);
}

.step-indicator.active {
    color: #4CAF50;
}

.terminal-demo__output {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    font-family: 'Cascadia Code', monospace;
    font-size: 14px;
    line-height: 1.4;
    color: #e0e0e0;
}

.terminal-line {
    margin-bottom: 12px;
    word-wrap: break-word;
}

.agent-action {
    color: #4CAF50;
    font-weight: bold;
}

.environment-response {
    color: #FF9800;
    font-weight: bold;
}

.terminal-content {
    color: #e0e0e0;
}

.terminal-cursor {
    display: inline-block;
    background: #4CAF50;
    width: 2px;
    height: 14px;
    margin-left: 2px;
    animation: blink 1s infinite;
}

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

/* Demo Navigation */
.demo-navigation {
    display: flex;
    padding: 0 64px 32px 64px;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    background: #020202;
}

.demo-navigation__spacer {
    flex: 1;
}

.demo-navigation__dots {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 800px;
    max-width: 100%;
}

.demo-dot {
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-family: 'Cascadia Code', monospace;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.demo-dot:hover {
    color: #fff;
    transform: scale(1.2);
}

.demo-dot--active {
    color: #4CAF50;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .banner {
        padding: 4px 16px;
        gap: 20px;
    }
    
    .banner__logo-container__logo-text {
        font-size: 20px;
        width: auto;
    }
    
    .introduction {
        padding: 64px 16px 32px 16px;
    }
    
    .introduction__title {
        font-size: 36px;
        line-height: 40px;
    }
    
    .introduction__animation {
        width: 300px;
        height: 300px;
    }
    
    .capabilities {
        flex-direction: column;
        padding: 32px 16px 16px 16px;
        gap: 32px;
    }
    
    .demo-navigation {
        padding: 0 16px 32px 16px;
    }
    
    .demo-navigation__spacer {
        display: none;
    }
    
    .demo-navigation__dots {
        margin: 0 auto;
        width: 100%;
        justify-content: center;
    }
    
    .capabilities__sections__section__content__title {
        font-size: 20px;
        line-height: 22px;
    }
    
    .capabilities__sections__section__content__body {
        font-size: 14px;
        line-height: 20px;
    }
    
    .terminal-demo {
        width: 100%;
        height: 400px;
    }
    
    .terminal-demo__output {
        font-size: 12px;
        padding: 12px;
    }
    
    .terminal-cursor {
        height: 12px;
    }
    
    .step-indicator {
        width: 12px;
        height: 12px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 4px 12px;
    }
    
    .banner__logo-container__logo-text {
        font-size: 18px;
    }
    
    .introduction {
        padding: 48px 12px 24px 12px;
    }
    
    .introduction__title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .introduction__animation {
        width: 250px;
        height: 250px;
    }
    
    .capabilities {
        padding: 24px 12px 16px 12px;
        gap: 24px;
    }
    
    .capabilities__sections__section__content__title {
        font-size: 18px;
        line-height: 20px;
    }
    
    .capabilities__sections__section__content__body {
        font-size: 13px;
        line-height: 18px;
    }
    
    .terminal-demo {
        width: 100%;
        height: 350px;
    }
    
    .terminal-demo__output {
        font-size: 11px;
        padding: 8px;
    }
    
    .terminal-cursor {
        height: 11px;
    }
    
    .demo-navigation {
        padding: 0 12px 24px 12px;
    }
    
    .demo-navigation__spacer {
        display: none;
    }
    
    .demo-navigation__dots {
        margin: 0 auto;
        width: 100%;
        justify-content: center;
    }
}
