:root{
  --ink:#0B2F4E; --ink-2:#113E64; --muted:#6D7F92; --ring:#E7F1FF; --card:#fff;
  --accent-blue:#1787E8; --accent-pink:#EB447E; --green:#27C19A;
  --radius:18px; --shadow-md:0 12px 36px rgba(11,47,78,0.12);
  --maxw:1100px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; color:var(--ink);
  font:16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
  background:linear-gradient(#F8FBFF,#FFFFFF)
}
a{color:var(--accent-blue); text-decoration:none}

/* Top bar */
header{position:sticky; top:0; z-index:20; backdrop-filter:saturate(160%) blur(8px); background:rgba(255,255,255,.78); border-bottom:1px solid var(--ring)}
.nav{max-width:var(--maxw); margin:auto; padding:12px 16px; display:flex; align-items:center; gap:12px}
.logo-badge{width:28px; height:28px; border-radius:10px; background:linear-gradient(135deg,var(--accent-blue),var(--accent-pink))}
.spacer{flex:1}
.btn{padding:10px 12px; border-radius:12px; border:1px solid var(--ring); background:#fff}

/* Hero */
.hero{max-width:860px; margin:28px auto 0; padding:0 16px 50px; text-align:center}
.hero h1{font-size:clamp(28px,4vw,44px); line-height:1.08; letter-spacing:-.02em; margin:12px 0}
.hero p.sub{color:var(--muted); margin:0}

/* Chat (intro only) */
.chat-wrap{
    max-width:860px;
    margin:14px auto 56px;
    padding:20px 16px;
}
.chat{
    background:var(--card);
    border:1px solid var(--ring);
    border-radius:22px;
    box-shadow:var(--shadow-md);
    overflow:hidden
}
.chat-head{
    display:flex;
    align-items:center;
    gap:10px;
    padding:11px 14px;
    border-bottom:1px solid var(--ring);
    background:linear-gradient(135deg,rgba(23,135,232,.08));
}
.chat-head .avatar{
    width:35px;
    height:35px;
    border-radius:10px;
}
.chat-head .title{
    font-weight:600
}
.messages{
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.row{
    display:flex;
    align-items:flex-end;
    gap:10px;
}
.row.user{
    justify-content:flex-end;
}
.bubble{
    max-width:72%;
    padding:12px 14px;
    border-radius:16px;
    background:#fff;
}
.row.user .bubble{
    background:#eff2f5;
    padding: 0.625rem 0.875rem;
}

.row.user .bubble{
  width: fit-content;              /* size = content width */
  max-width: 60ch;                 /* safety cap so it never gets too wide */
  margin-left: auto;               /* push bubble right, next to the avatar */
  margin-right: 0;                 /* no extra space on the right */
  text-align: left;                /* keep text left-aligned (optional) */
}

/* keep the small space between bubble and the user avatar */
.row{ gap: 10px; }

/* Response heading style (no h-tags used in chat) */
.bot-title{
    display:block;
    font-weight:650;
    color:var(--ink-2);
    margin:0 0 4px
}

/* Typing indicator */
.typing{
    display:inline-flex;
    gap:6px;
    align-items:center
}
.dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#c6d7eb;
    animation:blink 1s infinite
}
.dot:nth-child(2){animation-delay:.15s}
.dot:nth-child(3){animation-delay:.3s}
@keyframes blink{0%,80%,100%{opacity:.2} 40%{opacity:1}}

/* Classic sections */
.section{
    max-width:var(--maxw);
    margin:auto;
    padding:20px 16px
}
.section h2{
    font-size: 30px;
    margin: 0 0 40px;
    letter-spacing: -.01em;
    font-weight: 400 !important;
}

.section1 h2{
    font-size:clamp(26px,3vw,36px);
    margin:0 0 10px;
    letter-spacing:-.01em;
}
.lede{
    color:var(--muted);
    margin:50px 0 20px
}
.cards{
    display:grid;
    gap:14px;
    grid-template-columns:repeat(12,1fr)
}
.card{
    grid-column:span 4;
    background:#fff;
    border:1px solid var(--ring);
    border-radius:16px; padding:16px
}
.card h3{
    margin:6px 0 6px;
    font-size:18px
}
.card p{
    color:var(--muted);
    margin:0
}

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px
}
.pill{
    display:inline-block;
    padding:8px 10px;
    border-radius:999px;
    border:1px solid var(--ring);
    margin:4px 8px 0 0;
    font-size:12px
}

.team{
    display:grid;
    gap:14px;
    grid-template-columns:repeat(12,1fr)
}
.person{
    grid-column:span 3;
    background:#fff;
    border:1px solid var(--ring);
    border-radius:16px; overflow:hidden
}
.person img{
    width:100%;
    height:220px;
    object-fit:cover
}
.person .info{
    padding:12px
}
.person .role{
    color:var(--muted);
    font-size:14px
}

.cta-wrap{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:16px; align-items:center;
    background:linear-gradient(135deg,rgba(23,135,232,.06));
    border:1px solid var(--ring);
    padding:22px
}
.cta-card{
    background:#fff;
    border:1px solid var(--ring);
    border-radius:16px;
    padding:16px
}

footer{
    border-top:1px solid var(--ring);
    background:#fff
}
.foot{
    max-width:var(--maxw);
    margin:auto;
    padding:20px 16px;
    display:flex;
    gap:12px;
    align-items:center
}
.foot .copy{
    color:var(--muted);
    margin-left:auto
}

/* Responsive */
@media (max-width:980px){
  .card{grid-column:span 12}
  .grid-2{grid-template-columns:1fr}
  .person{grid-column:span 6}
  .cta-wrap{grid-template-columns:1fr}
}
@media (max-width:640px){
  .bubble{max-width:86%}
  .person{grid-column:span 12}
}

/* Avatar is now an <img> */
/* .avatar{
  width:35px;
  height:35px;
  border-radius:12px;
  padding:4px;
  object-fit:contain;
} */

/* Base avatar for both */
.avatar{
  width:35px;
  height:35px;
  padding:9px;          /* no padding for user photo */
}

/* Bot logo chip */
.avatar.bot{
  object-fit:contain; /* keep SVG proportions */
  padding:4px;        /* breathing room around logo */
  margin-bottom: 10px;
}

.avatar.bot1{
  object-fit:contain; /* keep SVG proportions */
  padding:4px;        /* breathing room around logo */
}

/* Keep avatars hidden only on small screens */
@media (max-width:640px){
  .avatar{display:none}
}

/* Auto Switch Mode */
.switch-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:8px;
}
.switch-card{
  background:#fff;
  border:1px solid var(--ring);
  border-radius:16px;
  padding:16px;
  box-shadow:var(--shadow-md);
}
.switch-card strong{display:block; margin-bottom:8px}
.list{margin:.25rem 0 0 1rem}
.list li{margin:6px 0}
.pills{margin-top:10px}
.metrics{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.metric{
  flex:1;
  text-align:center;
  border:1px dashed rgba(11,47,78,0.15);
  border-radius:12px;
  padding:10px;
  color:var(--ink-2);
}
.metric .big{font-weight:700; font-size:18px; display:block; line-height:1}
.quote{
  margin-top:12px;
  font-weight:650;
  color:var(--ink-2);
}
.cta-note{
  margin-top:16px;
  text-align:center;
}

/* responsive */
@media (max-width:980px){
  .switch-grid{grid-template-columns:1fr}
}








/* responsive */
@media (max-width:980px){
  .switch-grid{grid-template-columns:1fr}
}

/* Mission Section - OpenAI Style */
.mission-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 16px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content {
  padding-right: 40px;
}

.mission-title {
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-weight: 600;
  color: var(--ink);
}

.mission-text {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 32px;
  color: var(--ink);
  font-weight: 300 !important;
}

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

.mission-link {
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s;
}

.mission-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.mission-link .arrow {
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s;
}

.mission-link:hover .arrow {
  transform: translateX(4px);
}

.mission-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-image {
  width: 80%;
  height: auto;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Responsive for mission section */
@media (max-width: 980px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-content {
    padding-right: 0;
    order: 2;
  }

  .mission-image-wrapper {
    order: 1;
  }

  .mission-title {
    font-size: clamp(32px, 5vw, 44px);
  }

  .mission-text {
    font-size: clamp(16px, 2.5vw, 20px);
  }
}

@media (max-width: 640px) {
  .mission-links {
    flex-direction: column;
    gap: 20px;
  }

  .mission-section {
    margin: 60px auto;
  }
}











/* Team Section - Side by Side Layout */
.team-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 16px;
}

.team-section .team-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 165px;
    align-items: start;
}

