
:root{
  --white-color:  #ededed;
  --dark-color:  #0a0a0a;
  --light-color:  #111;
  --border-radius: 5pt;
  --primary-color: #3ff0e2;
}

/****** RESET ******/

*,*::before,*::after {
  box-sizing: border-box;
  font-family: 'Inconsolata', sans-serif;
}

body,h1,h2,h3,h4,p,figure,blockquote,dl,dd,a {
  margin: 0;
  color: var(--white-color);
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overscroll-behavior: none;
  background: var(--light-color);
}

a{
  text-decoration: none;
  cursor: pointer;
}

h1{
  font-size: 38pt;
  font-weight: 700;
  line-height: 90%;
}

p{
  font-size: 12pt;
  font-weight: 400;
}

p.small{
  font-size: 10pt;
}

button, input, input:focus{
  outline: 0;
  box-shadow: 0;
  border: 0;
  border-radius: 100pt;
  padding: 10pt 20px;
  font-size: 12pt;
}

nav{
  display: flex;
  position: fixed;
  top: 0;left: 0;
  height: 70pt;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--dark-color);
  z-index: 9001;
}

form {
  display: flex;
  margin: 25pt 0;
  position: relative;
}

::-webkit-scrollbar{
  width: 0;
  height: 10pt;
}

::-webkit-scrollbar-thumb{
  background: var(--light-color);
  border-radius: 10pt;
}

::-webkit-scrollbar-track{
  background: transparent;
}


/****** GLOBALS ******/

.btn{
  display: inline-block;
  padding: 5pt 15pt;
/*  box-shadow: 0 0 0 1px var(--white-color);*/
  background-color: #0a0a0a80;
  color: var(--white-color);
  border-radius: 100pt;
  cursor: pointer;

  backdrop-filter: blur(10px) saturate(170%);

  position: absolute;
  top: 0;
  bottom: 0;
  right: 4pt;
  margin: auto;
  height: 26pt;
}

.btn:hover{
  background: var(--white-color);
  color: var(--dark-color);
}

.content{
  width: 95%;
  max-width: 1080px;
  margin:  0 auto;
}

#recaptcha-container {
    display: none !important;
}

.text-highlight{
  background: var(--white-color);
  color: var(--dark-color);
}

/****** HERO SECTION ******/

.hero{
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}

.hero_copy{
  text-align: center;
}

.hero_copy p{
  max-width: 350pt;
  margin: 10pt auto;
}

#phone-number{
  width: 100%;
}

@media(max-width: 400px){
  form{
    flex-direction: column;
    align-items: center;
    gap: 10pt;
  }
  #phone-number {
    width: auto;
    text-align: center;
  }
  .btn{
    position: relative;
  }
}

/** AUDIO PLAYER **/

.player {
    position: relative;
    width: 50pt;
    height: 50pt;
    margin: 0 auto 20pt auto;
}

svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.track { 
  fill: none; 
  stroke: var(--white-color);
  stroke-width: 5;
  opacity: 0.2;
}

.progress { 
    fill: none; 
    stroke: var(--primary-color); 
    stroke-width: 5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.2s ease;
}

.controller {
    position: absolute;
    inset: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white-color);
    font-size: 10pt;
    display: flex;
    align-items: center;
    justify-content: center;
}

/****** FOOTER ******/

footer{
  width: 100%;
  padding: 20pt 5pt 10pt 5pt;
  text-align: center;
  pointer-events: none;
  user-select: none;
}
