:root {
  color-scheme: light;
  --background: #fff;
  --foreground: #000;
  --muted: #2b2b2b;
  --measure: 36rem;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  text-rendering: optimizeLegibility;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem) 1.25rem;
}

.intro {
  width: min(100%, var(--measure));
  display: grid;
  justify-items: center;
  gap: clamp(1.75rem, 5vw, 3rem);
  text-align: center;
}

.logo {
  display: inline-block;
}

.logo-text {
  border: solid var(--foreground);
  border-width: 2px 2px 6px;
  padding: clamp(1.375rem, 5vw, 2rem);
}

.company-name {
  margin: 0 0 2px;
  font-size: clamp(3rem, 14vw, 6rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: clamp(-0.32rem, -0.9vw, -0.12rem);
  text-transform: capitalize;
}

.company-type {
  display: block;
  padding-left: 0.72em;
  font-size: clamp(0.9rem, 3vw, 1.68rem);
  font-weight: 500;
  letter-spacing: 0.72em;
  line-height: 1.1;
  text-transform: uppercase;
}

.lede {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.email {
  display: inline-block;
  color: var(--foreground);
  white-space: nowrap;
}

.email-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.email::before {
  content: attr(data-address);
  direction: rtl;
  unicode-bidi: bidi-override;
}

.email::before {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

@media (max-width: 420px) {
  .logo-text {
    width: min-content;
  }

  .company-name {
    font-size: clamp(2.75rem, 18vw, 4.25rem);
  }
}
