:root {
  color-scheme: dark;
  --ink: #101724;
  --night: #27282d;
  --panel: #34353b;
  --snow: #fffdf7;
  --muted: #c8c8ca;
  --yellow: #ffca16;
  --blue: #2e9ed2;
  --green: #17834a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--snow);
  background: var(--night);
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  background: rgb(16 23 36 / 72%);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: #f1f1f1;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 92vh);
  padding: 118px 20px 76px;
  place-items: end center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("/assets/norway.jpg") center 48% / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgb(14 30 45 / 16%) 28%, rgb(20 26 34 / 92%) 82%, var(--night) 100%);
  content: "";
}

.hero-inner {
  display: grid;
  width: min(760px, 100%);
  justify-items: center;
  text-align: center;
}

.taxi {
  width: min(390px, 72vw);
  margin-bottom: -6px;
  filter: drop-shadow(0 24px 22px rgb(0 0 0 / 30%));
}

.hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(50px, 9vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 5px 0 #111827, 0 9px 20px rgb(0 0 0 / 45%);
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  max-width: 620px;
  margin: 24px 0 30px;
  color: #f7f7f7;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 750;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.band {
  padding: 76px 20px;
}

.band-light {
  background: var(--snow);
  color: var(--ink);
}

.content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.content-narrow {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 34px 0 10px;
  font-size: 21px;
  letter-spacing: 0;
}

p,
li {
  font-size: 17px;
  line-height: 1.65;
}

.lead {
  max-width: 720px;
  color: #4c5564;
  font-size: 20px;
}

.feature-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #d9dde4;
  background: #d9dde4;
}

.feature {
  min-height: 225px;
  padding: 30px;
  background: white;
}

.feature strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 28px;
}

.page-hero {
  padding: 132px 20px 60px;
  background: #18283a url("/assets/norway.jpg") center 58% / cover no-repeat;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: rgb(12 22 33 / 72%);
  content: "";
}

.page-hero {
  position: relative;
}

.page-hero .content {
  position: relative;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 8vw, 72px);
  letter-spacing: 0;
}

.page-hero p {
  max-width: 650px;
  color: #e3e8ed;
}

.support-list {
  display: grid;
  margin: 42px 0;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid #d9dde4;
  background: #d9dde4;
}

.support-item {
  padding: 28px;
  background: white;
}

.support-item h3 {
  margin-top: 0;
}

.legal-meta {
  padding: 18px 0;
  border-top: 1px solid #d9dde4;
  border-bottom: 1px solid #d9dde4;
  color: #596273;
}

footer {
  padding: 34px 20px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  width: min(980px, 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 720px) {
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .brand span {
    display: none;
  }

  .nav-links {
    gap: 15px;
  }

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

  .hero {
    min-height: 820px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
