@keyframes show {
  0% { opacity: 0; }
}

.section-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  padding: 2rem;
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  animation: show 1s ease-in backwards;
}
  
.hero-left { 
  grid-area: 1 / 1 / 2 / 2; 
  padding: 25%;
}

.hero-right { 
  grid-area: 1 / 2 / 2 / 3; 
  display: flex;
  flex-direction: column;
}

.hero-title {
  color: rgb(var(--twlo-red));
  font-family: 'TwilioSansDisplay-Extrabold', sans-serif;
  font-size: 6vmax;
  /* Negative text indent to optically left-align the capital T */
  /* text-indent: -1rem; */
  white-space: nowrap;
}

.hero-sub-title {
  font-size: 2vmax;
  max-width: 50ch;
  line-height: 1.6;
}

/* ==================== */
/* Magic Venn */
/* ==================== */

.magic-venn {
  width: var(--venn-size);
  height: var(--venn-size);
  position: relative;
}

.magic-venn-circle {
  box-sizing: content-box;
  width: calc(100% * 0.63);
  height: calc(100% * 0.63);
  border-radius: 100%;
  border: 10px solid rgb(var(--twlo-red));
}

.magic-venn-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-image: radial-gradient(rgb(var(--twlo-red)) 30%, transparent 30%);
  background-position: 6px 6px;
  background-size: 16px 16px;
  opacity: 0;
  transition: opacity 300ms ease-in;
}

:not(.has-no-hover).magic-venn-circle:hover::after,
.magic-venn-circle.is-dotted::after {
  opacity: 0.25;
}

.hero-link,
.hero-link-red {
  z-index: 2;
  color: inherit;
  text-align: center;
  font-size: calc(var(--venn-size) * 0.04);
  margin-top: 2rem;
}

.hero-link-red {
  font-family: 'TwilioSansDisplay-Extrabold', sans-serif;
  color: rgb(var(--twlo-red));
  letter-spacing: 1;
}

.magic-venn-circle .hero-link {
  margin-top: 0;
}

.magic-venn .hero-link {
  position: absolute;
}

.magic-venn .hero-link strong {
  display: block;
  font-weight: 900;
}

.magic-venn-top-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

.magic-venn-top-left .hero-link {
  top: 20%;
  left: 20%;
}

.magic-venn-top-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}

.magic-venn-top-right .hero-link {
  top: 20%;
  right: 20%;
}

.magic-venn-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.magic-venn-bottom-left .hero-link {
  bottom: 20%;
  left: 20%;
}

.magic-venn-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.magic-venn-bottom-right .hero-link {
  bottom: 20%;
  right: 20%;
}