:root{--page-title-display:none;}/* Hero — full width without padded sides */
/* Layout */
.hero{
  padding: clamp(72px, 12vw, 128px) 0 clamp(40px, 6vw, 72px);
  margin-top:30px;
  background: radial-gradient(1200px 400px at 70% -10%,
 color-mix(in srgb, #3B3C36 8%, transparent), transparent), linear-gradient(180deg,
 color-mix(in srgb, #3B3C36 18%, transparent), transparent);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.site .site-content #primary .ast-article-single, .ast-separate-container .site-content #secondary .widget {
    background: white;
}

.h1,h2,h3 {
    font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.hero .container.hero-wrap{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 980px){
  .hero .container.hero-wrap{ grid-template-columns: 1fr }
}
/* Copy block */
.hero .eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero .h1{
  margin: 10px 0 8px;
  font-size: clamp(10px, 4.8vw, 56px);
  line-height: 1.1;
  color: var(--text);
}

.hero .hero-title{
  font-size: 18px;
  color: var(--text-muted);
  max-width: 70ch;
}

.hero .lead{
  font-size: 18px;
  color: var(--text-muted);
  max-width: 70ch;
}
.hero .cta-row{ margin-top: 16px }
/* Art block */
.hero .hero-art{
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.hero .window{
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.hero .dot{ width: 10px; height: 10px; border-radius: 50% ; background: var(--accent) }
.hero .dot:nth-child(2){ background: var(--primary) }
.hero .dot:nth-child(3){ background: var(--link) }
.hero .hero-screen{
  padding: clamp(12px, 2.4vw, 16px);
  background: linear-gradient(180deg,
 color-mix(in srgb, var(--primary) 8%, transparent), transparent 40%), linear-gradient(90deg,
 color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%);
}
.hero .code{
  font: 13px/1.6 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  color: var(--text);
  background: transparent;
}
.hero .code .k{ color: var(--accent) }
.hero .code .p{ color: var(--primary) }
/* Buttons */
.hero .btn{ 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid black;
    font-weight: 600;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease; }
.hero .btn.primary{ background: var(--primary); color: var(--primary-contrast); min-width: 140px;}

.hero .btn.primary:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
   transform: translateY(-1px);
}

.hero .btn.secondary{
  background: transparent;
  color: var(--primary);
}
.hero .btn.secondary:hover{
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  transform: translateY(-1px);
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero *, .hero *:before, .hero *:after{ transition: none !important; animation: none !important }
}
/* Theme parity overrides */
/* Sets 1,2,4,5 remove gradients and keep pure surface for strict brand look */
[data-theme="1"] .hero,
[data-theme="2"] .hero,
[data-theme="4"] .hero,
[data-theme="5"] .hero{ background: var(--bg) }
[data-theme="1"] .hero-screen,
[data-theme="2"] .hero-screen,
[data-theme="4"] .hero-screen,
[data-theme="5"] .hero-screen{ background: var(--surface) }
/* Set 6 matches Set 3 palette on white */
[data-theme="6"] .hero{ background: var(--bg) }
[data-theme="6"] .hero-screen{ background: var(--surface) }
/* Compact logo belt styling */
.belt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.belt .logo {
    height: 40px;
    width: 120px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #EDEAF1;
    border: 1px solid #BEBFC5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.belt .logo svg {
    width: 60px;
    height: 16px;
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .belt {
        gap: 12px;
    }
    
    .belt .logo {
        width: 100px;
        height: 36px;
    }
    
    .belt .logo svg {
        width: 50px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .belt {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* How We Deliver Section */
#how-we-deliver {
    padding: 60px 0;
}

#how-we-deliver .h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 600;
}

.process-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.process-card {
    position: relative;
    /* Add consistent padding always */
    padding: 30px;
    border-radius: 16px;
    cursor: pointer;
    /* Single consistent transition */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Prevent layout shifts */
    box-sizing: border-box;
}

/* Default state for all cards */
.process-card .process-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #8a8a8a;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 15px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects for all cards */
.process-card:hover {
    background: #f0f0f2;
    /* Remove padding change - it's already consistent */
}

.process-card:hover .process-number {
    position: absolute;
    top: 30px;  /* Account for existing padding */
    left: 30px; /* Account for existing padding */
    width: 40px;
    height: 40px;
    background: #1a1a2e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
}

.process-card:hover h3 {
    margin: 60px 0 15px 0;
}

.process-card:hover p {
    color: #8a8a8a;
}

/* Responsive */
@media (max-width: 768px) {
    .process-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-card {
        padding: 25px; /* Consistent mobile padding */
    }
    
    .process-card:hover .process-number {
        top: 25px;  /* Match mobile padding */
        left: 25px; /* Match mobile padding */
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .process-card:hover h3 {
        margin: 50px 0 15px 0;
    }
}




/* Our Core Expertise Section */
#roles {
   padding: 72px 0;
   background: var(--bg);
}

#roles .container {
   max-width: 1160px;
   margin-inline: auto;
   padding: 0 20px;
}

#roles .h2 {
   font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
   font-size: clamp(22px, 3vw, 36px);
   line-height: 1.2;
   margin: 0 0 40px;
   color: var(--ink);
}

#roles .grid {
   display: grid;
   gap: 24px;
}

#roles .roles {
   grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
   #roles .roles {
       grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 640px) {
   #roles .roles {
       grid-template-columns: 1fr;
   }
}

#roles .card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 24px;
   transition: transform .2s ease;
}