.team-section .team-content {
    padding-right: 40px;
}

.team-section h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.team-section .lede {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--muted);
    margin: 0 0 40px;
    line-height: 1.5;
}

.team-section .team-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-section .team-member {
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--ring);
    border-radius: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.team-section .team-member:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.team-section .team-member strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--ink);
}

.team-section .team-member .role {
    color: var(--muted);
    font-size: 15px;
}

.team-section .team-image-wrapper {
    position: sticky;
    top: 100px;
}

.team-section .team-image {
    width: 95%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Responsive for team section */
@media (max-width: 980px) {
    .team-section .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-section .team-content {
        padding-right: 0;
    }

    .team-section .team-image-wrapper {
        position: relative;
        top: 0;
    }

    .team-section .team-image {
        max-height: 400px;
    }
}

@media (max-width: 640px) {
    .team-section {
        margin: 60px auto;
    }

    .team-section .team-member {
        padding: 16px 20px;
    }

    .team-section .team-member:hover {
        transform: none;
    }
}














/* Models: image card on the right */
.models-art{
  margin:-55;
}
.models-art img{
  width:80%;
  max-width:600px;           /* keeps it “small” on large screens */
  object-fit:cover;
  border-radius:16px;
  box-shadow:var(--shadow-md);
  display:block;
  margin-left:auto;          /* nudge to the right edge of its column */
}

/* Optional caption style (only if you use it) */
.caption{
  color:var(--muted);
  font-size:12px;
  margin-top:6px;
}

/* Mobile: stack like the rest */
@media (max-width:980px){
  .models-art img{
    max-width:100%;
    margin-left:0;
  }
}



/* Auto Switch Mode layout */
.switch-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:8px;
}
.switch-card{
  background:#fff;
  border:1px solid var(--ring);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow-md);
}
.switch-card strong{display:block; margin-bottom:10px}

