:root {
  --ink: #071b3a;
  --ink-soft: #32465f;
  --muted: #64748b;
  --line: #d8e2ee;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --soft-blue: #eaf2f8;
  --accent: #098c6b;
  --accent-dark: #08765b;
  --blue: #174a83;
  --shadow: 0 24px 70px rgba(7, 27, 58, 0.11);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  gap: 4px;
  width: 34px;
}

.brand-mark span {
  display: block;
  height: 8px;
  border-radius: 2px;
  background: var(--ink);
  transform: skewY(-12deg);
}

.brand-mark span:nth-child(2) {
  width: 78%;
  background: var(--accent);
}

.brand-mark span:nth-child(3) {
  width: 58%;
  background: var(--blue);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 6px 0;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(360px, 1.07fr);
  align-items: center;
  min-height: min(820px, calc(92vh - 72px));
  padding: 60px max(24px, calc((100vw - var(--max)) / 2)) 58px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 36%, rgba(255, 255, 255, 0.35) 58%, rgba(243, 248, 252, 0.2) 100%),
    linear-gradient(115deg, rgba(244, 248, 251, 0) 0%, rgba(234, 242, 248, 0.72) 100%),
    url("assets/global-network.png") center right / cover no-repeat,
    linear-gradient(90deg, #ffffff 0%, #ffffff 55%, #f3f8fc 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.domain,
.section-label {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.domain {
  margin: 0 0 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy > p:not(.domain) {
  max-width: 570px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(8, 118, 91, 0.18);
}

.hero-visual {
  display: none;
}

.hero-visual img {
  width: 100%;
}

.section {
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
}

.split,
.relationship,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 86px);
}

.content-block {
  color: var(--ink-soft);
  font-size: 18px;
}

.content-block p:last-child,
.relationship p:last-child,
.compliance-panel p:last-child,
.contact p:last-child,
.footer-disclosure p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading.compact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 36px;
  max-width: none;
}

.section-heading.compact .section-label,
.section-heading.compact h2 {
  grid-column: 1;
}

.section-heading.compact p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.service-band,
.brands {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #ffffff;
}

.service-grid article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid p,
.relationship p,
.compliance-panel p,
.contact p {
  color: var(--ink-soft);
}

.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  position: relative;
}

.icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.icon.acquisition {
  border-radius: 50%;
}

.icon.ads::after {
  border-radius: 2px;
  transform: rotate(45deg);
}

.icon.brand-dev {
  border-radius: 4px 14px 4px 14px;
}

.icon.education::after {
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.icon.technology {
  border-style: dashed;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.industry-list span {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  background: #ffffff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-row span,
.email-card {
  display: flex;
  align-items: center;
  min-height: 112px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 46px rgba(7, 27, 58, 0.06);
}

.relationship {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), var(--line) calc(50% - 1px), var(--line) 50%, transparent 50%);
}

.relationship article {
  max-width: 560px;
}

.relationship h2 {
  font-size: clamp(27px, 3vw, 38px);
}

.compliance {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.96), rgba(11, 54, 97, 0.95)),
    var(--ink);
}

.compliance .section-label {
  color: #3ce1b4;
}

.compliance-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.compliance-panel p {
  margin: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
}

.contact {
  align-items: center;
  background: var(--soft-blue);
}

.email-card {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 160px;
}

.email-card span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.15;
}

.site-footer {
  padding: 58px max(24px, calc((100vw - var(--max)) / 2)) 26px;
  background: var(--ink);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.4fr;
  gap: 48px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand .brand-mark span {
  background: #ffffff;
}

.footer-brand .brand-mark span:nth-child(2) {
  background: #3ce1b4;
}

.footer-brand .brand-mark span:nth-child(3) {
  background: #70a7df;
}

.footer-brand small,
.site-footer p,
.site-footer nav a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
  font-weight: 850;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #ffffff;
}

.footer-disclosure {
  font-size: 14px;
}

.footer-disclosure strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
}

.copyright {
  margin: 24px 0 0;
  font-size: 13px;
}

.legal-page {
  background: var(--soft);
}

.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 76px 24px 96px;
}

.legal-card {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(38px, 6vw, 62px);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.legal-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 850;
}

.legal-card a {
  color: var(--accent-dark);
  font-weight: 850;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
    gap: 16px 22px;
  }

  .hero,
  .split,
  .relationship,
  .contact,
  .section-heading.compact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 56px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 251, 0.95)),
      url("assets/global-network.png") center top / cover no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
  }

  .hero-visual {
    display: none;
  }

  .section-heading.compact .section-label,
  .section-heading.compact h2,
  .section-heading.compact p {
    grid-column: auto;
    grid-row: auto;
  }

  .service-grid,
  .industry-list,
  .brand-row,
  .compliance-panel,
  .legal-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .relationship {
    background: #ffffff;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid article,
  .compliance-panel p,
  .brand-row span,
  .email-card {
    padding: 24px;
  }
}
