:root {
  --ink: #050914;
  --navy: #0a1121;
  --paper: #f4f3ef;
  --white: #ffffff;
  --blue: #307cff;
  --ice: #89bbff;
  --violet: #8f8cff;
  --muted: #9aa5b8;
  --line: rgba(255, 255, 255, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: 0.35s;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(5, 9, 20, 0.82);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  letter-spacing: 0.11em;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  font-size: 8px;
  letter-spacing: 0.38em;
  margin-top: 7px;
}

.main-nav {
  display: flex;
  gap: 36px;
  font-size: 12px;
  color: #cbd3e1;
}

.main-nav a {
  transition: 0.25s;
}

.main-nav a:hover {
  color: #ffffff;
}

.header-cta {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid #7f91b0;
  padding: 8px 0;
}

.header-cta span {
  margin-left: 12px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  background: #ffffff;
  width: 24px;
  height: 1px;
  margin: 6px;
}

/* HERO */

.hero {
  min-height: 100svh;
  padding: 160px 7vw 82px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 76% 43%,
      #172e62 0,
      rgba(15, 25, 53, 0.78) 20%,
      var(--ink) 49%
    );
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to right, transparent, #000000);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.orb-one {
  width: 420px;
  height: 420px;
  background: #2255ff;
  right: 7%;
  top: 16%;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: #b24aff;
  left: 40%;
  bottom: -6%;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 29px;
  color: #9eabc1;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 10px;
  font-weight: 700;
}

.eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.eyebrow.dark {
  color: #657086;
}

.hero h1,
.section h2,
.section-dark h2,
.presence h2,
.contact h2 {
  font-size: clamp(48px, 5.3vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0;
  font-weight: 500;
}

.hero h1 em,
.section h2 em,
.section-dark h2 em,
.presence h2 em,
.contact h2 em {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ice);
}

.hero-intro {
  color: #aeb8ca;
  max-width: 535px;
  font-size: 16px;
  line-height: 1.8;
  margin: 33px 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 208px;
  padding: 17px 20px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  font-weight: 700;
}

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

.text-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.text-link span {
  margin-left: 8px;
}

.hero-visual {
  height: 580px;
  display: grid;
  place-items: center;
}

.mark-core {
  width: min(28vw, 345px);
  height: min(28vw, 345px);
  background: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 30px 100px rgba(33, 104, 255, 0.25);
  overflow: hidden;
}

.mark-core img {
  width: 91%;
  height: 91%;
  object-fit: cover;
}

.mark-ring {
  position: absolute;
  border: 1px solid rgba(132, 179, 255, 0.25);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.mark-ring::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8bbdff;
  box-shadow: 0 0 16px #5d9bff;
  top: 11%;
  left: 13%;
}

.mark-ring-a {
  width: 440px;
  height: 440px;
}

.mark-ring-b {
  width: 540px;
  height: 540px;
  animation-direction: reverse;
  animation-duration: 36s;
}

.mark-ring-b::before {
  top: auto;
  bottom: 4%;
  left: auto;
  right: 25%;
  background: var(--violet);
}

.visual-label {
  position: absolute;
  font-size: 8px;
  letter-spacing: 0.22em;
  color: #8ea0bc;
}

.label-one {
  top: 12%;
  right: 5%;
}

.label-two {
  bottom: 12%;
  left: 2%;
}

.scroll-cue {
  position: absolute;
  left: 5vw;
  bottom: 25px;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #74819a;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  display: inline-block;
  width: 1px;
  height: 45px;
  background: #53637e;
  margin-bottom: 12px;
}

/* GENERAL SECTIONS */

.section {
  background: var(--paper);
  color: var(--ink);
  padding: 145px 8vw;
  position: relative;
}

.section-number {
  position: absolute;
  left: 2vw;
  top: 150px;
  font-size: 9px;
  color: #8d94a1;
}

/* GROUP */

.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

.statement-copy h2 {
  font-size: clamp(45px, 4.8vw, 76px);
}

.statement-copy h2 em,
.industries h2 em {
  color: #355d9e;
}

.statement-body {
  padding-top: 65px;
}

.statement-body p {
  color: #566074;
  font-size: 14px;
  line-height: 1.9;
}

.statement-body .lead {
  font-size: 20px;
  line-height: 1.6;
  color: #171e2d;
}

.principles {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid #ccd0d7;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #727a89;
}

/* COMPANIES */

.section-dark {
  padding: 145px 8vw;
  background: #090e19;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: 80px;
}

.section-heading h2 {
  font-size: clamp(44px, 4.7vw, 76px);
}

