@font-face {
  font-family: "Outfit";
  src: url("assets/outfit-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #07140f;
  --muted: #5e6863;
  --paper: #f5f7f3;
  --white: #ffffff;
  --green: #21bf69;
  --teal: #0aa6a4;
  --blue: #087bd9;
  --line: rgba(7, 20, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(33, 191, 105, 0.07), transparent 28rem),
    var(--paper);
  font-family: "Outfit", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(100%, 1600px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 70px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--green), var(--blue));
  border-radius: 11px 4px 11px 4px;
  font-size: 23px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}

.brand-name {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.78fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  padding: clamp(60px, 8vh, 110px) 0;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 122px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

h1 em {
  color: transparent;
  background: linear-gradient(100deg, var(--green), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.intro {
  max-width: 640px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 350;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 560;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 7px 7px 0 var(--green);
}

.button-primary:hover {
  box-shadow: 4px 4px 0 var(--blue);
}

.button-quiet:hover {
  background: var(--white);
}

.services {
  margin: 54px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  color: var(--muted);
  list-style: none;
  font-size: 13px;
  font-weight: 500;
}

.services li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.services li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.visual {
  position: relative;
  min-height: min(620px, 65vh);
  padding: clamp(30px, 4vw, 58px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 20%, rgba(75, 255, 175, 0.55), transparent 22%),
    linear-gradient(145deg, #08a775 0%, #087fd2 62%, #055ab1 100%);
  border-radius: 4px;
  box-shadow: 18px 20px 0 rgba(7, 20, 15, 0.07);
  isolation: isolate;
}

.visual-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.42) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom right, black, transparent 78%);
}

.visual-kicker {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 520;
  line-height: 1.25;
}

.logo-card {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 430px);
  padding: 20px 22px 13px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 4px;
  box-shadow: 0 28px 70px rgba(0, 33, 64, 0.25);
  transform: rotate(-3deg);
  transition: transform 350ms cubic-bezier(.2,.8,.2,1);
}

.visual:hover .logo-card {
  transform: rotate(0deg) scale(1.015);
}

.logo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.launch-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 580;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: pulse 2.2s infinite;
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
}

.orbit-one {
  width: 290px;
  height: 290px;
  right: -80px;
  top: 17%;
}

.orbit-two {
  width: 160px;
  height: 160px;
  right: 58px;
  top: 31%;
}

.site-footer {
  min-height: 88px;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.025em;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 650ms cubic-bezier(.2,.8,.2,1) forwards;
}

.reveal-delay-1 { animation-delay: 90ms; }
.reveal-delay-2 { animation-delay: 180ms; }
.reveal-delay-3 { animation-delay: 270ms; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

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

  .visual {
    min-height: 500px;
  }
}

@media (max-width: 600px) {
  .site-shell {
    padding: 0 20px;
  }

  .site-header {
    min-height: 88px;
  }

  .brand-name {
    font-size: 18px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link span {
    font-size: 21px;
  }

  .hero {
    gap: 58px;
    padding: 48px 0 60px;
  }

  h1 {
    font-size: clamp(53px, 16.5vw, 78px);
  }

  .intro {
    margin-top: 28px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .services {
    margin-top: 42px;
    flex-direction: column;
  }

  .visual {
    min-height: 430px;
    padding: 28px;
  }

  .logo-card {
    width: 92%;
  }

  .site-footer {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