/* Numbered steps */
.steps{
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.steps li{
  position: relative;
  padding-left: 38px;
  margin: 10px 0;
}
.steps li::before{
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--ring);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: #fff;
}

/* Chips (compact stats) */
.chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.chip{
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 12px; border-radius:12px;
  border:1px dashed rgba(11,47,78,0.18);
  background:#fff;
}
.chip .arrow{font-weight:700}

/* Tagline */
.tagline{margin-top:10px; font-weight:650; color:var(--ink-2)}

/* CTA under the cards */
.cta-note{margin-top:16px; text-align:center}

/* Responsive */
@media (max-width:980px){
  .switch-grid{grid-template-columns:1fr}
}





/* Centered CTA variant (only for this section) */
.section1 .cta-wrap{
  /* override the grid version */
  display: flex;
  flex-direction: column;
  align-items: center;     /* horizontal center */
  justify-content: center; /* vertical center (within the blue box) */
  text-align: center;

  /* keep the “sky blue” look from your existing styles */
  background: linear-gradient(135deg, rgba(23,135,232,.06));
  border: 1px solid var(--ring);
  padding: 32px 24px;
  min-height: 220px;       /* adjust height feel as you like */
  margin-bottom: 0px;
}

/* make the inner wrapper a centered column */
.section1 .cta-wrap > div{
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* tidy spacing */
.section1 .cta-wrap h2{ margin: 0 0 10px; }
.section1 .cta-wrap .lede{ margin: 0 0 16px; max-width: 720px; }

/* optional: center the button row even if inline styles change later */
/* .section1 .cta-wrap .btn{
  min-height: 44px;
  color: #0b2f4e;
   border:1px solid var(--ring);
  box-shadow: 0 6px 16px rgba(11,47,78,.12);
  transition: box-shadow .2s ease, transform .2s ease;
} */

/* Contact button (shadow stays the same; only text color changes) */
.section1 .cta-wrap .btn--shadow{
  background:#fff;
  border:1px solid var(--ring);
  box-shadow:0 8px 20px rgba(11,47,78,.14);
  color:#0b2f4e;
  transition: color .15s ease;   /* only animate the text color */
}

.section1 .cta-wrap .btn--shadow:hover{
  color: var(--accent-blue);      /* slight highlight on hover */
  transform: none;                /* no lift */
  box-shadow:0 8px 20px rgba(11,47,78,.14);  /* unchanged */
}

.section1 .cta-wrap .btn--shadow:active{
  color:#0b2f4e;                  /* optional: revert on press */
  transform:none;
  box-shadow:0 8px 20px rgba(11,47,78,.14);
}

.section1 .cta-wrap .btn--shadow:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px var(--ring), 0 8px 20px rgba(11,47,78,.14); /* keep same elevation + focus ring */
}

/* Buttons shouldn't underline on hover */
.section1 .cta-wrap a.btn,
.section1 .cta-wrap a.btn:hover,
.section1 .cta-wrap a.btn:focus,
.section1 .cta-wrap a.btn:active {
  text-decoration: none;
}

/* keep your Contact hover color change without underline */
.section1 .cta-wrap .btn--shadow:hover {
  color: var(--accent-blue);
  text-decoration: none;
}

/* Full-width footer background */
.furo-footer {
    background: #1f2327; /* your dark background */
    padding: 50px 0 30px;
    width: 100vw;
    margin-left: calc(50% - 50vw); /* force full bleed */
}

/* Inner centered container */
.footer-inner {
    max-width: 1350px;      /* perfect width */
    margin: 0 auto;
    padding: 0 30px;        /* safe inner padding */
    color: #dfe6ee;
}

/* Footer columns */
.furo-footer .row > div {
    min-width: 200px;
}

/* Headings */
.furo-footer h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Links */
.footer-link {
    color: #dfe6ee !important;
    text-decoration: none;
    display: block;
    padding: 2px 0;
}
.footer-link:hover {
    color: #ffffff !important;
}

/* Divider */
.footer-divider {
    border-color: rgba(255,255,255,0.15);
    margin: 40px 0 20px;
}

/* Copyright */
.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #b8c3cc;
}

/* Ensure footer columns align at the top */
.furo-footer .row {
    align-items: flex-start !important;
}
.row {
    gap: 0px !important;
}
