@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jost:ital,wght@0,100..900;1,100..900&family=Lexend+Deca:wght@100..900&display=swap");
:root {
  --bg: #292c38ff;
  --col-light-yel: #fff700;
  --col-dark-yel: #ffcc00;
  --col-rubber: #f66a6a;
  --fc-white: #fff;
  --fs-small: 0.8rem;
  --fs-smaller: 0.7rem;
  --fs-med: 1.2rem;
}

.dy {
  fill: var(--col-dark-yel);
  fill: none;
  stroke: white;
  stroke-width: 1.5px;
}

.ly {
  fill: var(--col-light-yel);
  fill: none;
  stroke: white;
  stroke-width: 1.5px;
  stroke-linejoin: round;
}

.taper {
  fill: none;
  stroke: white;
  stroke-width: 1.5px;
}

.rubber {
  fill: none;
  stroke: white;
  stroke-width: 1.5px;
}

.tip {
  fill: var(--col-light-yel);
  fill: white;
  stroke: white;
  stroke-width: 1.5px;
  stroke-linejoin: round;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: var(--fc-white);
  font-family: "Barlow", sans-serif;
}

body {
  background-color: var(--bg);
  width: 100svw;
  overflow-x: hidden;
  position: relative;
}

h1 {
  font-size: 2rem;
  font-weight: 400;
}

h2 {
  font-weight: 400;
}

.container {
  width: min(1200px, 100vw - 2rem);
  margin: auto;
}

.border {
  border-top: 2.5px solid white;
}

.section {
  padding-block: 1rem;
  padding-bottom: 2rem;
}
.section h1 {
  margin-bottom: 0rem;
}
.section .txt {
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 1rem;
}

.concept {
  font-size: var(--fs-smaller);
  color: var(--bg);
  background: #ffcc00;
  height: 100%;
  font-weight: 600;
  border: 1px solid #ffcc00;
  padding: 0px 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  line-height: 1;
}

.hero {
  height: 90vh;
}

#one {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#one h1 {
  text-align: center;
}
#one p {
  font-size: var(--fs-med);
  font-weight: 200;
  min-width: 30ch;
  max-width: 45ch;
  text-align: justify;
  text-wrap: pretty;
}
#one .flex {
  overflow: hidden;
  min-height: 1.6rem;
}

.cta {
  min-width: 100px;
  display: inline-block;
  background-color: transparent;
  padding: 0.3rem 0.6rem;
  margin-block: 1rem;
  border: 2px solid white;
  border-radius: 3px;
  text-transform: uppercase;
  text-align: center center;
  font-size: 0.8rem;
  stroke-dasharray: 500;
  stroke-dashoffset: 50;
  cursor: pointer;
}
.cta:hover {
  border: 2px solid #ffcc00;
}
.cta:not(:last-child) {
  margin-right: 0.3rem;
}

.primary {
  background-color: #ffcc00;
  border: none;
  color: var(--bg);
  font-weight: 600;
  border: 2px solid #ffcc00;
}
.primary:hover {
  border: 2px solid white;
}

.vid {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.title {
  position: absolute;
  font-size: var(--fs-small);
  display: flex;
  align-items: end;
  width: 100%;
  height: 3rem;
  padding: 0.6rem;
  left: 0;
  bottom: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.6) 100%);
}

.ani {
  width: 100%;
  background-color: rgba(27, 27, 27, 0.416);
  position: relative;
  outline: 1px solid white;
}
.ani:hover {
  outline: 1px solid #ffcc00;
}

#cover {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: var(--bg);
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#logo {
  width: 300px;
  height: 300px;
}

/* --- Desktop Enhancements --- */
@media (min-width: 1024px) {
  .center {
    display: grid;
    place-content: center;
    grid-template-columns: auto auto;
  }
  #one p, #one h1 {
    text-wrap: pretty;
    text-align: left;
  }
  #logo {
    width: 500px;
    height: 500px;
  }
  .hero {
    height: 98vh;
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0.6rem;
}

article {
  background-color: rgba(27, 27, 27, 0.416);
  padding: 1rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
}
article h3,
article p {
  display: block;
}
article svg {
  width: 100px;
  height: 100px;
}
article svg > * {
  fill: white;
}

.ba {
  background-color: rgba(27, 27, 27, 0.416);
  padding: 1rem;
}
.ba h3 {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.ba .images {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba .images img {
  display: block;
  width: 100%;
  padding: 2rem;
  aspect-ratio: 1/1;
  background-color: #fffa5d;
}

.b,
.a {
  position: relative;
  font-family: "Barlow", sans-serif;
  font-size: var(--fs-smaller);
  font-weight: 300;
}

.b::after {
  position: absolute;
  content: "Before";
  width: 100px;
  height: 20px;
  top: 0.6rem;
  left: 0.6rem;
  mix-blend-mode: difference;
}

.a::after {
  position: absolute;
  content: "After";
  width: 100px;
  height: 20px;
  top: 0.6rem;
  left: 0.6rem;
  mix-blend-mode: difference;
}

.help {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.full {
  padding: 0 !important;
}

.wht {
  background-color: white !important;
}

.blk {
  background-color: transparent !important;
  border: 1px solid white;
}

.small {
  font-size: var(--fs-small);
}

.muted {
  color: rgba(255, 255, 255, 0.479);
}

.pad {
  margin-block: 0.6rem;
}/*# sourceMappingURL=style.css.map */