:root{
  --dq-bg:#F9F6EE;
  --dq-text:#111111;
  --dq-blue:#003C7A;
  --dq-border:#E5E5E5;
  --dq-muted:#666666;
  --dq-white:#FFFFFF;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;
  background:var(--dq-bg);
  color:var(--dq-text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  
}

img{
  max-width:100%;
  display:block;
}

.dq-container{
  width:100%;
  max-width:1120px;
  margin:auto;
  padding:clamp(40px,6vw,80px) clamp(20px,4vw,28px);
}

.dq-label{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  letter-spacing:2px;
  color:var(--dq-blue);
  font-weight:700;
  text-transform:uppercase;
  border:1px solid var(--dq-blue);
  padding:8px 14px;
  border-radius:999px;
  margin-bottom:28px;
}

.dq-title-xl{
  font-size:clamp(2.6rem,5vw,4.6rem);
  line-height:1.02;
  letter-spacing:-0.06em;
  font-weight:700;
  max-width:820px;
  margin:0 0 26px 0;
}

.dq-subtext{
  font-size:clamp(1.05rem,1.5vw,1.28rem);
  line-height:1.9;
  color:#333333;
  max-width:820px;
  margin:0 0 44px 0;
}

.dq-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:56px;
}

.dq-pill{
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  line-height:1;
}

.dq-pill-dark{
  background:#111111;
  color:#F9F6EE;
}

.dq-pill-blue{
  background:var(--dq-blue);
  color:#F9F6EE;
}

.dq-pill-outline{
  border:1px solid #111111;
  color:#111111;
}

.dq-author{
  display:flex;
  align-items:center;
  gap:14px;
  margin:-10px 0 56px 0;
}

.dq-author-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#111111;
  color:#F9F6EE;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:600;
}

.dq-author-label{
  margin:0;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--dq-muted);
}

.dq-author-link{
  font-size:17px;
  color:#111111;
  text-decoration:none;
  font-weight:600;
}

.dq-hero-block{
  background:#111111;
  border-radius:28px;
  padding:clamp(32px,5vw,64px);
  margin-bottom:72px;
}

.dq-hero-text{
  font-size:clamp(1.4rem,2.6vw,2rem);
  line-height:1.85;
  color:#F9F6EE;
  letter-spacing:-0.03em;
  max-width:900px;
  margin:0;
}

.dq-hero-image{
  margin:-10px 0 90px 0;
}

.dq-hero-image img{
  border-radius:28px;
  border:1px solid var(--dq-border);
}

.dq-caption{
  font-size:13px;
  line-height:1.8;
  color:var(--dq-muted);
  margin-top:16px;
  max-width:880px;
}

.dq-section{
  margin-bottom:clamp(70px,8vw,110px);
}

.dq-section-title{
  font-size:clamp(1.8rem,3vw,3rem);
  line-height:1.15;
  letter-spacing:-0.05em;
  font-weight:700;
  margin:0 0 28px 0;
  padding-left:18px;
  border-left:6px solid var(--dq-blue);
  max-width:900px;
}

.dq-body-text{
  font-size:clamp(1.02rem,1.3vw,1.18rem);
  line-height:1.95;
  color:#1F1F1F;
  max-width:820px;
  margin:0 0 28px 0;
}

.dq-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

.dq-card{
  background:#FFFFFF;
  padding:32px;
  border-radius:24px;
  border:1px solid var(--dq-border);
}

.dq-card h3{
  font-size:18px;
  color:var(--dq-blue);
  margin:0 0 12px 0;
  letter-spacing:-0.02em;
}

.dq-card p{
  font-size:16px;
  line-height:1.9;
  margin:0;
  color:#333333;
}

.dq-system-block{
  background:#FFFFFF;
  border:1px solid #EAEAEA;
  border-radius:28px;
  padding:clamp(30px,5vw,56px);
}

.dq-system-title{
  font-size:clamp(1.7rem,3vw,2.6rem);
  line-height:1.2;
  text-align:center;
  margin:0 0 40px 0;
  letter-spacing:-0.04em;
}

.dq-flow-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.dq-flow-box{
  width:min(100%,340px);
  padding:18px 24px;
  border-radius:16px;
  text-align:center;
  font-size:17px;
}

.dq-flow-dark{
  background:#111111;
  color:#F9F6EE;
}

.dq-flow-blue{
  background:var(--dq-blue);
  color:#F9F6EE;
}

.dq-flow-outline{
  background:#FFFFFF;
  border:2px solid #111111;
}

.dq-flow-outline-blue{
  background:#FFFFFF;
  border:2px solid var(--dq-blue);
}

.dq-arrow{
  font-size:22px;
  color:var(--dq-blue);
}

.dq-quote{
  background:var(--dq-blue);
  border-radius:28px;
  padding:clamp(36px,6vw,70px);
  margin-bottom:90px;
}

.dq-quote p{
  font-size:clamp(1.5rem,3vw,2.3rem);
  line-height:1.8;
  letter-spacing:-0.04em;
  color:#F9F6EE;
  max-width:920px;
  margin:0;
}

.dq-footer{
  padding-top:54px;
  border-top:1px solid #D9D9D9;
}

.dq-footer-label{
  font-size:13px;
  letter-spacing:2px;
  color:var(--dq-blue);
  text-transform:uppercase;
  margin-bottom:12px;
}

.dq-footer-title{
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.15;
  letter-spacing:-0.05em;
  margin:0 0 18px 0;
}

.dq-footer-text{
  font-size:17px;
  line-height:1.9;
  color:#444444;
  max-width:640px;
  margin:0;
}

@media(max-width:768px){

  .dq-container{
    padding:32px 18px 56px 18px;
  }

  .dq-label{
    font-size:11px;
    letter-spacing:1.6px;
  }

  .dq-title-xl{
    line-height:1.06;
  }

  .dq-subtext{
    line-height:1.85;
  }

  .dq-hero-block{
    border-radius:24px;
  }

  .dq-hero-image{
    margin:0 0 72px 0;
  }

  .dq-card{
    padding:26px;
  }

  .dq-section-title{
    padding-left:14px;
    border-left-width:5px;
  }

  .dq-system-block,
  .dq-quote{
    border-radius:24px;
  }

  .dq-flow-box{
    width:100%;
  }

}