@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300..700&family=Megrim&display=swap");
* {
  box-sizing: border-box;
}

body {
  background: radial-gradient(at top left, rebeccapurple, transparent 80%) center/cover fixed, radial-gradient(at top right, blue, transparent 80%) center/cover fixed, black;
  color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font: 20px "Josefin Sans", sans-serif;
}

h1,
h2,
h3 {
  font-family: megrim;
  text-align: center;
  letter-spacing: -0.03em;
}

h4 {
  font-size: 1.5em;
}

a {
  color: inherit;
  transition: all 0.2s;
}

em {
  font-size: 0.8em;
}

hr {
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2666666667);
  width: 80%;
}

img {
  max-width: 100%;
}

iframe {
  border: 0;
}

input[type=text],
input[type=password],
input[type=number],
input[type=submit],
input[type=email],
input[type=date],
input[type=time],
button,
a.button,
textarea,
select {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.5em;
  border: 0;
  padding: 0.4em;
  font: inherit;
}
input[type=text][disabled],
input[type=password][disabled],
input[type=number][disabled],
input[type=submit][disabled],
input[type=email][disabled],
input[type=date][disabled],
input[type=time][disabled],
button[disabled],
a.button[disabled],
textarea[disabled],
select[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

button,
a.button,
input[type=submit] {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}
button:hover,
a.button:hover,
input[type=submit]:hover {
  background: rgba(255, 255, 255, 0.2666666667);
}
button:active,
a.button:active,
input[type=submit]:active {
  transform: translatey(2px);
  box-shadow: 0 0 0 transparent;
}

input[type=color] {
  width: 4em;
  height: 2em;
  border: 0;
  padding: 0;
  vertical-align: middle;
}

textarea {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  resize: none;
}

select, input[type=number] {
  font-size: 20px;
}

button {
  cursor: pointer;
}

.page-img {
  height: 100px;
}

.text-img {
  height: 2em;
  vertical-align: middle;
}

.ekdcr {
  font-family: ekdcr;
}

#bg-messages {
  position: fixed;
  top: 30vh;
  left: 0;
  width: 100vw;
  font-size: 12vw;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  opacity: 0.5;
}

#bg-v {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
#bg-v path {
  fill: none;
  stroke: white;
  stroke-width: 4px;
}
#bg-v #v_segment {
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  animation: draw 1.5s ease-in 1s 1 forwards;
}
#bg-v #upper_segment {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: draw 0.2s linear 2.6s 1 forwards;
}
#bg-v #lower_segment {
  stroke-dasharray: 109;
  stroke-dashoffset: 109;
  animation: draw 1.2s ease-out 2.9s 1 forwards;
}
#bg-v text {
  text-anchor: middle;
  fill: white;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
#bg-v {
  opacity: 0.1;
}

#trigram {
  display: block;
  margin: 0 auto;
  width: 95%;
  max-width: 666px;
}
#trigram path {
  fill: none;
  stroke: white;
}
#trigram circle {
  cursor: pointer;
  transition: all 0.3s;
  fill: transparent;
  stroke: white;
}
#trigram circle:hover {
  stroke-width: 2;
}
#trigram circle:active {
  stroke-width: 3;
}

.svg-article {
  display: none;
  position: absolute;
  top: 60%;
  left: 20%;
  width: 80%;
  max-width: 500px;
  transition: all 0.8s;
  font-size: 0.8em;
  padding: 0;
}

.blurred {
  filter: blur(3px);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

strong {
  font-weight: bold;
}

.labeltext {
  font-size: 4px;
  fill: white;
}

@keyframes self {
  to {
    cy: 46%;
  }
}
#self {
  animation: self 2s ease-in-out 0s infinite alternate;
}

#ascension {
  animation: self 2s ease-in-out -0.5s infinite alternate;
}

@keyframes society {
  from {
    cy: 19%;
  }
  to {
    cy: 20%;
  }
}
#society {
  animation: society 2s ease-in-out -0.5s infinite alternate;
}

@keyframes technology {
  from {
    cy: 80%;
  }
  to {
    cy: 81%;
  }
}
#technology {
  animation: technology 2s ease-in-out -1s infinite alternate;
}

