/* =========================================================
   Athyrion — Quality Management Solutions
   Shared design system (tokens, typography, layout primitives,
   header/nav/footer, buttons, cards, forms).
   Loaded by every public page; page-specific rules stay inline.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --navy-900:#0f1f42;
  --navy-800:#152a54;
  --navy-700:#1c3568;
  --navy-050:#eef1f8;
  --gold-600:#c17f22;
  --gold-500:#d99a3f;
  --gold-100:#fdeed7;
  --gold-050:#fbf6ee;
  --ink:#1c2333;
  --muted:#5b6472;
  --line:#e6e8ee;
  --bg:#ffffff;
  --bg-alt:#eef1f8;
  --cyan-500:#3fc4d9;
  --cyan-100:#e4f8fb;
  --cyan-glow:rgba(63,196,217,.35);
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --shadow-sm:0 1px 2px rgba(15,31,66,.06);
  --shadow-md:0 8px 24px rgba(15,31,66,.08);
  --container:1320px;
  --serif:'Source Serif 4', Georgia, serif;
  --sans:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;font-size:18px;}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{font-family:var(--serif);margin:0;color:var(--navy-900);font-weight:600;letter-spacing:-.01em;}
h1{font-size:clamp(2.5rem,4.6vw,3.6rem);line-height:1.08;}
h2{font-size:clamp(1.9rem,3vw,2.6rem);line-height:1.14;}
h3{font-size:clamp(1.3rem,1.6vw,1.55rem);line-height:1.25;}
h4{font-size:1.05rem;line-height:1.3;}
p{margin:0;}
p.lead,.lead{line-height:1.7;}
button{font-family:inherit;}

:focus-visible{
  outline:2px solid var(--gold-600);
  outline-offset:3px;
  border-radius:4px;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--sans);
  font-weight:600;
  font-size:1rem;
  padding:14px 24px;
  border-radius:10px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn svg{width:16px;height:16px;flex-shrink:0;transition:transform .15s ease;}
.btn:hover svg{transform:translateX(3px);}
.btn:hover{transform:translateY(-1px);}
@media (prefers-reduced-motion: reduce){
  .btn,.btn svg{transition:none;}
  .btn:hover{transform:none;}
}

.btn-gold{background:var(--gold-500);color:var(--navy-900);border-color:var(--gold-500);}
.btn-gold:hover{background:var(--gold-600);box-shadow:var(--shadow-md);}

.btn-navy{background:var(--navy-800);color:#fff;border-color:var(--navy-800);}
.btn-navy:hover{background:var(--navy-900);box-shadow:var(--shadow-md);}

.btn-outline{background:transparent;color:var(--navy-800);border-color:var(--line);}
.btn-outline:hover{border-color:var(--navy-800);background:var(--navy-050);}

.btn-outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.5);}
.btn-outline-light:hover{border-color:#fff;background:rgba(255,255,255,.08);}

.btn-white{background:#fff;color:var(--navy-900);border-color:#fff;}
.btn-white:hover{background:var(--gold-100);box-shadow:var(--shadow-md);}

.link-arrow{
  display:inline-flex;align-items:center;gap:6px;
  font-weight:600;color:var(--navy-800);font-size:1rem;
  border-bottom:1.5px solid transparent;
  transition:border-color .15s ease, gap .15s ease;
}
.link-arrow svg{width:14px;height:14px;transition:transform .15s ease;}
.link-arrow:hover{border-color:var(--navy-800);}
.link-arrow:hover svg{transform:translateX(3px);}

/* ---------- Eyebrow / pill ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--gold-600);
  background:var(--gold-100);
  padding:7px 14px;
  border-radius:999px;
  margin-bottom:20px;
}
.eyebrow::before{
  content:'';
  width:6px;height:6px;border-radius:50%;
  background:var(--gold-600);
  flex-shrink:0;
}
.eyebrow.on-dark{background:rgba(255,255,255,.1);color:var(--gold-500);}

.section-label{
  text-align:center;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold-600);
  margin-bottom:10px;
}
.section-title{
  text-align:center;
  font-size:clamp(1.9rem,3vw,2.6rem);
  margin-bottom:52px;
}

/* ---------- Header ---------- */
.site-header{
  border-bottom:1px solid rgba(255,255,255,.08);
  position:sticky;
  top:0;
  background:var(--navy-900);
  z-index:100;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:92px;
  gap:24px;
  max-width:1400px;
  padding-inline:clamp(24px, 5vw, 72px);
}
.logo{
  display:flex;
  align-items:center;
  gap:16px;
  flex-shrink:0;
}
.logo svg{width:42px;height:42px;flex-shrink:0;}
.logo-mark{width:54px;height:auto;flex-shrink:0;display:block;}
.logo-text{display:flex;flex-direction:column;line-height:1.1;}
.logo-text .wordmark{
  font-family:var(--serif);
  font-size: 1.75rem;
  font-weight:600;
  letter-spacing: .10em;
  color: #fff;
}
.logo-text .tagline{
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.13em;
  color:var(--gold-500);
  text-transform:uppercase;
  margin-top:3px;
}

