:root {
  color-scheme: light;
  --ink: #102128;
  --muted: #53666f;
  --snow: #f6fbfd;
  --surface: #ffffff;
  --line: #d9e7ed;
  --pine: #0d3b4c;
  --glacier: #4cb8d3;
  --ember: #ff6f3c;
  --sun: #ffd166;
  --shadow: 0 20px 70px rgba(13, 59, 76, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--snow);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 42%;
  z-index: -2;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 30, 38, 0.86) 0%, rgba(10, 30, 38, 0.66) 38%, rgba(10, 30, 38, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 30, 38, 0.32), rgba(10, 30, 38, 0.1));
}

.site-header {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.header-link {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}

.hero__content {
  align-self: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 76px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: 72px;
  line-height: 0.94;
  font-weight: 900;
}

.hero__lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.48;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.header-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.button--primary {
  color: #111c20;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.preview {
  background: var(--snow);
}

.preview__inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 64px;
}

.eyebrow--dark {
  color: var(--ember);
}

h2 {
  max-width: 360px;
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.08;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 214px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--pine);
  font-size: 13px;
  font-weight: 900;
  background: rgba(76, 184, 211, 0.16);
}

h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .hero {
    min-height: 86svh;
  }

  .hero__image {
    object-position: center bottom;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(10, 30, 38, 0.84) 0%, rgba(10, 30, 38, 0.56) 56%, rgba(10, 30, 38, 0.2) 100%),
      linear-gradient(90deg, rgba(10, 30, 38, 0.34), rgba(10, 30, 38, 0.18));
  }

  .site-header,
  .hero__content,
  .preview__inner {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    padding-top: 16px;
  }

  .header-link {
    display: none;
  }

  .hero__content {
    align-self: end;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 48px;
    line-height: 0.98;
  }

  .hero__lede {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.45;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .preview__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 0 48px;
  }

  h2 {
    max-width: 100%;
    font-size: 30px;
  }

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

  .feature-card {
    min-height: 0;
  }
}

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