:root {
  --bg: #0a1320;
  --bg-deep: #050a13;
  --orange: #ff6b1a;
  --orange-soft: #ff7d33;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.55);
  --headline-dim: rgba(255, 255, 255, 0.35);
  --max: 1440px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a { color: inherit; }

.page {
  position: relative;
  min-height: 100vh;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 6vw, 96px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ---------- background ---------- */
.bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: var(--bg);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      var(--bg-deep) 0%,
      rgba(10, 19, 32, 0.95) 30%,
      rgba(10, 19, 32, 0.65) 55%,
      rgba(10, 19, 32, 0.35) 100%),
    linear-gradient(to bottom,
      rgba(5, 10, 19, 0.4) 0%,
      rgba(5, 10, 19, 0) 30%,
      rgba(5, 10, 19, 0) 70%,
      rgba(5, 10, 19, 0.4) 100%);
}

/* ---------- logo ---------- */
.logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 20px;
  height: 38px;
  background: var(--orange);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.logo-its {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.15;
  color: var(--text);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: clamp(40px, 8vh, 96px) 0 clamp(24px, 4vh, 48px);
}

.headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(32px, 5vh, 56px);
}

.headline-1,
.headline-2 {
  display: block;
}

.headline-1 {
  color: var(--headline-dim);
}

.headline-2 {
  color: var(--text);
}

.eyebrow {
  color: var(--orange);
  font-weight: 600;
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.lede {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 clamp(28px, 4vh, 40px);
  max-width: 560px;
}

/* ---------- CTAs ---------- */
.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(28px, 4vh, 44px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--orange);
  color: #0a1320;
  outline: none;
}

.btn .arrow {
  font-size: 16px;
  line-height: 1;
}

/* ---------- contact line ---------- */
.contact {
  font-size: 14px;
  color: var(--text);
  margin: 0;
}

.contact a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact a:hover {
  color: var(--orange);
}

/* ---------- globe mark ---------- */
.globe {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: clamp(24px, 5vh, 64px);
  width: clamp(120px, 14vw, 200px);
  color: var(--text);
  opacity: 0.92;
  z-index: 2;
  pointer-events: none;
}

.globe svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .bg::after {
    background:
      linear-gradient(to bottom,
        var(--bg-deep) 0%,
        rgba(10, 19, 32, 0.92) 40%,
        rgba(10, 19, 32, 0.7) 100%);
  }

  .globe {
    width: 96px;
    right: 20px;
    bottom: 20px;
    opacity: 0.7;
  }

  .ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: space-between;
  }
}