#roles .card:hover {
   transform: translateY(-2px);
}

#roles .card strong {
   display: block;
   color: var(--ink);
   font-weight: 600;
   margin-bottom: 8px;
   font-size: 16px;
}

#roles .small {
   font-size: 13px;
}

#roles .muted {
   color: var(--muted);
}

#roles .cta-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 14px;
}

#roles .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 16px;
   border-radius: 12px;
   border: 1px solid black;
   font-weight: 600;
   transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
   text-decoration: none;
}

#roles .btn:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    transform: translateY(-1px);
}

#roles .btn.secondary {
   background: transparent;
   color: var(--green);
}

#roles .btn.secondary:hover {
   background: rgba(0, 105, 62, .06);
}
/* Success Stories Section */
#success {
   padding: 72px 0;
   background: var(--bg);
}

#success .container {
   max-width: 1160px;
   margin-inline: auto;
   padding: 0 20px;
}

#success .h2 {
   font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
   font-size: clamp(22px, 3vw, 36px);
   line-height: 1.2;
   margin: 0 0 40px;
   color: var(--ink);
}

#success .grid {
   display: grid;
   gap: 24px;
}

#success .quotes {
   grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
   #success .quotes {
       grid-template-columns: 1fr;
   }
}

#success blockquote {
   margin: 0;
}

#success blockquote p {
   font-size: 16px;
   margin: 0 0 16px;
   color: var(--ink);
   line-height: 1.6;
}

#success .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 24px;
   transition: transform .2s ease;
}

#success .card:hover {
   transform: translateY(-2px);
}

#success footer {
   border-top: 1px solid var(--border);
   padding-top: 16px;
   margin-top: 16px;
}

#success .small {
   font-size: 13px;
}

#success .muted {
   color: var(--muted);
}
/* Candidates Section */
#candidates {
   padding: 72px 0;
   background: var(--bg);
}

#candidates .container {
   max-width: 1160px;
   margin-inline: auto;
   padding: 0 20px;
}

#candidates .cand {
   display: grid;
   grid-template-columns: 1.2fr .8fr;
   gap: 24px;
   align-items: center;
}

@media (max-width: 980px) {
   #candidates .cand {
       grid-template-columns: 1fr;
   }
}

#candidates .eyebrow {
   display: inline-block;
   font-size: 12px;
   letter-spacing: .08em;
   text-transform: uppercase;
   color: #C9C4BD;
}

#candidates .h2 {
   font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
   font-size: clamp(22px, 3vw, 36px);
   line-height: 1.2;
   margin: 12px 0 14px;
   color: var(--ink);
}

#candidates ul {
   margin: 20px 0;
   padding-left: 20px;
}

#candidates ul li {
   color: var(--ink);
   margin-bottom: 8px;
   line-height: 1.6;
}

#candidates .cta-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 10px;
}

#candidates .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 16px;
   border-radius: 12px;
   border: 1px solid black;
   font-weight: 600;
   transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
   text-decoration: none;
}

#candidates .btn.primary {
   background: var(--green);
   color: black;
}

#candidates .btn.primary:hover {
   box-shadow: 0 6px 16px rgba(0,0,0,.12);
   transform: translateY(-1px);
}

#candidates .card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 24px;
   transition: transform .2s ease;
}

#candidates .card:hover {
   transform: translateY(-2px);
}

#candidates .card strong {
   display: block;
   color: var(--ink);
   font-weight: 600;
   margin-bottom: 12px;
}

#candidates .small {
   font-size: 13px;
   margin-bottom: 8px;
}

#candidates .muted {
   color: var(--muted);
}



/* CSS Variables */
:root {
    --accent: #3B3C36;
    --primary: #0F1A3A;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Get Moving Section */
.get-moving {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    text-align: left;
}

.panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.panel {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--accent) 12%, transparent),
        color-mix(in srgb, var(--primary) 6%, transparent)
    );
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.panel-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: fit-content;
}

.btn-primary {
    background-color: #0F1A3A;
    color: white;
}

.btn-primary:hover {
    background-color: #1a2952;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #0F1A3A;
    border: 2px solid #0F1A3A;
}

.btn-secondary:hover {
    background-color: #0F1A3A;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .panels {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .panel {
        padding: 30px;
        min-height: 240px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .panel-title {
        font-size: 1.3rem;
    }
    
    .get-moving {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .panel {
        padding: 25px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}