@keyframes society-self {
  from {
    d: path("M 79,13 L 33,23");
  }
  to {
    d: path("M 79,14 L 33,24");
  }
}
#society-self {
  animation: society-self 2s ease-in-out 0s infinite alternate;
}

@keyframes technology-society {
  from {
    d: path("M 82,38 L 87,21");
  }
  to {
    d: path("M 82,39 L 87,22");
  }
}
#technology-society {
  animation: technology-society 2s ease-in-out -0.5s infinite alternate;
}

main p, main ul, main form {
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.4em;
}

section {
  display: none;
  padding: 1em 0;
  opacity: 0;
  transition: opacity 0.3s;
}

#welcome {
  display: block;
  opacity: 1;
}
#welcome img {
  display: block;
  width: 400px;
  margin: 0 auto;
}

#login {
  margin-top: 2em;
}

blockquote {
  max-width: 1000px;
  clear: both;
}

fieldset {
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  border-radius: 0.5em;
  padding: 0.5em;
  margin: 2em auto;
  max-width: 1000px;
}

legend {
  font-size: 1.2em;
  padding: 0.5em;
}

.vandergrid {
  position: relative; /* for svg-articles */
}
.vandergrid div {
  min-height: 200px;
  background: transparent center/auto 70% no-repeat;
}
.vandergrid .l1, .vandergrid .l4 {
  grid-area: l1;
}
.vandergrid .r1, .vandergrid .r4 {
  grid-area: r1;
}
.vandergrid .l2, .vandergrid .l5 {
  grid-area: l2;
}
.vandergrid .r2, .vandergrid .r5 {
  grid-area: r2;
}
.vandergrid .l3, .vandergrid .l6 {
  grid-area: l3;
}
.vandergrid .r3, .vandergrid .r6 {
  grid-area: r3;
}
.vandergrid .r1 {
  background-image: url("images/enlightenment2.png");
}
.vandergrid .l2 {
  background-image: url("images/complete.png");
}
.vandergrid .r3 {
  background-image: url("images/together2.png");
}
.vandergrid .r4 {
  background-image: url("images/V0628.png");
}
.vandergrid .l5 {
  background-image: url("images/V0915.png");
}
.vandergrid .r6 {
  background-image: url();
}
.vandergrid img {
  max-height: 200px;
}

.triad {
  text-align: center;
  padding: 1em;
}

article {
  background: rgba(17, 17, 17, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #eef;
  padding: 1em;
  margin: 0 auto;
  border-top: 1px solid mediumpurple;
  border-radius: 0 2em;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2666666667);
}
article h1, article h2, article h3, article p, article header {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

blockquote,
#myaccount-grid > div,
#pass-grid > div {
  width: 100%;
  background: rgba(255, 255, 255, 0.2666666667);
  padding: 0.5em;
  border-radius: 0.2em;
}
blockquote p,
#myaccount-grid > div p,
#pass-grid > div p {
  padding: 0.5rem;
}
blockquote a,
#myaccount-grid > div a,
#pass-grid > div a {
  text-decoration: underline;
}

#pass-grid > div {
  text-align: center;
}

.badge {
  font-size: 0.8em;
  font-weight: bold;
  background: gray;
  color: white;
  text-transform: uppercase;
  padding: 0.5em;
  border-radius: 0.5em;
  opacity: 0.8;
  line-height: 2.2em;
  white-space: nowrap;
}
.badge.black {
  background: black;
}
.badge.white {
  background: white;
  color: gray;
}
.badge.gray {
  background: gray;
}
.badge.iron {
  background: linear-gradient(45deg, indianred, #942);
}
.badge.pearl {
  background: linear-gradient(45deg, #acf, #cbf);
}
.badge.green {
  background: radial-gradient(green, darkgreen);
}
.badge.blue {
  background: radial-gradient(#24f, #24b);
}
.badge.goldenoak {
  background: radial-gradient(gold, goldenrod);
}

.vid {
  font-size: 0.8em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6666666667);
}

.branch {
  display: block;
  width: 2px;
  height: 6em;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2666666667);
}

#sessions input[type=checkbox],
#sessions input[type=radio] {
  display: none;
}

