:root {
  --blue: #0a8aff;
  --blue-deep: #0076e0;
  --lime: #8fc73e;
  --coral: #fc7c56;
  --ink: #32325c;
  --muted: #546182;
  --line: rgba(84, 97, 130, 0.16);
  --bg: #ffffff;
  --bg-soft: #f9fcff;
  --font-display: "Catamaran", sans-serif;
  --font-body: "Roboto", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--muted);
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(10, 138, 255, 0.08), transparent 60%),
    radial-gradient(700px 360px at 0% 100%, rgba(143, 199, 62, 0.08), transparent 55%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 3.5rem);
}

.logo img {
  width: clamp(96px, 12vw, 132px);
  height: auto;
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

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

.header-contact .contact-icon {
  width: 1.7rem;
  height: 1.7rem;
  margin-top: 0;
  border-radius: 0.4rem;
}

.header-contact .contact-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.hero {
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding:
    clamp(5.5rem, 11vh, 7rem)
    clamp(1.25rem, 4vw, 3.5rem)
    clamp(1.5rem, 4vh, 2.5rem);
}

.hero-copy {
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 12ch;
}

.hero-lead {
  margin: 0 0 1.6rem;
  font-size: clamp(1rem, 1.7vw, 1.125rem);
  max-width: 36ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.9rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  transition:
    transform 0.2s var(--ease),
    background-color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(50, 50, 92, 0.22);
}

.btn-secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.contact-strip {
  list-style: none;
  margin: 0;
  padding: 1.15rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.85rem 1.75rem;
  border-top: 1px solid var(--line);
}

.contact-strip li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.contact-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-top: 0.15rem;
  border-radius: 0.45rem;
  background: rgba(10, 138, 255, 0.1);
  color: var(--blue);
}

.contact-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.contact-strip .label {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
}

.contact-strip a {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

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

.contact-strip span:not(.label):not(.contact-icon) {
  display: inline-block;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: min(100%, 560px);
  animation: float-soft 5.5s var(--ease) infinite alternate;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: rise-in 0.85s var(--ease) forwards;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.14s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.23s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.32s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.41s;
}

.hero-visual {
  opacity: 0;
  transform: translateX(18px);
  animation: rise-in 1s var(--ease) 0.25s forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes float-soft {
  to {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: clamp(5rem, 12vh, 6.5rem);
  }

  .hero-visual {
    display: none;
  }

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

  .contact-strip a,
  .contact-strip span:not(.label):not(.contact-icon) {
    white-space: normal;
  }

  .header-contact a:last-child {
    display: none;
  }
}

@media (max-width: 560px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *,
  .hero-visual,
  .hero-visual img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
