:root {
  --ink: #303236;
  --ink-soft: #62676d;
  --orange: #f15a2a;
  --orange-dark: #d8471b;
  --blue: #1f5a7f;
  --teal: #2dc2c1;
  --purple: #be73dd;
  --lime: #a8c800;
  --paper: #ffffff;
  --mist: #f5f7f8;
  --line: #e4e8ea;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Roboto", Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(228,232,234,.8); backdrop-filter: blur(12px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 238px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: .92rem; font-weight: 500; }
.site-nav a { text-decoration: none; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--orange); }
.site-nav .nav-contact { padding: 9px 16px; border: 1px solid var(--line); border-radius: 3px; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; overflow: hidden; padding: clamp(76px, 10vw, 132px) 0 92px; }
.hero::before { content: ""; position: absolute; z-index: 0; width: 360px; height: 360px; right: -190px; top: 80px; border: 72px solid #f4f6f7; border-radius: 50%; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); align-items: center; gap: clamp(42px, 8vw, 100px); }
.eyebrow { margin: 0 0 20px; color: var(--orange); font-size: .76rem; line-height: 1.2; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3rem, 6.2vw, 5.6rem); line-height: .98; letter-spacing: -.055em; font-weight: 300; }
h1::after { content: ""; display: inline-block; width: .13em; height: .13em; margin-left: .07em; border-radius: 50%; background: var(--orange); }
.hero-intro { max-width: 660px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.65; }
.button { display: inline-flex; gap: 28px; align-items: center; padding: 14px 20px; background: var(--orange); color: #fff; text-decoration: none; font-weight: 600; border-radius: 3px; box-shadow: 0 10px 26px rgba(241,90,42,.18); transition: background .2s ease, transform .2s ease; }
.button:hover, .button:focus-visible { background: var(--orange-dark); transform: translateY(-2px); }
.platforms { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 0; margin: 38px 0 0; list-style: none; color: #767c82; font-size: .84rem; }
.platforms li:not(:last-child)::after { content: "/"; margin-left: 20px; color: #c9ced1; }
.hero-visual { position: relative; height: 460px; display: flex; align-items: end; justify-content: center; background: var(--blue); border-radius: 2px; overflow: hidden; box-shadow: 0 25px 65px rgba(31,90,127,.17); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(255,255,255,.13), transparent 35%); pointer-events: none; }
.hero-visual img { width: 76%; max-height: 91%; object-fit: contain; object-position: bottom; }
.visual-label { position: absolute; z-index: 2; top: 22px; left: 24px; color: rgba(255,255,255,.75); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }

.benefits { padding: 0 0 116px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.benefit { position: relative; padding: 34px 34px 0 0; }
.benefit + .benefit { padding-left: 34px; border-left: 1px solid var(--line); }
.benefit::before { content: ""; position: absolute; top: -2px; left: 0; width: 72px; height: 3px; background: currentColor; }
.benefit + .benefit::before { left: 34px; }
.benefit-orange { color: var(--orange); }
.benefit-teal { color: var(--teal); }
.benefit-purple { color: var(--purple); }
.benefit-number { display: block; margin-bottom: 40px; color: currentColor; font-size: .74rem; font-weight: 700; }
.benefit h3 { margin-bottom: 12px; color: var(--ink); font-size: 1.34rem; font-weight: 500; }
.benefit p { max-width: 300px; margin-bottom: 0; color: var(--ink-soft); }

.section { padding: clamp(88px, 10vw, 140px) 0; }
.section h2, .contact h2 { margin-bottom: 28px; font-size: clamp(2.35rem, 4.7vw, 4.5rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 300; }
.services { background: var(--mist); }
.services-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); }
.section-heading { position: sticky; top: 130px; align-self: start; }
.services-copy .lead { max-width: 620px; margin-bottom: 42px; color: var(--ink-soft); font-size: 1.15rem; }
.service-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid #d8dddf; }
.service-list li { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid #d8dddf; }
.service-list li > span { color: var(--orange); font-size: .75rem; font-weight: 700; }
.service-list h3 { margin-bottom: 5px; font-size: 1.12rem; font-weight: 600; }
.service-list p { margin-bottom: 0; color: var(--ink-soft); }

.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(60px, 11vw, 160px); }
.about-mark { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--ink); color: white; border-radius: 50%; box-shadow: 20px 20px 0 #f0f2f3; }
.about-mark span { color: var(--orange); font-size: clamp(4.2rem, 9vw, 7.5rem); line-height: .9; font-weight: 300; letter-spacing: -.08em; }
.about-mark small { margin-top: 13px; font-size: .85rem; letter-spacing: .13em; text-transform: uppercase; }
.about-copy p:not(.eyebrow) { max-width: 700px; color: var(--ink-soft); font-size: 1.07rem; }
.about-signoff { display: flex; flex-direction: column; margin-top: 34px; padding-left: 18px; border-left: 3px solid var(--orange); }
.about-signoff strong { font-weight: 600; }
.about-signoff span { color: var(--ink-soft); font-size: .92rem; }

.references { background: var(--mist); }
.references-head { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 50px; }
.references-head h2 { margin-bottom: 0; }
.text-link { flex: 0 0 auto; margin-bottom: 12px; color: var(--ink); text-decoration-color: var(--orange); text-underline-offset: 6px; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
figure { margin: 0; padding: 34px; background: #fff; border-top: 3px solid var(--orange); min-height: 285px; display: flex; flex-direction: column; justify-content: space-between; }
blockquote { margin: 0 0 36px; font-size: 1.12rem; line-height: 1.65; }
figcaption { color: var(--ink-soft); font-size: .84rem; font-weight: 600; }

.contact { padding: clamp(80px, 10vw, 125px) 0; background: var(--blue); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: clamp(50px, 9vw, 120px); }
.contact h2 { max-width: 720px; margin-bottom: 20px; }
.contact p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.eyebrow-light { color: #9ac8e4; }
.contact-actions { border-top: 1px solid rgba(255,255,255,.25); }
.contact-actions a { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 24px 2px; border-bottom: 1px solid rgba(255,255,255,.25); text-decoration: none; }
.contact-actions span { color: rgba(255,255,255,.62); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-actions strong { text-align: right; font-size: 1.08rem; font-weight: 500; }
.contact-actions a:hover strong, .contact-actions a:focus-visible strong { color: #ffd0c0; }

.site-footer { padding: 25px 0; background: #173f58; color: rgba(255,255,255,.62); font-size: .78rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 28px; }
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 24px; }
.footer-inner a { text-decoration: none; }
.footer-inner a:hover, .footer-inner a:focus-visible { color: #fff; }

:focus-visible { outline: 3px solid #f7a98f; outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; } }

@media (max-width: 900px) {
  .hero::before { display: none; }
  .container { width: min(calc(100% - 36px), var(--max)); }
  .header-inner { min-height: 76px; }
  .brand { width: 205px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 18px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(0,0,0,.08); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 6px; }
  .site-nav .nav-contact { border: 0; padding: 12px 6px; }
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { height: 380px; width: min(100%, 590px); }
  .hero-visual img { width: 63%; }
  .services-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .section-heading { position: static; }
  .about-mark { width: min(55vw, 330px); }
  .quote-grid { grid-template-columns: 1fr; }
  figure { min-height: 0; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .brand { width: 180px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero { padding: 60px 0 72px; }
  .hero-visual { height: 300px; }
  .platforms { gap: 7px 12px; }
  .platforms li:not(:last-child)::after { margin-left: 12px; }
  .benefits { padding-bottom: 82px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { padding: 28px 0; }
  .benefit + .benefit { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .benefit + .benefit::before { left: 0; }
  .benefit-number { margin-bottom: 20px; }
  .section { padding: 82px 0; }
  .section h2, .contact h2 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .service-list li { grid-template-columns: 38px 1fr; gap: 14px; }
  .about-mark { width: min(72vw, 300px); }
  .references-head { align-items: start; flex-direction: column; margin-bottom: 34px; }
  figure { padding: 27px; }
  .contact-actions a { align-items: flex-start; flex-direction: column; gap: 5px; }
  .contact-actions strong { text-align: left; }
  .footer-inner, .footer-inner nav { flex-direction: column; gap: 10px; }
}