table th, table td {
  background: rgba(255, 255, 255, 0.0666666667);
}
table img {
  height: 2em;
  vertical-align: middle;
}

.spinner {
  width: 100px;
}

.thankyou {
  display: none;
}
.thankyou img {
  height: 3em;
}

#home-paragraphs {
  text-align: left;
}
#home-paragraphs a {
  text-decoration: underline;
}

#vanderself ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

#pts-diagram {
  width: 100%;
}

#scrolly-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

#scrolly {
  width: 2000px;
  height: 200px;
  background-image: url(/images/scrolly-bg.png) center/1000px 200px repeat-x;
  animation: scrolly 20s linear 1s infinite;
}

@keyframes scrolly {
  from {
    transform: translatex(0);
  }
  to {
    transform: translatex(-1000px);
  }
}
.caps {
  text-transform: uppercase;
}

#debt {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.8666666667);
  z-index: 666666666;
}

#debt-inner {
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  background: white;
  color: #600;
  max-width: 600px;
  padding: 0.5em;
  border-radius: 0.5em;
  text-align: left;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.4);
}

#vanderstand {
  background: #600;
  color: white;
}

.bignumber {
  text-align: center;
  font: 4em "Megrim";
}

.bigletter {
  font-size: 2em;
  margin: 0;
  padding: 0;
  text-align: center;
}

.small {
  font-size: 0.8em;
}

#stats {
  display: grid;
  grid: 1fr 1fr 1fr/auto-flow;
  text-align: center;
  border-radius: 0;
}
#stats > div {
  padding: 1em;
}

.censored {
  background: black;
  color: black;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

#img-row {
  text-align: center;
}
#img-row img {
  width: 60px;
  vertical-align: middle;
}

#login {
  text-align: center;
}

/* ----- Join the Family form  ----- */
#join fieldset {
  display: grid;
  grid-gap: 1em;
  align-items: center;
}

#join textarea {
  align-self: stretch;
}

#join fieldset p,
#referral-explainer {
  font-size: 0.9em;
}

#join #submit-button {
  justify-self: center;
}

/* ----- Create Account page ----- */
#create-account #choose-a-passcolor #passcolor {
  display: none;
  margin: 1em auto;
}

#create-account #choose-a-passcolor #use-passcolor:checked + #passcolor {
  display: block;
}

#create-account #choose-passtune {
  display: none;
}

#create-account #use-passtune:checked + #choose-passtune {
  display: block;
}

#pass-grid {
  display: grid;
  grid: 1fr/1fr 1fr 1fr 1fr;
  grid-gap: 1em;
}

#pass-grid h3 {
  margin-bottom: 0;
}

/* ----- Marketplace ----- */
#marketplace-container {
  position: relative;
  min-height: 400px;
  text-align: center;
}

#marketplace-sidebar {
  list-style-type: none;
  padding: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.1333333333);
}
#marketplace-sidebar li {
  display: inline-block;
  padding: 0.5em;
  cursor: pointer;
}
#marketplace-sidebar li:hover {
  background: rgba(255, 255, 255, 0.1333333333);
}
#marketplace-sidebar::before {
  content: "Categories";
  display: block;
  font-variant: all-small-caps;
}

.pane {
  display: none;
}

.feature-row {
  display: grid;
  grid: auto auto/auto;
  align-items: stretch;
  width: 95%;
  margin: 3em auto;
  overflow: hidden;
}
.feature-row h2 {
  font-size: 2rem;
}
.feature-row p {
  padding: 0;
}
.feature-row img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.feature-row a.button {
  background: rebeccapurple;
  color: white;
  margin: 1em;
}

#badge-page .feature-row img {
  max-width: 300px;
  justify-self: center;
}

#frontpage-login {
  margin: 0 auto;
  padding: 0.5em;
}

