@import url('card_index.css');


html, body { width: 100%; height: 100%; margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; background: #EEE7E3; overflow-x: clip}
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI"; background: #EEE7E3; color: #000; overflow-y: scroll; }
.logo { position: absolute; width: 130px; height: 168px; left: 131px; top: 20px; object-fit: contain; }
/* Header: logo image next to title */
.and-logo img{
  display: block;
  height: 90px; /* 8px top/bottom breathing room */
  width: 250px;                        /* keep aspect ratio */
  object-fit: contain;                /* no cropping */
}

.top-bar nav { flex: 1; display: flex; align-items: center; height: 100%; margin-left: 32px; }
.top-bar nav ul { display: flex; gap: 48px; list-style: none; margin: 0; padding: 0; align-items: center; height: 100%; }
nav ul li { font-family: 'Inter', Arial, sans-serif; font-size: 18px; font-weight: 500; color: #fff; cursor: pointer; text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.2s; height: 100%; display: flex; align-items: center; padding: 0 8px; position: relative; }
nav ul li:hover { color: #007aff; }
.nav-links { position: relative; width: 100%; height: 100%; }
.nav-links ul { display: flex; flex-wrap: wrap; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: absolute; top: 73px; height: 31px; font-family: 'Inter', sans-serif; font-style: normal; font-weight: 500; font-size: 18px; line-height: 22px; color: #FFFFFF; text-decoration: none; text-transform: uppercase; cursor: pointer; border-bottom: 2px solid transparent; padding-bottom: 4px; transition: border-color 0.3s ease; }
.nav-item:hover { border-bottom: 2px solid #fff; }
.nav-line { position: absolute; left: 1135px; top: 70px; width: 1px; height: 22px; background-color: #FFFFFF; }

.cyber-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; border-bottom: 1px solid rgb(0 0 0 / .06); }
.cyber-content { display: flex; flex-direction: column; justify-content: center; padding: 4rem 5rem; max-width: 650px; }
.section-label { display: block; position: relative; padding-bottom: .75rem; margin-bottom: 1.25rem; font-size: .95rem; letter-spacing: .14em; color: var(--subtle); opacity: .95; text-transform: uppercase; }
.section-label::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgb(0 0 0 / .22); }
.cyber-section.reverse .section-label::after { background: linear-gradient(90deg, rgb(0 0 0 / .32), rgb(0 0 0 / .10)); }
.cyber-section:not(.reverse) .section-label::after { background: linear-gradient(90deg, rgb(0 0 0 / .10), rgb(0 0 0 / .32)); }
.section-title { color: var(--ink); }
.section-text { color: var(--muted); }
.cyber-card { display: flex; justify-content: center; align-items: center; }
/* Responsive adjustments */
@media (max-width: 900px) { .cyber-section { grid-template-columns: 1fr; } .cyber-content { padding: 2rem; } }
/* ===== Light theme ===== */ 
:root { --bg: #EEE7E3; /* paper background */ --ink: #0F1115; /* main text */ --muted: #3C434B; /* body copy */ --subtle: #6A7178; /* labels, helper */ --accent-hue: 212; /* cooler blue, still brandy */ --text-glow: hsla(var(--accent-hue) 90% 40% /.18); --shadow-amb: rgb(15 17 21 / .16); /* ambient */ --shadow-key: rgb(15 17 21 / .30); /* key/drop */ }
.cyber-content { position: relative; }
/* left section */ 
.cyber-section.reverse .cyber-content { box-shadow: -56px 0 110px -44px var(--text-glow), /* left-side blue glow */ 0 18px 40px var(--shadow-key); /* bottom drop */ }
/* right section */ 
.cyber-section:not(.reverse) .cyber-content { box-shadow: 56px 0 110px -44px var(--text-glow), /* right-side blue glow */ 0 18px 40px var(--shadow-key); /* bottom drop */ }
/* optional: no glow when stacked on mobile */ 
@media (max-width: 900px) { .cyber-content { box-shadow: none; } }
/* Liquid glass CTA */ 
.cta-btn { --ring: hsla(var(--accent-hue) 95% 45% /.55); --bg1: rgba(255,255,255,.10); --bg2: rgba(255,255,255,.04); position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem 1.4rem; border-radius: .8rem; border: 1px solid transparent; color: #fff; font-weight: 700; letter-spacing: .2px; background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06)) padding-box, linear-gradient(135deg, var(--ring), transparent 60%) border-box; /* glassy interior + iridescent border */ backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%); box-shadow: 0 18px 38px rgb(0 0 0 / .45), 0 0 48px hsla(var(--accent-hue) 80% 65% / .20); cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; isolation: isolate;text-decoration: none; /* for the shine layers */ }
/* liquid “blobs” and moving shine */
.cta-btn::before, .cta-btn::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; }
/* liquid blobs (screen blend over the button) */ 
.cta-btn::before { background: radial-gradient(60% 100% at 10% 20%, rgba(255,255,255,.35), transparent 60%), radial-gradient(40% 80% at 80% 60%, hsla(var(--accent-hue) 100% 70% / .30), transparent 60%); mix-blend-mode: screen; filter: blur(10px); opacity: .6; transition: opacity .3s ease; animation: btn-blobs 5s linear infinite; }
/* diagonal sweep highlight */ 
.cta-btn::after { background: linear-gradient(115deg, rgba(255,255,255,.0) 40%, rgba(255,255,255,.45) 50%, rgba(255,255,255,.0) 60%); transform: translateX(-140%) rotate(0.001deg); filter: blur(6px); opacity: .35; transition: transform .7s ease, opacity .3s ease; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgb(0 0 0 / .45), 0 0 48px hsla(var(--accent-hue) 80% 65% / .20); }
.cta-btn:hover::after{ transform: translateX(140%) rotate(0.001deg); }
.cta-btn:hover::before{ opacity: .8; }
.cta-btn:active { transform: translateY(0); box-shadow: 0 8px 18px rgb(0 0 0 / .5), 0 0 28px hsla(var(--accent-hue) 80% 65% / .22); }
.cta-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px rgb(0 0 0 / .6), 0 0 0 4px var(--ring), 0 12px 28px rgb(0 0 0 / .35); }
/* Card glow/shadow so they float nicely on paper */ 
.scene { box-shadow: 0 24px 48px var(--shadow-amb), /* ambient spread */ 0 16px 40px -10px var(--shadow-key), /* key/drop */ 0 0 90px hsla(var(--accent-hue) 85% 45% /.22); /* existing blue glow */ }
.scene::before { opacity: .28; /* was ~.18 */ box-shadow: 0 35px 60px rgb(15 17 21 / .28); }
@keyframes btn-blobs { 0% { background-position: 0% 0%, 100% 100%; } 50% { background-position: 40% 20%, 60% 80%; } 100% { background-position: 0% 0%, 100% 100%; } }
/* Respect reduced motion */ 
@media (prefers-reduced-motion: reduce) { .cta-btn, .cta-btn::before, .cta-btn::after { transition: none; animation: none; } }


/* === NAV + MOBILE SHEET + FOOTER (glass header) === */
:root { --nav-h: 56px; }
/* Push content below fixed header */
body { padding-top: var(--nav-h); }
/* Header (glass) */
.and-header { position: fixed; top: 0; left: 0; right: 0; z-index: 90; background: rgba(0,0,0,.30); -webkit-backdrop-filter: saturate(150%) blur(10px); backdrop-filter: saturate(150%) blur(10px); border-bottom: 1px solid rgba(255,255,255,.15); }
.and-row { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); padding-right: 0; }
@media (min-width: 768px) {
  .and-row { justify-content: flex-start; }
  .and-divide > * + * { border-left: 1px solid rgba(255,255,255,.20); }
}

/* Logo + name */
.and-logo-badge { width: 32px; height: 32px; border-radius: 10px; background: #000; color: #EEE7E3; display: grid; place-items: center; font-weight: 900; }
/* Desktop menu */
.and-menu { display: none; }
@media (min-width: 768px) { .and-menu { display: flex; align-items: center; gap: 32px; padding: 0 16px; flex: 1; } }
.and-menu a { display: inline-flex; align-items: center; color: #fff; text-decoration: none; }

.and-plus { margin-left: 8px; font-size: 18px; line-height: 1; }
/* "We're Hiring" (sm+) */
.and-hire { display: none; color: #fff; text-decoration: none; }
@media (min-width: 640px) { .and-hire { display: flex; align-items: center; padding: 0 16px; } }

/* Black hamburger (iOS-safe) */
.and-hamb { margin-left: auto; width: var(--nav-h); height: var(--nav-h); background: #000; color: #fff; border: 0; border-top-right-radius: 0; border-bottom-right-radius: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; appearance: none; -webkit-appearance: none; outline: none; box-shadow: none; }
.and-hamb svg{ width:24px; height:24px; display:block; }

/* Mobile sheet */
.and-sheet-wrap { position: fixed; inset: 0; z-index: 95; pointer-events: none; }
.and-sheet-wrap.open { pointer-events: auto; }
.and-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); opacity: 0; transition: opacity .3s ease; }
.and-sheet-wrap.open .and-backdrop { opacity: 1; }
.and-sheet { position: absolute; left: 20px; right: 20px; top: 20px; bottom: 20px; background: #000; color: #fff; border-radius: 0px; border: 0 solid rgba(255,255,255,.12); box-shadow: 0 20px 60px rgba(0,0,0,.3); transform: translateY(-20px); opacity: 0; transition: transform .3s ease, opacity .3s ease; overflow: hidden; }
.and-sheet-wrap.open .and-sheet{ transform:none; opacity:1; }
/* === Show the menu from the RIGHT on all screens === */
.and-sheet { left: auto !important; right: 0 !important; top: 12px !important; bottom: 12px !important; width: min(92vw, 480px); transform: translateX(100%); transition: transform .32s cubic-bezier(.22,.61,.36,1), opacity .25s ease;display: flex;flex-direction: column;  } /* start off-canvas right */
.and-sheet-wrap.open .and-sheet { transform: translateX(0); opacity: 1; } /* slide in from right */
.and-sheet-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 14px;
  min-height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* left group (logo + name) */
.and-sheet-top > div{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0; /* prevents overflow when the name is long */
}

/* make the menu logo fit the bar */
.and-sheet-top img{
  display: block;
  height: 100px;
  width: 80px;
  object-fit: contain;
}


.and-close { width: 40px; height: 40px; background: transparent; color: #fff; border: 0; border-radius: 8px; appearance: none; -webkit-appearance: none; outline: none; box-shadow: none; margin-left: auto;}
.and-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
@media (min-width: 1024px) {.and-sheet-top { height: 48px; padding: 0 16px; }}
.and-list { overflow: auto; max-height: calc(100% - var(--nav-h)); }
.and-list a { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 600; font-size: 20px; color: #fff; text-decoration: none; }
.and-list a:hover{ background:rgba(255,255,255,.05); }

/* Footer */
.and-footer{ margin-top:80px; background:#000; color:#fff; }
.and-foot-wrap{ max-width:1200px; margin:0 auto; padding:0 20px; }
.and-foot-logo{ display:flex; flex-direction:column; align-items:center; padding:40px 0 12px; }
.and-foot-logo img{ width:196px; height:196px; object-fit:contain; }
.and-foot-name{ margin-top:8px; font-size:14px; letter-spacing:0.35em; }
.and-foot-grid { display: grid; grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }


@media (min-width:768px){ .and-foot-grid{ grid-template-columns:repeat(4,minmax(0,1fr)); } }
.and-foot-grid h5{ font-size:12px; font-weight:700; letter-spacing:.16em; color:rgba(255,255,255,.7); margin:0; }
.and-foot-grid ul{ margin:10px 0 0; padding:0; list-style:none; }
.and-foot-grid li{ margin:8px 0; }
.and-foot-grid a{ color:#fff; opacity:.9; text-decoration:none; }
.and-foot-grid a:hover{ opacity:1; text-decoration:underline; }
.and-foot-div{ border-top:1px solid rgba(255,255,255,.1); }
.and-copy{ text-align:center; padding:14px 0; font-size:14px; color:rgba(255,255,255,.7); }
.and-legal{ display:flex; flex-wrap:wrap; justify-content:center; gap:16px; padding:0 0 28px; font-size:12px; color:rgba(255,255,255,.6); }
.and-legal a{ color:inherit; text-decoration:none; }
.and-legal a:hover{ color:#fff; }

/* Navbar dividers: full-height lines next to Logo|Menu and Hire|Hamburger */
@media (min-width: 768px){
  .and-row{ align-items: stretch; }                 /* children fill bar height */
  .and-divide > *{ display:flex; align-items:center; position:relative; }

  /* turn OFF the old short borders */
  .and-divide > * + *{ border-left: none !important; }

  /* draw full-height lines only before the Menu and Hire blocks */
  .and-divide > .and-menu::before,
  .and-divide > .and-hire::before{
    content:"";
    position:absolute;
    left:0; top:0; bottom:0;                       /* full height of the bar */
    width:1px;
    background: rgba(255,255,255,.35);
  }
}



.mobile-ill { display: none; }
/* put this at the end of style.css */ 
.cyber-section { position: relative; }
/* 1px gradient line between columns */ 
.cyber-section::before { content: ""; position: absolute; top: clamp(24px,4vh,48px); bottom: clamp(24px,4vh,48px); left: 50%; width: 1px; background: linear-gradient(to bottom, transparent, rgb(0 0 0 / .18) 10%, rgb(0 0 0 / .24) 50%, rgb(0 0 0 / .18) 90%, transparent); pointer-events: none; }
@media (max-width: 900px) { .cyber-section::before { display: none; } /* hide when stacked */ }

/* STEP 1 — Hide the 3D card on mobile */
@media (max-width: 900px) { .cyber-card { display: none !important; /* no card on phones */ } /* tighten spacing now that the card is gone */ .cyber-section { gap: 0; /* remove text–card gap */ padding-block: 20px; border-bottom: 1px solid rgb(0 0 0 / .12); /* keeps the separator */ } }
/* === Compact, sharp, black CTAs (override) === */ 
.cyber-content .cta-btn { padding: .60rem 1rem; /* smaller than current */ min-height: 40px; font-size: .95rem; font-weight: 700; border-radius: 4px; /* sharp edges */ background: #000 !important; /* solid black */ color: #fff !important; border: 1px solid rgba(255,255,255,.08); backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: 0 8px 18px rgba(0,0,0,.25); transform: none !important; }
/* kill the old glossy layers */ 
.cyber-content .cta-btn::before, .cyber-content .cta-btn::after { content: none !important; }
/* subtle hover/active/focus */ 
.cyber-content .cta-btn:hover { background: #111 !important; box-shadow: 0 10px 22px rgba(0,0,0,.32); }
.cyber-content .cta-btn:active { background: #000 !important; box-shadow: inset 0 2px 10px rgba(255,255,255,.06), 0 6px 16px rgba(0,0,0,.35); }
.cyber-content .cta-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; box-shadow: none; }
/* Mobile – a touch smaller if you like */ 
@media (max-width: 900px) { .cyber-content .cta-btn { padding: .55rem .9rem; font-size: .90rem; min-height: 38px; } }
@media (min-width: 900px ) { .cyber-section {padding-left: 10%;  padding-right: 10%;}}


/* Mobile: centered pill divider between text blocks */
@media (max-width: 900px) {
  .m-sep {
    position: relative;
    height: 34px;               /* space for the pill */
    margin: 18px 0 8px;
  }
  .m-sep::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1px;
    transform: translateY(-50%);
    background:
      linear-gradient(to right,
        transparent,
        rgb(0 0 0 / .18) 20%,
        rgb(0 0 0 / .30) 50%,
        rgb(0 0 0 / .18) 80%,
        transparent);
  }
  .m-sep::after {
    content: attr(data-label);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    padding: .28rem .6rem;
    font-size: .72rem;
    letter-spacing: .16em;
    font-weight: 800;
    color: #fff;
    background: #000;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgb(0 0 0 / .25);
  }
  /* give sections a consistent gap and kill the old border */
  .cyber-section {
    --divider-gap: 48px;      /* controls the space between sections */
    margin: var(--divider-gap) 0;
    padding-block: 20px;
    border-bottom: 0;         /* was drawing a line under each block */
  }
  .cyber-section + .cyber-section::after{
    content:"";
    position:absolute; left:0; right:0; top:0;
    height:28px;
    transform: translateY(calc(-0.5 * var(--divider-gap)));
    background:
      radial-gradient(60% 100% at 50% 0%,
        rgb(0 0 0 / .18), transparent 70%)
      ,linear-gradient(to right,
        transparent, rgb(0 0 0 / .12) 20%, rgb(0 0 0 / .12) 80%, transparent);
    filter: blur(2px);
    opacity:.9;
  }
}

/* Mobile: hide the section label, keep it on desktop */
@media (max-width: 900px) {
  .section-label { display: none !important; }
}
/* (optional clarity) ensure visible on desktop */
@media (min-width: 901px) {
  .section-label { display: block; }
}

.and-list { flex: 1; overflow: auto; max-height: none; }

/* Bottom logo bar */
.and-sheet-bottom{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.and-sheet-bottom img{
  height: 90px;           /* adjust to taste */
  width: auto;
  object-fit: contain;
  display: block;
  opacity: .95;
}



