:root {
  /* Peaxy brand colors (per 2020 brand book) */
  --peaxy-black:    #0A1628;
  --brand-black:    #132D4D;
  --peaxy-blue:     #00456E;
  --electric-blue:  #00A3E0;
  --line-teal:      #34BBC8;
  --line-blue:      #208BD2;
  --grad-top:       #00D0F2;
  --grad-bottom:    #22008A;
  --gray-65:        #8996A6;
  --gray-80:        #BCC3CC;
  --gray-95:        #EDF0F1;
  --white:          #FFFFFF;
  --confidential:   #C00000;

  /* Type */
  --display:  'Archivo', sans-serif;
  --body:     'IBM Plex Sans', sans-serif;
  --mono:     'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--peaxy-black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid;
}

.btn-primary {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: var(--peaxy-black);
}

.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(188, 195, 204, 0.4);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
}

/* ------------------------------------------------------
  
  1. General Layout & Elements
  
------------------------------------------------------ */
/* LAYOUT */
.fixed-width {
    padding: 0 1.5rem;
    margin: 0 auto;
}

section.pt-default {
    padding-top: 2rem;
}

section.pb-default {
	padding-bottom: 2rem;
}

/* ------------------------------------------------------
  
  2. Header & Navigation
  
------------------------------------------------------ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    background: rgba(10, 22, 40, 0.4);
    border-bottom: 1px solid rgba(137, 150, 166, 0.12);
    transition: padding 0.3s ease;
}

#site-header>div:first-child {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.sticky-header {
    position: fixed;
    width: 100%;
    background-color: #ffffff!important;
    top: -120px;
    left: 0;
    right: 0;
    z-index: 2;
    transition: 0.4s top cubic-bezier(.3,.73,.3,.74);
    padding: 1.5rem;
    box-shadow: 0 2px 4px 0 rgb(19 45 77 / 10%);
    height: 5rem;
    display: flex;
    align-items: center
}

.hamburger-menu-sticky {
    position: fixed;
    padding: 1.5rem;
    top: -120px;
    z-index: 3;
    transition: 0.4s top cubic-bezier(.3,.73,.3,.74);
    right: 0;
    cursor: pointer
}

.sticky-header.slideDown,.hamburger-menu-sticky.slideDown {
    top: 0
}

.site-logo svg,.site-logo-sticky svg {
    display: block
}

.site-logo-sticky a,.site-logo a {
    text-decoration: none!important;
    border-bottom: 0
}

#site-navigation a {
    border-bottom: 0
}

.main-navigation-mobile>div ul {
    list-style-type: none;
    text-align: left
}

.main-navigation-mobile>div>ul>li>a {
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    color: rgb(255 255 255 / .7);
    cursor: default;
    text-align: left;
    font-weight: 700
}

.main-navigation-mobile>div {
    padding: 100px 0 100px 24px
}

.main-navigation-mobile>div .sub-menu a {
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    font-weight: 600
}

.main-navigation-mobile>div .sub-menu li {
    margin: 1rem 0
}

.main-navigation-mobile>div>ul>li {
    margin-bottom: 2.5rem
}

.main-navigation-mobile {
    background-image: linear-gradient(125.75deg,#00d0f2 0%,#22008a 70.93%);
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    text-align: center;
    transition: 0.5s ease;
    z-index: 2;
    right: -100vw;
    overflow: scroll
}

.menu-mobile-show {
    right: 0
}

.menu-mobile-hide {
    right: -100vw
}

.menu-right {
    display: none
}

.mobile-get-in-touch-btn a {
    border: 1px solid #ffffff!important;
    padding: .5rem .7rem;
    border-radius: 8px;
    display: block;
    max-width: 345px;
    margin-right: 24px
}

.mobile-online-demo-btn a,.mobile-get-in-touch-btn a {
    font-size: 24px!important;
    color: #fff!important;
    font-weight: 600!important;
    text-transform: none!important
}

.mobile-online-demo-btn a {
    color: #132d4d!important;
    background-color: #fff;
    border: 1px solid #fff;
    padding: .5rem .7rem;
    border-radius: 8px;
    display: block;
    margin-right: 24px;
    max-width: 345px
}

.mobile-online-demo-btn {
    margin-bottom: 1.5rem!important
}

.mobile-online-demo-btn.view-brochure a {
    background-color: #00a3e0;
    border: 1px solid #00a3e0;
    color: #ffffff!important
}

.main-navigation {
    display: none
}

.hamburger-menu {
    z-index: 3;
    position: absolute;
    top: 23px;
    right: 24px;
    width: 32px;
    cursor: pointer;
    height: 31px
}

.bar,.bar:after,.bar:before {
    width: 28px;
    height: 2px
}

.bar {
    position: relative;
    background: #fff;
    transition: all 0ms 300ms;
    transform: translateY(15px)
}

.bar.animate {
    background: #fff0!important
}

.bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    background: #fff;
    transition: bottom 300ms 300ms cubic-bezier(.23,1,.32,1),transform 300ms cubic-bezier(.23,1,.32,1)
}

.bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    background: #fff;
    transition: top 300ms 300ms cubic-bezier(.23,1,.32,1),transform 300ms cubic-bezier(.23,1,.32,1)
}

.bar.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(.23,1,.32,1),transform 300ms 300ms cubic-bezier(.23,1,.32,1);
    background: #ffffff!important
}

.bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(.23,1,.32,1),transform 300ms 300ms cubic-bezier(.23,1,.32,1);
    background: #ffffff!important
}

.hamburger-menu-sticky .bar,.hamburger-menu-sticky .bar::before,.hamburger-menu-sticky .bar::after,.hamburger-menu.dark-theme .bar,.hamburger-menu.dark-theme .bar::before,.hamburger-menu.dark-theme .bar::after {
    background: #00a3e0
}

/* ------------------------------------------------------
  
  Hero Banner
  
------------------------------------------------------ */
section.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-container h1 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(44px, 6.8vw, 98px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--white);
    max-width: 1300px;
    margin-bottom: 32px;
    opacity: 0;
    animation: heroReveal 1.2s ease forwards 0.4s;
}

