:root {
  --blue-950: #001f42;
  --blue-900: #0d2a4c;
  --blue-850: #082649;
  --amber-500: #ffcc00;
  --white: #ffffff;
  --white-soft: #f7f7f7;
  --ink-muted: rgba(255, 255, 255, 0.74);
  --ink-subtle: rgba(255, 255, 255, 0.56);
  --panel-shadow: 0 -28px 80px rgba(0, 10, 26, 0.28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--blue-950);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 204, 0, 0.08), transparent 28rem),
    linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.46), transparent 72%);
}

.landing {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}

.hero {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 4.2vw, 56px) 0 clamp(24px, 3.6vw, 42px);
  place-items: center;
  text-align: center;
}

.brand-block {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.brand-logo {
  display: block;
  width: clamp(230px, 27vw, 390px);
  height: auto;
  filter: drop-shadow(0 26px 56px rgba(0, 0, 0, 0.24));
}

.company-name {
  margin: 0;
  color: var(--ink-subtle);
  font-size: clamp(0.68rem, 0.85vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.message-block {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  color: var(--amber-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  display: block;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--amber-500);
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 7.2vw, 5.85rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.intro {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--ink-muted);
  font-size: clamp(0.92rem, 1.25vw, 1.04rem);
  line-height: 1.48;
}

.contact-panel {
  position: relative;
  padding: 18px clamp(20px, 5vw, 64px) 20px;
  color: var(--blue-950);
  background: var(--amber-500);
  box-shadow: var(--panel-shadow);
}

.contact-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  content: "";
  background: var(--white);
}

.contact-grid {
  display: grid;
  width: min(1280px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 0;
  background: transparent;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 78px;
  gap: 12px;
  padding: 14px 20px;
  color: var(--blue-950);
  text-decoration: none;
  background: var(--amber-500);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  z-index: 1;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 31, 66, 0.18);
  transform: translateY(-2px);
}

a.contact-item:focus-visible {
  outline: 3px solid var(--blue-950);
  outline-offset: -6px;
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-value {
  overflow-wrap: anywhere;
  font-size: clamp(0.86rem, 0.95vw, 0.98rem);
  font-weight: 760;
  line-height: 1.22;
}

.website {
  background: var(--blue-950);
  color: var(--white);
}

.website:hover,
.website:focus-visible {
  color: var(--blue-950);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero {
    width: min(100% - 32px, 1120px);
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .brand-block {
    gap: 10px;
    margin-bottom: 24px;
  }

  .company-name {
    max-width: 280px;
    line-height: 1.5;
  }

  .eyebrow {
    gap: 10px;
    letter-spacing: 0.15em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 22px;
  }

  .intro {
    margin-top: 14px;
  }

  .contact-panel {
    padding: 16px 16px 12px;
  }

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

  .contact-item:last-child {
    grid-column: auto;
  }

  .contact-item {
    min-height: auto;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(3.05rem, 15vw, 3.85rem);
    letter-spacing: -0.07em;
    line-height: 0.94;
  }

  .message-block {
    width: 100%;
    overflow: hidden;
  }

  .intro {
    max-width: 32ch;
  }
}

@media (max-width: 480px) {
  h1 {
    max-width: 6.8ch;
    margin-inline: auto;
    font-size: clamp(3.25rem, 17vw, 4rem);
    line-height: 0.88;
    text-wrap: balance;
  }
}

@media (max-width: 640px) {
  h1 {
    max-width: 6.8ch;
    margin-inline: auto;
    font-size: clamp(3.1rem, 13vw, 4rem);
    line-height: 0.88;
    text-wrap: balance;
  }
}

body {
  overflow-x: hidden;
}

@media (max-width: 640px) {
  .intro {
    max-width: 30ch;
  }

  .eyebrow {
    max-width: 100%;
    justify-content: center;
  }
}


/* Final responsive tuning: one-screen composition, quieter headline, clean footer. */
@media (max-height: 820px) and (min-width: 760px) {
  .hero {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .brand-logo {
    width: clamp(220px, 22vw, 320px);
  }

  .brand-block {
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(2.7rem, 6.2vw, 4.7rem);
  }

  .intro {
    margin-top: 12px;
  }

  .contact-item {
    min-height: 68px;
    padding-block: 11px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: clamp(210px, 62vw, 260px);
  }

  .company-name {
    font-size: 0.62rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.15rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.98;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.62rem;
  }

  .intro {
    max-width: 31ch;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .contact-item {
    min-height: 54px;
    gap: 6px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-item {
  gap: 12px;
}

.contact-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: currentColor;
}

.contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-value {
  min-width: 0;
}

@media (max-width: 640px) {
  .contact-item {
    gap: 10px;
  }

  .contact-icon {
    width: 24px;
    height: 24px;
  }
}
