:root {
  color-scheme: dark;
  --bg: #020b16;
  --bg-elevated: #061522;
  --bg-soft: #0b2134;
  --ink: #f7fafc;
  --muted: #a9b4c2;
  --muted-strong: #d8dee7;
  --gold: #ffc94a;
  --gold-deep: #d69a24;
  --line: rgba(255, 255, 255, 0.13);
  --gold-line: rgba(255, 201, 74, 0.32);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --max: 1500px;
  --header: 88px;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(2, 11, 22, 0.96), rgba(2, 11, 22, 1) 72%),
    #020b16;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  width: 100%;
  min-height: var(--header);
  padding: 16px clamp(20px, 5vw, 80px);
  background: rgba(2, 11, 22, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 201, 74, 0.18), 0 12px 26px rgba(0, 0, 0, 0.28);
}

.brand-text {
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  line-height: 1;
  white-space: nowrap;
}

.brand-text span {
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: clamp(20px, 2.7vw, 46px);
  color: var(--muted-strong);
  font-size: 1rem;
  font-weight: 650;
  min-width: 0;
  white-space: nowrap;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  color: var(--gold);
  font-weight: 800;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 201, 74, 0.12);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.login-link:hover {
  background: rgba(255, 201, 74, 0.08);
  border-color: rgba(255, 201, 74, 0.66);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 160ms ease;
}

.mobile-menu {
  position: fixed;
  inset: var(--header) 0 auto 0;
  z-index: 19;
  display: grid;
  gap: 6px;
  padding: 18px 20px 24px;
  background: rgba(2, 11, 22, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 13px 4px;
  color: var(--muted-strong);
  font-size: 1.05rem;
  font-weight: 750;
}

.mobile-menu .login-link {
  margin-top: 8px;
  padding: 0 18px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 80px);
  width: min(var(--max), calc(100% - clamp(40px, 10vw, 160px)));
  min-height: max(640px, calc(100svh - 160px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 92px) 0 clamp(48px, 7vw, 94px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 9% 44% 8% -9%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 33, 52, 0.72), rgba(11, 33, 52, 0)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 78px
    );
  opacity: 0.42;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(5rem, 8.8vw, 9.25rem);
  font-weight: 850;
  line-height: 0.86;
}

.hero-line {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.25rem, 4.3vw, 5.1rem);
  font-weight: 820;
  line-height: 1.02;
}

.hero-line span {
  color: var(--gold);
}

.hero-subcopy {
  max-width: 660px;
  margin-bottom: 36px;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.35vw, 1.4rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.login-link:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #07111e;
  background: linear-gradient(180deg, #ffd563, #f2b739);
  box-shadow: 0 14px 34px rgba(242, 183, 57, 0.22);
}

.button.primary:hover {
  background: linear-gradient(180deg, #ffe18a, #ffc94a);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button.secondary:hover {
  border-color: rgba(255, 201, 74, 0.52);
  background: rgba(255, 201, 74, 0.06);
}

.button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stage {
  position: relative;
  min-width: 0;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 18% -7% -6% 6%;
  z-index: -1;
  border: 1px solid rgba(255, 201, 74, 0.16);
  border-radius: 8px;
  transform: skewX(-5deg);
}

.hero-art {
  width: 100%;
  max-height: 70svh;
  object-fit: contain;
  filter: drop-shadow(0 34px 56px rgba(0, 0, 0, 0.46));
}

.strategies-section,
.approach-section,
.performance-section,
.team-section,
.contact-section,
.site-footer {
  width: min(var(--max), calc(100% - clamp(40px, 10vw, 160px)));
  margin: 0 auto;
}

.strategies-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 82px);
  padding: clamp(56px, 7vw, 104px) 0;
  border-top: 1px solid var(--line);
}

.section-heading h2,
.approach-copy h2,
.performance-section h2,
.team-section h2,
.contact-section h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.15rem, 3.5vw, 4.5rem);
  font-weight: 820;
  line-height: 1.06;
}

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

.strategy-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  min-height: 300px;
  padding: 12px clamp(24px, 3vw, 44px) 4px;
  border-right: 1px solid var(--line);
}

.strategy-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 201, 74, 0.34);
  border-radius: 50%;
  color: var(--gold);
}