.product, .sect {
  display: inline-block;
  vertical-align: top;
  margin: 0.2em;
  padding: 0.5em;
  background: white;
  border-radius: 4px;
  color: rebeccapurple;
}
.product img, .sect img {
  max-height: 240px;
  filter: drop-shadow(0 1px 1px black);
}
.product button,
.product a.button, .sect button,
.sect a.button {
  background: rebeccapurple;
  color: white;
  text-decoration: none;
}

dialog {
  border: 0;
  border-radius: 1em;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5333333333);
}

dialog button {
  background: rebeccapurple;
  color: white;
}

dialog button:hover {
  background: mediumpurple;
}

dialog input[type=text] {
  border: 1px solid rebeccapurple;
  margin: 1px 0;
}

ul#thanks {
  display: grid;
  grid-gap: 1em;
  list-style: none;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
}

footer {
  clear: both;
  text-align: center;
  padding: 2em;
  font-size: 0.7em;
  position: relative;
  z-index: 0;
  background: radial-gradient(at bottom, #111, black);
}
footer a {
  text-decoration: none;
}
footer div {
  display: inline-block;
  vertical-align: middle !important;
}
footer img {
  height: 26px;
  cursor: pointer;
  margin: 0 0.3em;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  h1,
  h2 {
    font-size: 4em;
  }
  .feature-row h2 {
    font-size: 2.5em;
  }
  main {
    padding: 1rem;
  }
  .family {
    display: inline-block;
    vertical-align: top;
  }
  .headshot {
    float: left;
    margin: 1em;
  }
  #stats {
    grid: auto-flow/1fr 1fr 1fr;
  }
  .vandergrid {
    display: grid;
    grid: "l1 r1" "l2 r2" "l3 r3";
    max-width: 1400px;
    margin: 0 auto;
  }
  .item {
    width: 50%;
  }
  article:nth-of-type(2n) .item {
    float: right;
  }
  .triad {
    display: inline-block;
    vertical-align: middle;
    width: 30%;
    padding: 3em;
  }
  #join fieldset {
    grid: auto-flow/16em 1fr;
    grid-gap: 2em 1em;
  }
  #join fieldset p,
  #referral-explainer,
  #join #submit-button {
    grid-column: span 2;
  }
  #join label {
    justify-self: end;
    text-align: end;
  }
  #pass-grid {
    grid: auto auto/1fr 1fr;
  }
  .feature-row {
    grid: auto/1fr 2fr;
  }
  .feature-row article {
    margin: 1em 0 1em -1em;
  }
  .product, .sect {
    max-width: 280px;
  }
  ul#thanks {
    grid: auto-flow/250px 250px 250px;
  }
  /* Enable homepage superheader animation */
  #home #superheader-container.shadowRoot #superheader {
    height: 100vh;
    animation: home_superheader 1s 4s 1 forwards;
  }
  #home #superheader-container.shadowRoot #superheader > li {
    opacity: 0;
    pointer-events: none;
    animation: home_superheader_li 1s 4s 1 forwards;
  }
  #home #superheader-container.shadowRoot #superheader #li-v {
    opacity: 1;
    animation: none;
  }
  #home #superheader-container.shadowRoot #superheader #superheader_v {
    top: 50vh;
    width: 200px;
    filter: drop-shadow(0 0 30vw white);
    animation: home_superheader_v 5s 0s 1 forwards;
  }
  #home #superheader-container.shadowRoot #superheader #superheader-sky {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(#333, black);
    opacity: 0;
    animation: home_superheader_sky 5s 0s 1 forwards;
  }
  #home #superheader-container.shadowRoot #superheader #superheader-horizon {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 50vh;
    background: black;
    pointer-events: none;
    animation: home_superheader_horizon 1s 4s 1 forwards;
  }
  #home #superheader-container.shadowRoot #superheader #superheader-welcome {
    display: block;
    position: fixed;
    top: 50vh;
    left: 0;
    width: 100%;
    font: normal 16px "Josefin Sans", sans-serif;
    text-align: center;
    padding: 1em;
    line-height: normal;
    pointer-events: none;
    animation: home_superheader_welcome 1s 4s 1 forwards;
  }
}/*# sourceMappingURL=v.css.map */