.main-nav{display:flex;align-items:center;gap:36px;}
.main-nav a{
  font-size:1rem;
  font-weight:600;
  color:rgba(255,255,255,.88);
  padding:6px 2px;
  border-bottom:2px solid transparent;
  white-space:nowrap;
  transition:border-color .15s ease, color .15s ease;
}
.main-nav a:hover{color:var(--gold-500);}
.main-nav a.active{border-color:var(--gold-500);color:#fff;}

.header-actions{display:flex;align-items:center;gap:20px;flex-shrink:0;}
.header-actions .btn{font-size:1rem;}

.nav-toggle{
  display:none;
  background:none;border:none;cursor:pointer;
  width:40px;height:40px;
  align-items:center;justify-content:center;
}
.nav-toggle svg{width:24px;height:24px;color:#fff;}

/* ---------- Hero ---------- */
.hero{
  padding:96px 0 84px;
}
.hero .container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.hero h1{
  font-size:clamp(2.6rem,4.4vw,3.8rem);
  line-height:1.08;
  margin-bottom:24px;
}
.hero p.lead{
  font-size:1.15rem;
  line-height:1.7;
  color:var(--muted);
  max-width:52ch;
  margin-bottom:20px;
}
.hero .highlight-line{
  font-weight:700;
  color:var(--navy-900);
  margin-bottom:28px;
}
.hero-ctas{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:20px;}

/* ---------- Homepage hero: light, software-first ---------- */
.hero{
  background:linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
  padding:104px 0 112px;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 480' preserveAspectRatio='none'%3E%3Cpath d='M460 -30 C 610 100 520 270 900 420' stroke='%23d99a3f' stroke-width='2.5' fill='none' opacity='0.6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-size:100% 100%;
  pointer-events:none;
}
.hero .container{position:relative;z-index:1;}
.hero-product .container{grid-template-columns:.92fr 1.18fr;gap:40px;}
.hero .hero-helper{color:var(--muted);}
.hero-art-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:0 24px 60px rgba(15,31,66,.14), 0 0 0 1px var(--line), 0 0 46px var(--cyan-glow);
  position:relative;
}
@keyframes ai-pulse{
  0%,100%{opacity:.55;transform:scale(1);}
  50%{opacity:1;transform:scale(1.15);}
}
.ai-dot{
  display:inline-block;
  width:6px;height:6px;border-radius:50%;
  background:var(--cyan-500);
  margin-right:6px;
  animation:ai-pulse 2.2s ease-in-out infinite;
}
.ai-pulse-node{animation:ai-pulse-node 2.4s ease-in-out infinite;}
@keyframes ai-pulse-node{0%,100%{opacity:.4;}50%{opacity:1;}}
@media (prefers-reduced-motion: reduce){
  .ai-dot,.ai-pulse-node{animation:none;}
}

.hero-art{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-art img{width:100%;height:auto;display:block;}
.hero-art svg{width:100%;height:auto;display:block;}

/* ---------- Product screenshot presentation ---------- */
.hero-art-product{padding:8px;}
.hero-art-product img{
  width:100%;height:auto;
  object-fit:contain;
  filter:drop-shadow(0 30px 60px rgba(15,31,66,.18));
  animation:art-enter .7s ease-out both;
}
.hero-glow{
  position:absolute;
  inset:-10% -8%;
  background:
    radial-gradient(closest-side, rgba(63,196,217,.28), transparent 70%) 78% 18% / 55% 55% no-repeat,
    radial-gradient(closest-side, rgba(217,154,63,.16), transparent 70%) 15% 85% / 50% 50% no-repeat;
  filter:blur(30px);
  pointer-events:none;
  z-index:-1;
}
@keyframes art-enter{
  from{opacity:0;transform:translateY(16px) scale(.98);}
  to{opacity:1;transform:translateY(0) scale(1);}
}
@media (prefers-reduced-motion: reduce){
  .hero-art-product img{animation:none;}
}

.product-shot{
  position:relative;
  display:block;
}
.product-shot img{
  width:100%;height:auto;
  object-fit:contain;
  border-radius:var(--radius-md);
  filter:drop-shadow(0 20px 44px rgba(15,31,66,.14));
}
.product-shot .hero-glow{inset:-8% -6%;}
.product-shot.in-view img{animation:art-enter .7s ease-out both;}

/* ---------- Product showcase rows (alternating image/copy) ---------- */
.showcase-row{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:64px;
  align-items:center;
}
.showcase-row.reverse{grid-template-columns:.85fr 1.15fr;}
.showcase-row.reverse .product-shot{order:2;}
.showcase-row.reverse .showcase-copy{order:1;}
.showcase-copy ul{margin-top:18px;display:flex;flex-direction:column;gap:12px;}
.showcase-copy .check-row p{color:var(--muted);}
.showcase-copy .chip-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px;}
.showcase-copy .chip-list span{
  font-size:.85rem;font-weight:600;color:var(--navy-800);
  background:var(--navy-050);border:1px solid #d7deee;
  padding:6px 12px;border-radius:999px;
}
.band-dark .showcase-copy .chip-list span{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.16);color:#fff;}
@media (max-width:900px){
  .showcase-row,.showcase-row.reverse{grid-template-columns:1fr;gap:32px;}
  .showcase-row.reverse .product-shot{order:1;}
  .showcase-row.reverse .showcase-copy{order:2;}
}

/* ---------- Feature card grids ---------- */
.grid{
  display:grid;
  gap:24px;
}
.grid-6{grid-template-columns:repeat(6,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:28px 24px;
  transition:box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.card:hover{box-shadow:var(--shadow-md);border-color:#d9dde6;transform:translateY(-3px);}
.card .icon-badge{margin-bottom:16px;}
.card h3{font-family:var(--sans);font-size:1.08rem;font-weight:700;margin-bottom:8px;}
.card p{font-size:.96rem;line-height:1.6;color:var(--muted);}
@media (prefers-reduced-motion: reduce){
  .card{transition:none;}
  .card:hover{transform:none;}
}

.icon-badge{
  width:48px;height:48px;
  border-radius:50%;
  border:1.5px solid var(--gold-200,#f0d9b4);
  background:var(--gold-050);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.icon-badge svg{width:22px;height:22px;color:var(--gold-600);}
.icon-badge.navy{background:var(--navy-050);border-color:#d7deee;}
.icon-badge.navy svg{color:var(--navy-800);}

/* feature row (icon + text, no card border) */
.feature-row{display:flex;flex-direction:column;gap:14px;}
.feature-row .icon-circle{
  width:56px;height:56px;border-radius:50%;
  background:var(--navy-050);
  display:flex;align-items:center;justify-content:center;
}
.feature-row .icon-circle svg{width:24px;height:24px;color:var(--navy-800);}
.feature-row h4{font-family:var(--sans);font-size:1.08rem;font-weight:700;margin-bottom:8px;}
.feature-row p{font-size:.96rem;line-height:1.6;color:var(--muted);}

section.band{padding:100px 0;}
section.band.alt{background:var(--bg-alt);}
.band-divider{border-top:1px solid var(--line);}

.band-dark{
  background:var(--navy-900);
  background-image:radial-gradient(ellipse at top right, rgba(217,154,63,.12), transparent 60%);
  color:rgba(255,255,255,.72);
}
.band-dark h2,.band-dark h3,.band-dark h4{color:#fff;}
.band-dark .section-label{color:var(--gold-500);}
.band-dark .feature-row .icon-circle{background:rgba(255,255,255,.08);}
.band-dark .feature-row .icon-circle svg{color:var(--gold-500);}
.band-dark .feature-row p{color:rgba(255,255,255,.6);}
.band-dark .check-row svg{color:var(--gold-500);}
.band-dark .check-row p{color:rgba(255,255,255,.6);}
.band-dark .capability-card{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.14);}
.band-dark .capability-card h4{color:#fff;}
.band-dark .capability-card p{color:rgba(255,255,255,.6);}
.band-dark .icon-badge.navy{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.18);}
.band-dark .icon-badge.navy svg{color:var(--gold-500);}
.band-dark.band-divider{border-top-color:rgba(255,255,255,.1);}

/* ---------- CTA banner ---------- */
.cta-banner{
  background:var(--navy-900);
  background-image:radial-gradient(ellipse at top right, rgba(217,154,63,.14), transparent 60%);
  color:#fff;
  padding:44px 0;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(63,196,217,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,196,217,.06) 1px, transparent 1px);
  background-size:36px 36px;
  -webkit-mask-image:radial-gradient(ellipse at right, #000 0%, transparent 65%);
  mask-image:radial-gradient(ellipse at right, #000 0%, transparent 65%);
  pointer-events:none;
}
.cta-banner::after{
  content:'';
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 200' preserveAspectRatio='none'%3E%3Cpath d='M480 -20 C 600 60 540 140 900 170' stroke='%23d99a3f' stroke-width='2' fill='none' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-size:100% 100%;
  pointer-events:none;
}
.cta-banner .container{position:relative;z-index:1;}
.cta-banner .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.cta-banner-left{display:flex;align-items:center;gap:18px;}
.cta-mark{
  width:56px;height:56px;border-radius:50%;
  border:1.5px solid var(--gold-500);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.cta-mark svg{width:26px;height:26px;color:var(--gold-500);}
.cta-banner h3{color:#fff;font-size:1.4rem;line-height:1.3;}
.cta-banner h3 span{display:block;color:var(--gold-500);}
.cta-banner-mid{color:rgba(255,255,255,.75);font-size:1rem;max-width:34ch;}
.cta-banner-actions{display:flex;gap:12px;flex-shrink:0;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--navy-900);
  color:rgba(255,255,255,.65);
  padding:64px 0 32px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:32px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-grid h4{color:#fff;font-family:var(--sans);font-size:.88rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;margin-bottom:18px;}
.footer-grid ul li{margin-bottom:11px;}
.footer-grid ul li a{font-size:.96rem;transition:color .15s ease;}
.footer-grid ul li a:hover{color:var(--gold-500);}
.footer-brand .logo-text .wordmark{color:#fff;}
.footer-brand p{font-size:.92rem;line-height:1.6;margin-top:14px;max-width:32ch;color:rgba(255,255,255,.55);}
.footer-social{display:flex;gap:10px;margin-top:18px;}
.footer-social a{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.08);color:rgba(255,255,255,.65);transition:background .15s ease,color .15s ease;}
.footer-social a:hover{background:var(--gold-500);color:var(--navy-900);}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:28px;font-size:.86rem;flex-wrap:wrap;gap:12px;
  color:rgba(255,255,255,.45);
}
.footer-bottom a{color:rgba(255,255,255,.45);}
.footer-bottom a:hover{color:#fff;}

/* ---------- Page hero (interior pages) ---------- */
.page-hero .container{grid-template-columns:1fr 1fr;}

/* ---------- About page hero photo ---------- */
.about-hero{padding:104px 0;}
.about-hero .container{grid-template-columns:.8fr 1fr;gap:56px;}
.about-hero .lead{max-width:none;}
.about-hero-photo{border-radius:16px;overflow:hidden;box-shadow:0 24px 60px rgba(5,30,60,.14);}
.about-hero-photo img{width:100%;height:auto;display:block;object-fit:cover;object-position:center;}

/* ---------- About page blocks ---------- */
.pillar-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);
  padding:28px;
}
.pillar-card .icon-circle{
  width:48px;height:48px;border-radius:50%;background:var(--navy-050);
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.pillar-card .icon-circle svg{width:22px;height:22px;color:var(--navy-800);}
.pillar-card h3{font-family:var(--serif);font-size:1.2rem;margin-bottom:10px;}
.pillar-card p{font-size:.96rem;line-height:1.6;color:var(--muted);}

/* ---------- Contact page ---------- */
.contact-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:start;
}
.contact-help-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:28px;}
.help-card{
  border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:18px;display:flex;gap:12px;align-items:flex-start;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.help-card:hover{border-color:#d9dde6;box-shadow:var(--shadow-sm);}
.help-card .icon-badge{width:40px;height:40px;}
.help-card .icon-badge svg{width:18px;height:18px;}
.help-card h4{font-family:var(--sans);font-size:.92rem;font-weight:700;margin-bottom:4px;}
.help-card p{font-size:.84rem;line-height:1.5;color:var(--muted);}
.help-card svg.chev{width:15px;height:15px;color:var(--muted);margin-left:auto;flex-shrink:0;margin-top:4px;}

.form-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:36px;box-shadow:var(--shadow-sm);
}
.field{margin-bottom:20px;}
.field label{
  display:block;font-size:.88rem;font-weight:700;color:var(--navy-900);margin-bottom:8px;
}
.field label .req{color:var(--gold-600);}
.field label .opt{color:var(--muted);font-weight:500;}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:9px;
  padding:13px 15px;
  font-family:var(--sans);
  font-size:.96rem;
  color:var(--ink);
  background:#fff;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--navy-700);
  box-shadow:0 0 0 3px rgba(28,53,104,.1);
  outline:none;
}
.field textarea{resize:vertical;min-height:110px;}
.field-row{display:flex;gap:16px;margin-bottom:20px;}
.field-row .field{flex:1;margin-bottom:0;}
.form-note{
  display:flex;align-items:center;gap:8px;justify-content:center;
  font-size:.84rem;color:var(--muted);margin-top:16px;
}
.form-note svg{width:14px;height:14px;flex-shrink:0;}
.form-status{
  margin-top:16px;font-size:.92rem;font-weight:600;text-align:center;
  display:none;
}
.form-status.show{display:block;}
.form-status.ok{color:#1a7f4b;}
.form-status.err{color:#b3261e;}

.who-help-item{display:flex;gap:14px;padding:20px 0;border-bottom:1px solid var(--line);}
.who-help-item:last-child{border-bottom:none;}
.who-help-item .icon-badge{width:44px;height:44px;}
.who-help-item h4{font-family:var(--sans);font-size:1rem;font-weight:700;margin-bottom:6px;}
.who-help-item p{font-size:.92rem;line-height:1.6;color:var(--muted);}

/* ---------- Capability / platform cards ---------- */
.capability-card{
  background:#fff;
  border:1px solid var(--line);border-radius:var(--radius-md);
  padding:28px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.capability-card:hover{
  transform:translateY(-4px);
  border-color:var(--gold-500);
  box-shadow:var(--shadow-md), 0 0 0 1px var(--gold-100), 0 0 24px var(--cyan-glow);
}
.capability-card .icon-badge{margin-bottom:14px;}
.capability-card h4{font-family:var(--sans);font-size:1rem;font-weight:700;margin-bottom:6px;}
.capability-card p{font-size:.92rem;line-height:1.6;color:var(--muted);}
@media (prefers-reduced-motion: reduce){
  .capability-card{transition:none;}
  .capability-card:hover{transform:none;}
}

.check-row{display:flex;align-items:flex-start;gap:10px;}
.check-row svg{width:18px;height:18px;color:var(--gold-600);flex-shrink:0;margin-top:2px;}
.check-row h4{font-family:var(--sans);font-size:1rem;font-weight:700;margin-bottom:5px;}
.check-row p{font-size:.92rem;line-height:1.6;color:var(--muted);}

/* ---------- Our Approach: connected roadmap ---------- */
.approach-roadmap{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  position:relative;
  margin-top:8px;
}
.approach-step{
  position:relative;
  padding:0 14px;
  text-align:center;
}
.approach-step::before{
  content:'';
  position:absolute;
  top:23px;
  left:calc(-50% + 23px);
  width:calc(100% - 46px);
  height:2px;
  background:var(--line);
}
.approach-step:first-child::before{display:none;}
.approach-step::after{
  content:'';
  position:absolute;
  top:23px;
  left:0;
  transform:translate(-50%,-50%);
  width:6px;height:6px;
  border-radius:50%;
  background:var(--cyan-500);
  box-shadow:0 0 8px var(--cyan-glow);
  z-index:1;
}
.approach-step:first-child::after{display:none;}
.approach-num{
  width:46px;height:46px;
  border-radius:50%;
  background:var(--gold-500);
  color:var(--navy-900);
  font-family:var(--serif);
  font-weight:700;
  font-size:1.15rem;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
  position:relative;
  z-index:1;
  box-shadow:0 0 0 6px var(--bg);
}
.approach-step h4{font-family:var(--sans);font-size:1rem;font-weight:700;margin-bottom:6px;color:var(--navy-900);}
.approach-step p{font-size:.88rem;line-height:1.55;color:var(--muted);}
.band-dark .approach-step::before{background:rgba(255,255,255,.16);}
.band-dark .approach-num{box-shadow:0 0 0 6px var(--navy-900);}
.band-dark .approach-step h4{color:#fff;}
.band-dark .approach-step p{color:rgba(255,255,255,.6);}
@media(max-width:900px){
  .approach-roadmap{grid-template-columns:repeat(3,1fr);row-gap:36px;}
  .approach-step::before{display:none;}
}
@media(max-width:560px){
  .approach-roadmap{grid-template-columns:1fr;row-gap:28px;}
}

/* ---------- Utility ---------- */
.mt-56{margin-top:56px;}
.text-center{text-align:center;}

/* ---------- Responsive ---------- */
@media (max-width:1080px){
  .grid-6{grid-template-columns:repeat(3,1fr);}
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr;}
  .footer-grid .footer-col-4{display:none;}
  .contact-layout{grid-template-columns:1fr;}
}
@media (max-width:1370px){
  .main-nav{
    position:fixed;inset:92px 0 0 0;
    background:#fff;
    flex-direction:column;
    padding:24px 32px;
    gap:4px;
    display:none;
    height:calc(100vh - 92px);
    overflow-y:auto;
  }
  .main-nav.open{display:flex;}
  .main-nav a{color:var(--navy-800);}
  .main-nav a.active{color:var(--navy-900);}
  .main-nav a{padding:14px 0;border-bottom:1px solid var(--line);width:100%;}
  .header-actions .btn-gold{display:none;}
  .header-actions.mobile-open .btn-gold{display:inline-flex;margin-top:12px;}
  .nav-toggle{display:flex;}
}
@media (max-width:860px){
  .hero .container{grid-template-columns:1fr;}
  .hero-art{order:-1;max-width:420px;margin:0 auto;}
  .hero-product .container{grid-template-columns:1fr;}
  .hero-product .hero-art{order:1;max-width:100%;margin:32px auto 0;}
  .about-hero .container{grid-template-columns:1fr;}
  .about-hero-photo{order:1;max-width:100%;margin:32px auto 0;}
  .hero h1{font-size:clamp(2.1rem,7vw,2.6rem);}
  .grid-6,.grid-4,.grid-3,.grid-2{grid-template-columns:1fr 1fr;}
  .cta-banner .container{flex-direction:column;align-items:flex-start;text-align:left;}
  .cta-banner-actions{width:100%;flex-direction:column;}
  .cta-banner-actions .btn{width:100%;justify-content:center;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-brand{grid-column:1/-1;}
  section.band{padding:64px 0;}
}
@media (max-width:560px){
  html{font-size:16px;}
  .container{padding:0 20px;}
  .grid-6,.grid-4,.grid-3,.grid-2{grid-template-columns:1fr;}
  .hero h1{font-size:clamp(1.9rem,8vw,2.2rem);}
  .footer-grid{grid-template-columns:1fr;}
  .site-header .container{height:70px;padding-inline:16px;}
  .main-nav{inset:70px 0 0 0;height:calc(100vh - 70px);}
  .logo{gap:10px;min-width:0;}
  .logo-mark{width:38px;}
  .logo-text .wordmark{font-size:1.2rem;letter-spacing:.06em;}
  .logo-text .tagline{font-size:.56rem;letter-spacing:.09em;}
  section.band{padding:52px 0;}
}