.strategy-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strategy-card h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.65rem, 2.1vw, 2.65rem);
  line-height: 1.05;
}

.strategy-card p,
.approach-copy p,
.process-list p,
.performance-section p,
.team-section p,
.contact-section p,
.site-footer p {
  color: var(--muted);
}

.strategy-card p {
  max-width: 360px;
  margin-bottom: 22px;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
}

.strategy-card::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  align-self: end;
  background: var(--gold);
  border-radius: 4px;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr) minmax(220px, 0.44fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(62px, 8vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.approach-copy p {
  max-width: 660px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-list span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-weight: 850;
}

.process-list strong {
  color: #fff;
  font-size: 1.08rem;
}

.process-list p {
  margin: 5px 0 0;
}

.identity-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 201, 74, 0.28);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: var(--shadow);
}

.identity-visual img {
  width: 100%;
  height: min(420px, 34vw);
  object-fit: cover;
  object-position: 50% 44%;
}

.performance-section,
.team-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 5vw, 88px);
  padding: clamp(58px, 8vw, 110px) 0;
  border-top: 1px solid var(--line);
}

.performance-section p,
.contact-section p {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
}

.team-principles {
  display: grid;
  gap: 12px;
}

.team-principles p {
  margin: 0;
  padding: 18px 20px;
  color: #fff;
  font-weight: 780;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-section {
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
}

.contact-section p,
.contact-actions {
  justify-self: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.brand.compact .brand-text {
  font-size: 1.4rem;
}

.brand.compact img {
  width: 34px;
  height: 34px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  font-size: 0.96rem;
  text-align: right;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 20px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  }

  .strategy-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .strategy-card {
    grid-template-columns: 92px 1fr;
    grid-template-rows: auto;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .strategy-card::after {
    grid-column: 2;
  }

  .approach-section {
    grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  }

  .identity-visual {
    grid-column: 1 / -1;
    max-width: 460px;
  }

  .identity-visual img {
    height: 320px;
  }
}

@media (max-width: 940px) {
  :root {
    --header: 72px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 12px 18px;
  }

  .desktop-nav,
  .desktop-login {
    display: none;
  }

  .menu-button {
    display: grid;
    place-content: center;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 1.48rem;
  }

  .hero,
  .strategies-section,
  .approach-section,
  .performance-section,
  .team-section,
  .contact-section,
  .site-footer {
    width: min(100% - 36px, var(--max));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 42px 0 52px;
  }

  .hero::before {
    inset: 0 10% 32% -18px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(4.15rem, 18vw, 6.4rem);
  }

  .hero-line {
    font-size: clamp(2.35rem, 10.5vw, 4.1rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-stage {
    width: min(100%, 620px);
    justify-self: center;
  }

  .hero-art {
    max-height: none;
  }

  .strategies-section,
  .approach-section,
  .performance-section,
  .team-section {
    grid-template-columns: 1fr;
  }

  .strategy-card {
    grid-template-columns: 68px 1fr;
    gap: 18px;
  }

  .strategy-icon {
    width: 68px;
    height: 68px;
  }

  .strategy-icon svg {
    width: 40px;
    height: 40px;
  }

  .strategy-card::after {
    width: 54px;
  }

  .identity-visual {
    max-width: 360px;
  }

  .identity-visual img {
    height: 260px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (min-width: 721px) and (max-width: 940px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
  }

  .desktop-nav,
  .desktop-login {
    display: flex;
  }

  .desktop-nav {
    justify-content: flex-end;
    gap: 12px;
    font-size: 0.82rem;
  }

  .desktop-login {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .menu-button {
    display: none;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand-text {
    font-size: 1.16rem;
  }
}

@media (max-width: 560px) {
  .mobile-menu {
    padding-bottom: 22px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.76rem;
  }

  .hero-subcopy,
  .approach-copy p,
  .performance-section p,
  .contact-section p {
    font-size: 1rem;
  }

  .section-heading h2,
  .approach-copy h2,
  .performance-section h2,
  .team-section h2,
  .contact-section h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-stage::after {
    inset: 18% -2% -2% 8%;
  }

  .strategy-card {
    grid-template-columns: 1fr;
  }

  .strategy-card::after {
    grid-column: 1;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .process-list span {
    grid-row: auto;
  }
}
