:root{
  --bg:#fbfbfb;
  --paper:#ffffff;
  --ink:#101114;
  --muted:#60646f;
  --line:#e6e9ee;
  --blue:#1b5fbf;
  --deep-blue:#083c8c;
  --red:#d92e2e;
  --red-dark:#b91f1f;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at top left, rgba(27,95,191,.06), transparent 22%),
    radial-gradient(circle at bottom right, rgba(217,46,46,.06), transparent 22%),
    var(--bg);
  color:var(--ink);
  font-family:'Outfit', Arial, sans-serif;
  line-height:1.85;
}
a{text-decoration:none;color:inherit}
.top-stripes{display:grid;grid-template-columns:1fr 1fr 1fr;height:10px}
.stripe.red{background:linear-gradient(90deg,var(--red),#ff6b6b)}
.stripe.blue{background:linear-gradient(90deg,var(--blue),#55a2ff)}
.nav, .hero-grid, .section, .footer{width:min(1180px, calc(100% - 32px));margin-inline:auto}
.nav{display:flex;justify-content:space-between;align-items:center;gap:18px;padding:24px 0 10px}
.nav-brand{font-weight:800;letter-spacing:.08em;font-size:14px}
.nav-links{display:flex;gap:18px;flex-wrap:wrap;color:var(--muted);font-size:14px}
.hero{padding:18px 0 48px}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:32px;align-items:center}
.eyebrow, .section-kicker{margin:0 0 10px;text-transform:uppercase;letter-spacing:.22em;font-size:12px;color:var(--muted)}
h1, h2, h3{font-family:'DM Serif Display', serif}
h1{font-size:clamp(52px,8vw,92px);line-height:.95;margin:0 0 16px;letter-spacing:.01em}
.hero-quote{margin:0 0 6px;font-size:26px;color:var(--deep-blue)}
.hero-text{margin:0;max-width:700px;color:#444a56;font-size:18px;text-align:justify;text-justify:inter-word}
.hero-pills{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}
.hero-pills span{padding:10px 14px;border-radius:999px;border:1px solid var(--line);background:#fff;font-size:13px;font-weight:600;box-shadow:0 8px 20px rgba(16,17,20,.05)}
.hero-logo-card{position:relative;min-height:520px;background:var(--paper);border:1px solid var(--line);border-radius:34px;display:flex;align-items:center;justify-content:center;overflow:hidden;box-shadow:0 20px 40px rgba(16,17,20,.06)}
.hero-logo-card img{width:100%;max-width:500px;position:relative;z-index:2}
.ring{position:absolute;border-radius:50%;border:2px solid transparent}
.ring-red{width:380px;height:380px;border-color:rgba(217,46,46,.22);top:40px;right:35px}
.ring-blue{width:500px;height:500px;border-color:rgba(27,95,191,.16);left:-60px;bottom:-80px}
.section{padding:28px 0 0}
.section-head{max-width:780px;margin-bottom:18px}
.section-head.center{text-align:center;margin-inline:auto}
h2{margin:0;font-size:clamp(34px,5vw,56px);line-height:1.02}
.text-card, .coming-card, .brand-card{background:var(--paper);border:1px solid var(--line);border-radius:28px;box-shadow:0 18px 36px rgba(16,17,20,.05)}
.text-card{padding:32px}
.text-card p{
  margin:0 0 16px;
  color:#404652;
  text-align:justify;
  text-justify:inter-word;
}
.text-card p:last-child{margin-bottom:0}
.brand-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.brand-card{position:relative;padding:26px;overflow:hidden}
.corner-line{position:absolute;top:0;right:0;width:140px;height:140px;background:
  linear-gradient(135deg, transparent 45%, rgba(27,95,191,.08) 46%, rgba(27,95,191,.08) 50%, transparent 51%),
  linear-gradient(135deg, transparent 58%, rgba(217,46,46,.08) 59%, rgba(217,46,46,.08) 63%, transparent 64%)}
.brand-card img{width:100%;height:240px;object-fit:contain;display:block;margin:0 auto 16px;background:#fff;border:1px solid #eef1f6;border-radius:20px}
h3{margin:0 0 10px;font-size:34px;line-height:1}
.brand-card p{
  margin:0 0 12px;
  color:#434854;
  text-align:justify;
  text-justify:inter-word;
}
.coming-card{padding:34px;text-align:center}
.coming-card p{margin:0 0 14px;color:#404652;text-align:justify;text-justify:inter-word;max-width:820px;margin-left:auto;margin-right:auto}
.coming-line{font-size:30px;color:var(--red-dark);text-align:center !important}
.footer{padding:42px 0 54px;text-align:center}
.footer-line{height:4px;border-radius:999px;margin:0 auto 10px}
.footer-line.red{background:linear-gradient(90deg,var(--red),#ff8b8b);width:180px}
.footer-line.blue{background:linear-gradient(90deg,var(--blue),#7dbdff);width:120px}
.footer p{margin:12px 0 0;font-size:13px;letter-spacing:.16em;color:var(--muted);text-transform:uppercase}
@media (max-width:900px){
  .nav{flex-direction:column;align-items:flex-start}
  .hero-grid, .brand-grid{grid-template-columns:1fr}
  .hero-logo-card{min-height:420px}
  .brand-card img{height:210px}
}
