@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root{
  --bg:#f5f5f4;
  --surface:#fafaf9;
  --text:#0f1117;
  --muted:#70737d;
  --line:rgba(15,17,23,.11);
  --hover:rgba(15,17,23,.025);
  --blue:#08265f;
  --blue-strong:#0b347d;
  --blue-soft:#e7edf8;
  --blue-pale:#f0f4fb;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Poppins',system-ui,-apple-system,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  width:700px;
  height:700px;
  top:-300px;
  left:-200px;
  background:radial-gradient(
    circle,
    rgba(8,38,95,.10),
    transparent 65%
  );
  pointer-events:none;
  animation:floatBg 12s ease-in-out infinite alternate;
}

@keyframes floatBg{
  to{
    transform:translate(80px,60px) scale(1.1);
  }
}

/* =========================================================
   FADE-IN ANIMATIONS
   ========================================================= */
@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(28px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

/* =========================================================
   CORE HEADER LAYOUT
   ========================================================= */
.brandbar{
  position:sticky;
  top:0;
  z-index:100;
  width:100%;
  height:80px;
  padding:0 clamp(1.5rem,5vw,5rem);
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  background:rgba(250,250,249,.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 4px 24px rgba(8,38,95,.04);
  transition:all .3s ease;
}

.brandbar .brand{
  display:flex;
  align-items:center;
}

/* =========================================================
   CENTRAL NAVIGATION
   ========================================================= */
.header-nav{
  display:none;
  gap:2.5rem;
}

@media (min-width:801px){
  .header-nav{
    display:flex;
    align-items:center;
  }
}

.header-nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:.9rem;
  font-weight:500;
  transition:color .2s ease;
}

.header-nav a:hover{
  color:var(--blue-strong);
}

/* =========================================================
   LOGO
   ========================================================= */
.brand-logo{
  width:180px;
  height:auto;
  max-width:46vw;
  display:block;
  object-fit:contain;
}

/* =========================================================
   HEADER CTA
   ========================================================= */
.header-action{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#fff;
  background:var(--blue);
  border:1px solid var(--blue);
  padding:.7rem 1.25rem;
  border-radius:999px;
  text-decoration:none;
  font-size:.85rem;
  font-weight:600;
  box-shadow:0 4px 12px rgba(8,38,95,.15);
  transition:all .25s ease;
}

.header-action:hover{
  background:var(--blue-strong);
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(8,38,95,.2);
}

/* =========================================================
   PULSING DOT
   ========================================================= */
.header-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#fff;
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{
    box-shadow:0 0 0 0 rgba(255,255,255,.7);
  }
  70%{
    box-shadow:0 0 0 6px rgba(255,255,255,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(255,255,255,0);
  }
}

/* =========================================================
   SERVICES / HERO COLUMNS
   ========================================================= */
.container{
  padding-top:0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.column{
  min-height:calc(100vh - 92px);
  padding:clamp(2rem,5vw,5rem);
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
  transition:.35s;
}

.column:last-child{
  border:0;
}

.column:hover{
  background:var(--hover);
}

.number,
.section-index{
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.14em;
}

.number{
  margin-bottom:auto;
}

.number i,
.section-index i{
  font-style:normal;
  color:#a0a3ae;
  font-weight:500;
}

.service-content{
  max-width:360px;
}

.icon{
  width:42px;
  height:42px;
  margin-bottom:2rem;
  display:flex;
  align-items:center;
}

.icon svg{
  width:30px;
  height:30px;
  stroke:var(--blue-strong);
  fill:none;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
  animation:floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon{
  50%{
    transform:translateY(-6px);
  }
}

.column h2{
  margin:0 0 1rem;
  max-width:320px;
  font-size:clamp(1.65rem,2.2vw,2.25rem);
  line-height:1.05;
  letter-spacing:-.045em;
}

.column p,
.section-grid p,
.post-card p,
.value p,
.process-item p,
.faq-content p{
  color:var(--muted);
  font-size:.96rem;
  line-height:1.65;
}

.cta-btn{
  margin-top:2rem;
  width:max-content;
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  padding-bottom:.45rem;
  border-bottom:2px solid rgba(8,38,95,.38);
  color:var(--blue-strong);
  text-decoration:none;
  font-size:.86rem;
  font-weight:600;
  transition:.25s;
}

.cta-btn:hover{
  gap:1rem;
  border-color:var(--blue);
}

.cta-btn svg{
  width:17px;
  height:17px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
}

/* =========================================================
   CONTACT FORM (GET IN TOUCH)
   ========================================================= */
.form-section,
.contact-section{
  padding:clamp(5rem,9vw,9rem) clamp(2rem,5vw,5rem);
  border-top:1px solid var(--line);
}

.form-section .eyebrow,
.contact-section .eyebrow{
  margin-bottom:1.25rem;
}

.form-section h2,
.contact-section h2{
  margin:0 0 2.5rem;
  max-width:760px;
  font-size:clamp(2.5rem,6vw,5.8rem);
  line-height:.96;
  letter-spacing:-.055em;
}

.contact-form{
  max-width:640px;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}

.contact-form label{
  display:block;
  font-size:.82rem;
  font-weight:500;
  color:var(--muted);
  margin-bottom:.55rem;
  letter-spacing:.02em;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:1.05rem 1.15rem;
  border:1px solid var(--line);
  border-radius:10px;
  background:var(--surface);
  color:var(--text);
  font-family:inherit;
  font-size:1rem;
  line-height:1.4;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
  appearance:none;
  -webkit-appearance:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--blue);
  background:#fff;
  box-shadow:0 0 0 4px rgba(8,38,95,.08);
}

.contact-form textarea{
  min-height:140px;
  resize:vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#a0a3ae;
}

/* Primary Send button */
.contact-form button[type="submit"],
.send-btn,
.form-submit{
  margin-top:.75rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.75rem;
  width:100%;
  max-width:320px;
  padding:1.15rem 1.75rem;
  background:var(--blue);
  color:#fff;
  border:none;
  border-radius:999px;
  font-family:inherit;
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.02em;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(8,38,95,.18);
  transition:all .25s cubic-bezier(.2,.8,.2,1);
}

.contact-form button[type="submit"]:hover,
.send-btn:hover,
.form-submit:hover{
  background:var(--blue-strong);
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(8,38,95,.25);
}

.contact-form button[type="submit"]:active,
.send-btn:active,
.form-submit:active{
  transform:translateY(0) scale(.98);
  box-shadow:0 4px 12px rgba(8,38,95,.15);
}

.contact-form button[type="submit"] svg,
.send-btn svg,
.form-submit svg{
  width:18px;
  height:18px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  transition:transform .25s ease;
}

.contact-form button[type="submit"]:hover svg,
.send-btn:hover svg,
.form-submit:hover svg{
  transform:translateX(4px);
}

/* =========================================================
   EDITORIAL / PROCESS / FAQ
   ========================================================= */
.editorial-section,
.process-section,
.faq-section{
  display:grid;
  grid-template-columns:minmax(120px,.35fr) 1fr;
  gap:4rem;
  padding:clamp(5rem,10vw,10rem) clamp(2rem,5vw,5rem);
  border-top:1px solid var(--line);
}

.eyebrow{
  margin:0 0 1.25rem;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.16em;
  color:var(--blue);
}

.section-main,
.process-content,
.faq-content{
  max-width:900px;
}

.editorial-section h2,
.process-section h2,
.faq-content h2,
.work-section h2,
.values-section h2,
.blog-section h2,
.final-cta h2{
  margin:0;
  max-width:760px;
  font-size:clamp(2.5rem,6vw,5.8rem);
  line-height:.96;
  letter-spacing:-.055em;
}

.section-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  margin-top:4rem;
  max-width:760px;
}

/* =========================================================
   WORK / VALUES / BLOG
   ========================================================= */
.work-section,
.values-section,
.blog-section{
  padding:clamp(5rem,9vw,9rem) clamp(2rem,5vw,5rem);
  border-top:1px solid var(--line);
}

.section-heading{
  display:flex;
  justify-content:space-between;
  gap:3rem;
  margin-bottom:5rem;
}

.section-heading h2{
  font-size:clamp(2.3rem,5vw,5rem);
}

.work-grid,
.blog-grid,
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.work-card,
.post-card,
.value{
  padding:1.25rem;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  transition:.3s;
}

.work-card:hover,
.post-card:hover,
.value:hover{
  background:var(--hover);
  box-shadow:inset 0 2px 0 var(--blue-strong);
}

.work-top,
.post-meta{
  display:flex;
  justify-content:space-between;
  font-size:.68rem;
  letter-spacing:.14em;
  color:var(--muted);
  margin-bottom:1.25rem;
}

.work-placeholder{
  aspect-ratio:1.25/1;
  border:1px solid rgba(8,38,95,.16);
  background:
    linear-gradient(
      135deg,
      var(--blue-pale) 0%,
      transparent 49.5%,
      rgba(8,38,95,.15) 50%,
      transparent 50.5%
    );
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  padding:1rem;
  margin-bottom:1.5rem;
  color:var(--muted);
  font-size:.75rem;
  text-transform:uppercase;
}

.work-card h3,
.post-card h3,
.value h3,
.process-item h3{
  margin:0 0 .5rem;
  font-size:1.35rem;
  letter-spacing:-.03em;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process-list{
  margin-top:5rem;
  border-top:1px solid var(--line);
}

.process-item{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:2rem;
  padding:2rem 0;
  border-bottom:1px solid var(--line);
}

.process-item>span,
.value>span{
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.14em;
  color:var(--blue);
}

/* =========================================================
   VALUES
   ========================================================= */
.values-grid{
  grid-template-columns:repeat(4,1fr);
}

.value{
  min-height:250px;
}

.value h3{
  margin-top:4rem;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-content details{
  border-top:1px solid var(--line);
  padding:1.5rem 0;
}

.faq-content details:last-child{
  border-bottom:1px solid var(--line);
}

.faq-content summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  gap:1.5rem;
  font-size:1.15rem;
  font-weight:500;
}

.faq-content summary::-webkit-details-marker{
  display:none;
}

.faq-content summary span{
  color:var(--blue);
  transition:.25s;
}

.faq-content details[open] summary span{
  transform:rotate(45deg);
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid{
  grid-template-columns:repeat(3,1fr);
}

.post-image{
  display:block;
  width:100%;
  aspect-ratio:1.4/1;
  object-fit:cover;
  margin-bottom:1.5rem;
  filter:saturate(.8);
}

.post-image-placeholder{
  aspect-ratio:1.4/1;
  margin-bottom:1.5rem;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  color:var(--blue);
  background:var(--blue-soft);
  box-shadow:inset 0 0 0 1px rgba(8,38,95,.06);
  font-size:.75rem;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.post-card a{
  text-decoration:none;
  color:inherit;
}

.post-card h3{
  font-size:1.45rem;
}

.read-link{
  color:var(--blue);
  font-size:.82rem;
  font-weight:600;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta{
  padding:clamp(6rem,13vw,13rem) clamp(2rem,5vw,5rem);
  border-top:1px solid var(--line);
  text-align:center;
}

.final-cta h2{
  margin:0 auto;
}

.final-cta .eyebrow{
  margin-bottom:2rem;
}

.cta-btn.large{
  margin-top:3rem;
  font-size:1rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  border-top:1px solid var(--line);
  padding:2.5rem clamp(2rem,5vw,5rem);
  display:flex;
  justify-content:space-between;
}

.footer-links{
  display:flex;
  gap:2rem;
}

.footer-links a{
  color:var(--blue);
  text-decoration:none;
  font-weight:500;
}

.footer-copy{
  color:var(--muted);
  font-size:.85rem;
}

/* =========================================================
   MOBILE — 800px AND BELOW
   ========================================================= */
@media (max-width:800px){

  /* -------------------------------------------------------
     Mobile Header – refined
     ------------------------------------------------------- */
  .brandbar{
    height:68px;
    padding:0 1.25rem;
    background:rgba(250,250,249,.92);
    box-shadow:0 2px 16px rgba(8,38,95,.06);
  }

  .brand-logo{
    width:148px;
  }

  .header-action{
    padding:.7rem 1.15rem;
    font-size:.84rem;
    gap:8px;
    box-shadow:0 4px 14px rgba(8,38,95,.18);
  }

  .header-dot{
    width:6px;
    height:6px;
  }

  /* -------------------------------------------------------
     Main Service Columns – impressive full-height first block
     ------------------------------------------------------- */
  .container{
    padding-top:0;
    grid-template-columns:1fr;
  }

  .column{
    min-height:auto;
    padding:4rem 1.5rem;
    border-right:0;
    border-bottom:1px solid var(--line);
    justify-content:flex-start;
  }

  /* First block owns the viewport */
  .column:first-child{
    min-height:calc(100svh - 68px);
    padding:3.5rem 1.5rem 4rem;
    justify-content:center;
    background:linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  }

  .column:nth-child(2),
  .column:nth-child(3){
    min-height:72vh;
    padding:4.5rem 1.5rem;
    justify-content:center;
  }

  .column:last-child{
    border-bottom:0;
  }

  /* Staggered fade-in */
  .column{
    opacity:0;
    animation:fadeInUp .85s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .column:nth-child(1){ animation-delay:.08s; }
  .column:nth-child(2){ animation-delay:.22s; }
  .column:nth-child(3){ animation-delay:.36s; }

  .number{
    margin-bottom:2.75rem;
    font-size:.88rem;
    letter-spacing:.13em;
  }

  .service-content{
    max-width:100%;
  }

  .icon{
    width:52px;
    height:52px;
    margin-bottom:2rem;
  }

  .icon svg{
    width:34px;
    height:34px;
  }

  .column h2{
    max-width:100%;
    margin-bottom:1.15rem;
    font-size:clamp(2.35rem,9vw,2.85rem);
    line-height:1.05;
    letter-spacing:-.05em;
  }

  .column p,
  .section-grid p,
  .post-card p,
  .value p,
  .process-item p,
  .faq-content p{
    font-size:1.05rem;
    line-height:1.72;
  }

  .cta-btn{
    margin-top:2.25rem;
    font-size:1rem;
    padding-bottom:.5rem;
  }

  /* -------------------------------------------------------
     Contact Form – strong mobile treatment
     ------------------------------------------------------- */
  .form-section,
  .contact-section{
    padding:5.5rem 1.5rem;
  }

  .form-section h2,
  .contact-section h2{
    font-size:clamp(2.6rem,10vw,3.6rem);
    margin-bottom:2.25rem;
  }

  .contact-form{
    gap:1.65rem;
  }

  .contact-form input,
  .contact-form textarea{
    padding:1.15rem 1.2rem;
    font-size:1.05rem;
    border-radius:12px;
  }

  .contact-form textarea{
    min-height:160px;
  }

  .contact-form button[type="submit"],
  .send-btn,
  .form-submit{
    width:100%;
    max-width:100%;
    padding:1.25rem 1.5rem;
    font-size:1.05rem;
    border-radius:14px;
    margin-top:1rem;
    box-shadow:0 10px 28px rgba(8,38,95,.22);
  }

  .contact-form button[type="submit"]:active,
  .send-btn:active,
  .form-submit:active{
    transform:scale(.97);
  }

  /* -------------------------------------------------------
     Editorial / Process / FAQ
     ------------------------------------------------------- */
  .editorial-section,
  .process-section,
  .faq-section{
    grid-template-columns:1fr;
    gap:2.5rem;
    padding:5.5rem 1.5rem;
  }

  .section-index{
    font-size:.8rem;
    letter-spacing:.12em;
  }

  .eyebrow{
    margin-bottom:1.25rem;
    font-size:.75rem;
    letter-spacing:.14em;
  }

  .editorial-section h2,
  .process-section h2,
  .faq-content h2,
  .work-section h2,
  .values-section h2,
  .blog-section h2,
  .final-cta h2{
    max-width:100%;
    font-size:clamp(2.7rem,11vw,4rem);
    line-height:.98;
    letter-spacing:-.055em;
  }

  .section-grid{
    grid-template-columns:1fr;
    gap:1.75rem;
    margin-top:2.75rem;
    max-width:100%;
  }

  /* -------------------------------------------------------
     Work / Values / Blog
     ------------------------------------------------------- */
  .work-section,
  .values-section,
  .blog-section{
    padding:5.5rem 1.5rem;
  }

  .section-heading{
    flex-direction:column;
    gap:1.5rem;
    margin-bottom:3.5rem;
  }

  .section-heading h2{
    font-size:clamp(2.7rem,11vw,4rem);
  }

  .work-grid,
  .blog-grid,
  .values-grid{
    grid-template-columns:1fr;
  }

  .work-card,
  .post-card,
  .value{
    padding:1.35rem;
  }

  .work-top,
  .post-meta{
    font-size:.72rem;
    margin-bottom:1.35rem;
  }

  .work-placeholder{
    margin-bottom:1.75rem;
    padding:1.1rem;
    font-size:.78rem;
  }

  .work-card h3,
  .post-card h3,
  .value h3,
  .process-item h3{
    font-size:1.5rem;
    line-height:1.2;
  }

  .post-card h3{
    font-size:1.55rem;
  }

  .post-image,
  .post-image-placeholder{
    margin-bottom:1.75rem;
  }

  .read-link{
    font-size:.9rem;
  }

  /* -------------------------------------------------------
     Process
     ------------------------------------------------------- */
  .process-list{
    margin-top:3.5rem;
  }

  .process-item{
    grid-template-columns:42px 1fr;
    gap:1.25rem;
    padding:2.25rem 0;
  }

  .process-item>span,
  .value>span{
    font-size:.75rem;
  }

  /* -------------------------------------------------------
     Values
     ------------------------------------------------------- */
  .value{
    min-height:220px;
  }

  .value h3{
    margin-top:3.5rem;
  }

  /* -------------------------------------------------------
     FAQ
     ------------------------------------------------------- */
  .faq-content details{
    padding:1.6rem 0;
  }

  .faq-content summary{
    font-size:1.08rem;
    line-height:1.5;
  }

  /* -------------------------------------------------------
     Final CTA
     ------------------------------------------------------- */
  .final-cta{
    padding:7rem 1.5rem;
  }

  .final-cta .eyebrow{
    margin-bottom:1.75rem;
  }

  .cta-btn.large{
    margin-top:2.5rem;
    font-size:1rem;
  }

  /* -------------------------------------------------------
     Footer
     ------------------------------------------------------- */
  .site-footer{
    flex-direction:column;
    gap:1.75rem;
    padding:2.5rem 1.5rem;
    text-align:center;
  }

  .footer-links{
    justify-content:center;
    flex-wrap:wrap;
    gap:1.25rem 1.75rem;
  }

  .footer-links a{
    font-size:.9rem;
  }

  .footer-copy{
    font-size:.85rem;
    line-height:1.6;
  }
}

/* =========================================================
   SMALL PHONES — 480px AND BELOW
   ========================================================= */
@media (max-width:480px){

  .brandbar{
    height:64px;
    padding:0 1rem;
  }

  .brand-logo{
    width:132px;
  }

  .header-action{
    padding:.65rem .95rem;
    font-size:.8rem;
  }

  .header-action .header-dot{
    width:5px;
    height:5px;
  }

  .column{
    padding:3.25rem 1.25rem;
  }

  .column:first-child{
    min-height:calc(100svh - 64px);
    padding:3rem 1.25rem 3.5rem;
  }

  .column:nth-child(2),
  .column:nth-child(3){
    min-height:68vh;
    padding:4rem 1.25rem;
  }

  .column h2{
    font-size:clamp(2.15rem,9.5vw,2.55rem);
  }

  .column p,
  .section-grid p,
  .post-card p,
  .value p,
  .process-item p,
  .faq-content p{
    font-size:1.02rem;
    line-height:1.7;
  }

  .form-section,
  .contact-section,
  .editorial-section,
  .process-section,
  .faq-section,
  .work-section,
  .values-section,
  .blog-section{
    padding-left:1.25rem;
    padding-right:1.25rem;
  }

  .form-section h2,
  .contact-section h2,
  .editorial-section h2,
  .process-section h2,
  .faq-content h2,
  .work-section h2,
  .values-section h2,
  .blog-section h2,
  .final-cta h2{
    font-size:clamp(2.4rem,11vw,3.3rem);
  }

  .contact-form input,
  .contact-form textarea{
    padding:1.1rem 1.1rem;
    font-size:1.02rem;
  }

  .contact-form button[type="submit"],
  .send-btn,
  .form-submit{
    padding:1.2rem 1.35rem;
    font-size:1.02rem;
  }

  .section-grid{
    margin-top:2.25rem;
  }

  .process-item{
    grid-template-columns:36px 1fr;
    gap:1rem;
  }

  .faq-content summary{
    font-size:1.02rem;
  }

  .final-cta{
    padding-left:1.25rem;
    padding-right:1.25rem;
  }
}

/* =========================================================
   EXISTING COLOR / INDEX OVERRIDES
   ========================================================= */
.section-index{
  color:var(--blue-strong);
}

.number{
  color:var(--blue-strong);
}

.eyebrow{
  color:var(--blue-strong);
}

/* =========================================================
   STATUS PAGES — THANK YOU / ERROR
   ========================================================= */
.status-page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  overflow-x:hidden;
}

.status-page .brandbar{
  padding-left:clamp(1.25rem,5vw,5rem);
  padding-right:clamp(1.25rem,5vw,5rem);
}

.status-main{
  flex:1;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:clamp(5rem,9vw,9rem) clamp(1.5rem,6vw,6rem);
}

.status-card{
  width:100%;
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
  padding-left:clamp(1rem,3vw,3rem);
  padding-right:clamp(1rem,3vw,3rem);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.status-index{
  display:block;
  margin-bottom:2.5rem;
  color:var(--blue-strong);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.16em;
}

.status-icon{
  width:76px;
  height:76px;
  margin:0 auto 2.5rem;
  border:1px solid rgba(8,38,95,.16);
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--blue-soft);
}

.status-icon svg{
  width:32px;
  height:32px;
  fill:none;
  stroke:var(--blue-strong);
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.error-icon{
  background:rgba(15,17,23,.04);
  border-color:var(--line);
}

.error-icon svg{
  stroke:var(--text);
}

.status-card .eyebrow{
  margin:0 0 1.25rem;
}

.status-card h1{
  width:100%;
  max-width:800px;
  margin:0 auto;
  font-size:clamp(3.5rem,8vw,7rem);
  line-height:.94;
  letter-spacing:-.065em;
  font-weight:600;
  overflow-wrap:break-word;
}

.status-card h1 span{
  display:block;
  color:var(--blue-strong);
}

.status-text{
  width:100%;
  max-width:560px;
  margin:2rem auto 0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.75;
}

.status-card > .cta-btn{
  margin:2.75rem auto 0;
}

.status-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2rem;
  margin:2.75rem auto 0;
  width:100%;
}

.status-actions .cta-btn{
  margin:0;
}

.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--blue-strong);
  text-decoration:none;
  font-size:.9rem;
  font-weight:600;
  border-bottom:1px solid rgba(8,38,95,.3);
  padding-bottom:.4rem;
  transition:.25s ease;
}

.secondary-btn:hover{
  border-color:var(--blue-strong);
  transform:translateY(-1px);
}

.status-page .site-footer{
  width:100%;
  padding-left:clamp(1.25rem,5vw,5rem);
  padding-right:clamp(1.25rem,5vw,5rem);
  flex-shrink:0;
}

/* =========================================================
   STATUS PAGES — MOBILE
   ========================================================= */
@media(max-width:800px){
  .status-page .brandbar{
    padding-left:1.25rem;
    padding-right:1.25rem;
  }

  .status-main{
    width:100%;
    padding:5rem 1.25rem 5rem;
  }

  .status-card{
    width:100%;
    max-width:100%;
    padding-left:.5rem;
    padding-right:.5rem;
  }

  .status-index{
    margin-bottom:2rem;
    font-size:.75rem;
  }

  .status-icon{
    width:68px;
    height:68px;
    margin-bottom:2rem;
  }

  .status-icon svg{
    width:29px;
    height:29px;
  }

  .status-card .eyebrow{
    font-size:.72rem;
    margin-bottom:1.1rem;
  }

  .status-card h1{
    width:100%;
    max-width:100%;
    font-size:clamp(2.8rem,11vw,4.5rem);
    line-height:.98;
    letter-spacing:-.06em;
  }

  .status-text{
    width:100%;
    max-width:560px;
    margin-top:1.75rem;
    font-size:1rem;
    line-height:1.75;
  }

  .status-card > .cta-btn{
    margin-top:2.5rem;
  }

  .status-actions{
    flex-direction:column;
    gap:1.5rem;
    width:100%;
    margin-top:2.5rem;
  }

  .status-actions .cta-btn{
    margin:0;
  }

  .status-page .site-footer{
    padding-left:1.25rem;
    padding-right:1.25rem;
  }
}

/* =========================================================
   STATUS PAGES — SMALL PHONES
   ========================================================= */
@media(max-width:480px){
  .status-page .brandbar{
    padding-left:1rem;
    padding-right:1rem;
  }

  .status-main{
    padding:4rem 1rem 4rem;
  }

  .status-card{
    padding-left:.25rem;
    padding-right:.25rem;
  }

  .status-index{
    margin-bottom:1.75rem;
  }

  .status-icon{
    width:62px;
    height:62px;
    margin-bottom:1.75rem;
  }

  .status-icon svg{
    width:26px;
    height:26px;
  }

  .status-card h1{
    font-size:clamp(2.45rem,11.5vw,3.4rem);
  }

  .status-text{
    font-size:.98rem;
    line-height:1.7;
  }

  .status-actions{
    width:100%;
  }

  .status-actions .cta-btn,
  .status-actions .secondary-btn{
    width:max-content;
  }

  .status-page .site-footer{
    padding-left:1rem;
    padding-right:1rem;
  }
}