.section-heading > p {
  font-size: 13px;
  line-height: 1.9;
  color: #8994a7;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.company-card {
  min-height: 520px;
  padding: 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #11192a, #090d17);
  transition: 0.5s;
}

.company-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
}

.company-card::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  right: -170px;
  top: -150px;
}

.violet-card::before {
  background: var(--violet);
}

.blue-card::before {
  background: var(--blue);
}

.card-index {
  font-size: 9px;
  color: #69758a;
}

.card-symbol {
  position: absolute;
  right: 38px;
  top: 35px;
}

.trade-symbol {
  width: 80px;
  height: 80px;
  border: 1px solid #59637a;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.trade-symbol i {
  position: absolute;
  width: 44px;
  height: 1px;
  background: #8c98ae;
}

.trade-symbol i:nth-child(2) {
  transform: rotate(60deg);
}

.trade-symbol i:nth-child(3) {
  transform: rotate(-60deg);
}

.smart-symbol {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
}

.smart-symbol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  margin-top: auto;
  margin-bottom: 55px;
  position: relative;
}

.card-content > p {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #77859d;
}

.card-content h3 {
  font-size: clamp(38px, 4vw, 62px);
  margin: 12px 0 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.card-content span {
  display: block;
  max-width: 380px;
  color: #9aa5b9;
  font-size: 13px;
  line-height: 1.8;
}

.company-card > a {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.company-card > a b {
  font-size: 18px;
  font-weight: 400;
}

/* INDUSTRIES */

.industries .section-heading {
  margin-bottom: 65px;
}

.section-heading.light h2 {
  font-size: clamp(44px, 4.7vw, 76px);
}

.industry-row {
  border-top: 1px solid #c7cbd2;
  display: grid;
  grid-template-columns: 70px 1.1fr 0.8fr 30px;
  align-items: center;
  padding: 31px 0;
  transition: 0.3s;
}

.industry-row:last-child {
  border-bottom: 1px solid #c7cbd2;
}

.industry-row:hover {
  padding-left: 14px;
  background: #eeede8;
}

.industry-row span {
  font-size: 9px;
  color: #8c94a2;
}

.industry-row h3 {
  font-size: 25px;
  font-weight: 500;
  margin: 0;
}

.industry-row p {
  font-size: 12px;
  color: #687185;
  line-height: 1.7;
  margin: 0;
}

.industry-row b {
  font-weight: 400;
  font-size: 21px;
}

/* GLOBAL PRESENCE */

.presence {
  min-height: 750px;
  position: relative;
  overflow: hidden;
  padding: 140px 8vw;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  background:
    radial-gradient(
      circle at 75% 60%,
      #142b5b 0,
      rgba(10, 17, 33, 0.8) 24%,
      #070b14 52%
    );
}

.presence-copy {
  position: relative;
  z-index: 2;
}

.presence h2 {
  font-size: clamp(45px, 4.8vw, 76px);
}

.presence-copy > p:last-child {
  max-width: 510px;
  color: #98a4b8;
  line-height: 1.9;
  font-size: 13px;
  margin-top: 35px;
}

.location-card {
  position: relative;
  z-index: 2;
  width: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 15, 29, 0.65);
  backdrop-filter: blur(8px);
  justify-self: center;
}

.location-card span {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: #8390a6;
}

.location-card strong {
  font-size: 28px;
  font-weight: 500;
  display: block;
  margin: 35px 0 8px;
}

.location-card p {
  font-size: 11px;
  color: #8794a9;
}

.location-card i {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #5e9aff;
  border-radius: 50%;
  right: 25px;
  top: 25px;
  box-shadow: 0 0 17px #5e9aff;
}

.map-lines {
  position: absolute;
  width: 670px;
  height: 670px;
  right: -60px;
  top: 40px;
  border: 1px solid rgba(97, 148, 236, 0.16);
  border-radius: 50%;
}

.map-lines i {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(97, 148, 236, 0.11);
  border-radius: 50%;
}

.map-lines i:nth-child(2) {
  inset: 25%;
}

.map-lines i:nth-child(3) {
  inset: 0 35%;
}

.map-lines i:nth-child(4) {
  inset: 35% 0;
}

/* VISION */

.vision {
  text-align: center;
  padding-top: 170px;
}

.vision .eyebrow {
  justify-content: center;
}

.vision blockquote {
  font-family: var(--serif);
  font-size: clamp(37px, 5vw, 72px);
  line-height: 1.25;
  max-width: 1050px;
  margin: 65px auto 90px;
  color: #172033;
}

.vision-bottom {
  border-top: 1px solid #cbd0d7;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #6f7888;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.vision-bottom p {
  margin: 0;
  font-weight: 700;
}

/* CONTACT */

.contact {
  background: #0a101e;
  padding: 135px 8vw 105px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
}

.contact h2 {
  font-size: clamp(52px, 6.2vw, 94px);
}

.contact h2 em {
  color: #80aff5;
}

.contact-copy > a {
  display: flex;
  justify-content: space-between;
  max-width: 510px;
  margin-top: 64px;
  padding: 17px 0;
  border-bottom: 1px solid #52617a;
  font-size: 14px;
}

.contact-copy > a span {
  font-size: 22px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 45px;
}

.contact-meta span {
  font-size: 8px;
  letter-spacing: 0.19em;
  color: #6f7d93;
}

.contact-meta p {
  font-size: 12px;
  line-height: 1.9;
  color: #a1abbc;
}

/* FOOTER */

footer {
  background: #060a12;
  border-top: 1px solid var(--line);
  padding: 30px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p,
footer > a:last-child {
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #6c778b;
  text-transform: uppercase;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* TABLET AND MOBILE */

@media (max-width: 900px) {
  .site-header {
    height: 74px;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    background: #080d18;
    padding: 30px 6vw;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(-140%);
    transition: 0.35s;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    transform: none;
  }

  .main-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 130px 6vw 75px;
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 66px);
  }

  .hero-visual {
    position: absolute;
    right: -110px;
    top: 16%;
    height: 370px;
    opacity: 0.27;
  }

  .mark-core {
    width: 230px;
    height: 230px;
  }

  .mark-ring-a {
    width: 300px;
    height: 300px;
  }

  .mark-ring-b {
    width: 370px;
    height: 370px;
  }

  .hero-copy {
    z-index: 3;
  }

  .hero-intro {
    max-width: 440px;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .section-dark {
    padding: 100px 7vw;
  }

  .section-number {
    display: none;
  }

  .statement,
  .section-heading,
  .presence,
  .contact {
    grid-template-columns: 1fr;
  }

  .statement {
    gap: 15px;
  }

  .statement-body {
    padding-top: 15px;
  }

  .section-heading {
    gap: 30px;
    margin-bottom: 50px;
  }

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

  .company-card {
    min-height: 440px;
  }

  .industry-row {
    grid-template-columns: 42px 1fr 25px;
    gap: 7px;
  }

  .industry-row p {
    grid-column: 2 / 3;
    margin-top: 8px;
  }

  .industry-row b {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .presence {
    padding: 105px 7vw;
    gap: 70px;
  }

  .location-card {
    justify-self: start;
  }

  .contact {
    padding: 100px 7vw;
    gap: 70px;
  }

  .contact-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  footer {
    flex-wrap: wrap;
    gap: 25px;
  }

  footer p {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-visual {
    right: -155px;
  }

  .principles {
    gap: 10px;
    flex-wrap: wrap;
  }

  .card-symbol {
    right: 24px;
  }

  .company-card {
    padding: 25px;
    min-height: 420px;
  }

  .industry-row h3 {
    font-size: 20px;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

  .vision-bottom {
    gap: 20px;
    text-align: left;
  }

  .section-heading > p {
    font-size: 12px;
  }
}

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

  .mark-ring {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Optimized SAMS Group logo */

.brand-mark {
  width: 38px;
  height: 38px;
  color: transparent;
  border: 0;
  overflow: hidden;
  background:
    #ffffff
    url("sams-group-icon-web.jpg")
    center / cover
    no-repeat;
  box-shadow: 0 0 20px rgba(48, 124, 255, 0.18);
}

/* Smaller hero logo on mobile */

@media (max-width: 900px) {
  .hero-visual {
    width: 260px;
    height: 260px;
    top: 105px;
    right: -30px;
    opacity: 0.24;
  }

  .mark-core {
    width: 155px;
    height: 155px;
  }

  .mark-ring-a {
    width: 220px;
    height: 220px;
  }

  .mark-ring-b {
    width: 275px;
    height: 275px;
  }

  .visual-label {
    display: none;
  }
}

/* Phone logo adjustment */

@media (max-width: 520px) {
  .hero-visual {
    width: 180px;
    height: 180px;
    top: 90px;
    right: -10px;
    opacity: 0.32;
  }

  .mark-core {
    width: 105px;
    height: 105px;
  }

  .mark-ring-a {
    width: 145px;
    height: 145px;
  }

  .mark-ring-b {
    width: 180px;
    height: 180px;
  }
}

/* Hide large hero logo on phones only */

@media (max-width: 520px) {
  .hero-visual {
    display: none;
  }
}
