:root {
  --ink: #0b0d0f;
  --charcoal: #15191d;
  --paper: #ffffff;
  --mist: #f1f4f5;
  --line: #d8dde0;
  --muted: #5d666d;
  --cyan: #20c7e6;
  --coral: #ff6b4a;
  --lime: #a7d93d;
  --page: min(1200px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  width: var(--page);
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
  min-height: 44px;
}

.brand img {
  display: block;
  width: 160px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
}

.site-nav .nav-contact {
  padding: 11px 17px;
  color: var(--ink);
  background: #fff;
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible {
  color: var(--ink);
  background: var(--cyan);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 92svh;
  overflow: hidden;
  color: #fff;
  background: var(--ink) url("hero-smart-marketing.png") center center / cover no-repeat;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 10, 0.48);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-top: 124px;
  padding-bottom: 92px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #087f91;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 650;
}

.hero-statement {
  max-width: 780px;
  margin: 0;
  font-size: 82px;
  font-weight: 760;
  line-height: 0.98;
}

.hero-statement span {
  display: block;
}

.hero-copy {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: var(--ink);
  background: var(--cyan);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #fff;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: var(--cyan);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link.light {
  color: #fff;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan);
}

.hero-next {
  position: absolute;
  right: max(32px, calc((100vw - 1200px) / 2));
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.section {
  padding-block: 112px;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 64px;
  align-items: start;
}

.section-heading h2,
.contact h2 {
  max-width: 900px;
  margin: 0;
  font-size: 60px;
  font-weight: 720;
  line-height: 1.05;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 80px;
}

.capability-item {
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}

.capability-item:nth-child(2) {
  border-color: var(--coral);
}

.capability-item:nth-child(3) {
  border-color: #68951d;
}

.item-number {
  margin: 0 0 50px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.capability-item h3,
.process-list h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.capability-item > p:last-child,
.process-list p,
.contact-action p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.signal-band {
  overflow: hidden;
  padding: 25px 32px;
  color: #fff;
  background: var(--ink);
}

.signal-track {
  display: flex;
  justify-content: center;
  gap: 34px;
  align-items: center;
  white-space: nowrap;
}

.signal-track span {
  font-size: 26px;
  font-weight: 700;
}

.signal-track i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--coral);
}

.signal-track i:nth-of-type(even) {
  background: var(--lime);
}

.approach {
  background: var(--mist);
}

.approach-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 100px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #bdc5c9;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid #bdc5c9;
}

.process-list li > span {
  color: #087f91;
  font-size: 12px;
  font-weight: 800;
}

.work-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 660px;
  color: #fff;
  background: var(--charcoal);
}

.work-visual {
  min-height: 560px;
  background: url("bg.png") center / cover no-repeat;
}

.work-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(40px, 6vw, 96px);
}

.work-content h2 {
  margin: 0 0 24px;
  font-size: 64px;
  line-height: 1.02;
}

.work-content > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.work-content .work-note {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.work-content .text-link {
  align-self: flex-start;
  margin-top: 10px;
}

.contact {
  border-bottom: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr;
  gap: 80px;
  align-items: end;
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.site-footer {
  padding-block: 44px;
  background: var(--paper);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 40px;
  align-items: end;
}

.footer-brand {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
}

.footer-layout > div:first-child > p:last-child,
.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #087f91;
}

/* Privacy policy */
.policy-page {
  background: var(--mist);
}

.policy-page .site-header {
  position: relative;
  border-color: #cad1d5;
}

.policy-page .site-nav a {
  color: var(--ink);
}

.policy-page .site-nav .nav-contact {
  color: #fff;
  background: var(--ink);
}

.policy-page .menu-button {
  color: var(--ink);
}

.policy-page .brand img {
  padding: 8px;
  background: var(--ink);
}

.policy-hero {
  padding: 92px 0 70px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 82px;
  line-height: 0.98;
}

.policy-summary {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.policy-meta {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 84px;
  justify-content: center;
  padding-block: 80px 120px;
}

.policy-nav {
  position: sticky;
  top: 28px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.policy-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
  color: #087f91;
}

.policy-content section {
  padding: 0 0 52px;
  margin: 0 0 52px;
  border-bottom: 1px solid #cbd2d6;
}

.policy-content section:last-child {
  margin-bottom: 0;
}

.policy-content h2 {
  margin: 0 0 22px;
  font-size: 28px;
}

.policy-content p,
.policy-content li {
  color: #3f484e;
  font-size: 16px;
  line-height: 1.75;
}

.policy-content ul {
  padding-left: 20px;
}

.policy-content a {
  color: #087f91;
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 40px, 720px);
  }

  .site-header {
    min-height: 72px;
  }

  .menu-button {
    display: block;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(11, 13, 15, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .policy-page .site-nav a {
    color: #fff;
    font-size: 22px;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    min-height: 88svh;
    background-position: 61% center;
  }

  .hero-scrim {
    background: rgba(5, 8, 10, 0.62);
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero-statement {
    font-size: 62px;
  }

  .hero-copy {
    max-width: 560px;
    font-size: 16px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: 50px;
  }

  .split-heading,
  .approach-layout,
  .contact-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .item-number {
    margin-bottom: 26px;
  }

  .signal-track {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .approach-layout {
    gap: 54px;
  }

  .work-section {
    grid-template-columns: 1fr;
  }

  .work-content h2 {
    font-size: 54px;
  }

  .policy-hero h1 {
    font-size: 64px;
  }

  .work-visual {
    min-height: 420px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .policy-layout {
    gap: 42px;
  }

  .policy-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 32px);
  }

  .section {
    padding-block: 76px;
  }

  .brand,
  .brand img {
    width: 145px;
  }

  .hero {
    min-height: 90svh;
    background-position: 68% center;
  }

  .hero-statement span {
    display: inline;
  }

  .hero-statement {
    font-size: 46px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: 40px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-next {
    right: 16px;
    bottom: 18px;
  }

  .hero-next span:first-child {
    display: none;
  }

  .capability-grid {
    margin-top: 54px;
  }

  .signal-band {
    padding-inline: 16px;
  }

  .signal-track span {
    font-size: 18px;
  }

  .work-visual {
    min-height: 320px;
  }

  .work-content {
    padding: 64px 24px;
  }

  .work-content h2 {
    font-size: 42px;
  }

  .contact-layout {
    gap: 42px;
  }

  .policy-hero {
    padding: 70px 0 52px;
  }

  .policy-hero h1 {
    font-size: 50px;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