.hero-container .hero-sub {
    font-family: var(--body);
    font-weight: 300;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.5;
    color: var(--gray-80);
    max-width: 720px;
    margin-bottom: 48px;
    opacity: 0;
    animation: heroReveal 1.2s ease forwards 0.7s;
}

.hero-container .hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
    opacity: 0;
    animation: heroReveal 1.2s ease forwards 0.9s;
}

.hero-container .atmosphere {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at 30% 40%, rgba(0, 163, 224, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(34, 0, 138, 0.12) 0%, transparent 60%), var(--peaxy-black);
}

.hero-container .atmosphere::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 163, 224, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 163, 224, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.hero-container .atmosphere::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--peaxy-black) 90%);
}

.hero-container .scenes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-container .scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    overflow: hidden;
    animation: sceneFade 35s infinite;
    background: linear-gradient(135deg, #0F2647 0%, #061325 60%, #00456E 100%);
}

.hero-container .scene::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.30) 0%, rgba(10, 22, 40, 0.80) 100%), linear-gradient(135deg, rgba(0, 69, 110, 0.25) 0%, transparent 40%, rgba(34, 0, 138, 0.18) 100%), radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(10, 22, 40, 0.45) 80%);
    pointer-events: none;
}

.hero-container .scene-label {
    position: absolute;
    bottom: 140px;
    right: 48px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--electric-blue);
    text-transform: uppercase;
    opacity: 0;
    animation: labelFade 35s infinite;
    z-index: 5;
}

.hero-container  .scene-label::before {
    content: '/ ';
    color: var(--electric-blue);
    margin-right: 4px;
}

.hero-container .scene-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.55) brightness(0.45) contrast(1.08) hue-rotate(-8deg);
    animation: kenBurns 35s ease-in-out infinite alternate;
}

.hero-container .fixed-width {
    position: relative;
    z-index: 10;
	width: 100%;
}


@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes sceneFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  17%  { opacity: 1; }
  20%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes labelFade {
  0%   { opacity: 0; transform: translateY(8px); }
  4%   { opacity: 1; transform: translateY(0); }
  17%  { opacity: 1; transform: translateY(0); }
  20%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; }
}

@keyframes kenBurns {
  0%   { transform: scale(1.02) translate(0%, 0%); }
  100% { transform: scale(1.10) translate(-1.5%, -1%); }
}