:root {
  --bg: #f8f4f2;
  --bgarticle: #fff;
  --bgfooter: #400021;
  --text: #353331;
  --text-heading: #160D16;
  --text-light: #b0884d;
  --text-footer: #ffe9cc;
  --page-padding: 2rem;
  --content-max-width: 680px;
  --link: #aa8a56;
  --linkhover: #8c0048;
  --fontsans: "Inter", system-ui, helvetica, arial, sans-serif;
  --fontserif: "Canela", palatino, times, serif;
  --fontmono: "Space Mono", monospace;

}

/* =====================
   FONT RENDERING
===================== */

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  
}

/* Optimization Inter */
body,
input,
button,
p,
li,
h5,
h6,
legend,
label {
  font-variant-ligatures: common-ligatures;
  font-feature-settings: "liga" 1, "calt" 1, "kern" 1;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--fontsans);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.letter main {
  margin-bottom: 4rem;
}

/* =====================
   HEADER
===================== */

.header {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s ease-in-out;
  pointer-events: auto;
  z-index: 2;
}

.header a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.header img,
.header svg {
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
  opacity: 1;
}


.header .tagline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 15px)) translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
  font-family: var(--fontserif);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 1.3rem;
  pointer-events: none;
}

@media (min-width: 960px) {

  /* Efectos hover */
  .header a:hover img,
  .header a:hover svg {
    transform: translateY(100%);
    opacity: 0;
  }

  .header a:hover .tagline {
    transform: translate(-50%, calc(-50% + 5px));
    opacity: 1;
  }
}


/* =====================
   LINKS
===================== */

.header a:active,
p a:active,
li a:active {
  position: relative;
  top: 1px
}

main a {

  font-weight: 500;
  color: var(--link);
  text-decoration: underline 0.1em var(--link);
  transition: text-decoration-color 300ms;
}

main a:hover {
  color: var(--linkhover);
  text-decoration-color: var(--linkhover);
}


/* =====================
   INTRO
===================== */
.intro {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.intro.is-hidden {
  opacity: 0;
  transform: translateY(-40px);
}

.intro-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* AÃ±ade esta lÃ­nea */
  margin: 0 auto;
  max-width: 920px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1.4s ease-in-out;
}

/* Scroll hint */
.intro::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background: var(--text-light);
  opacity: 0.3;
  animation: scrollHint 1.8s ease-in-out infinite;
}

.intro.is-hidden::after {
  opacity: 0;
  animation: none;
}

.notfound .intro::after {
  display: none;
}


/* =====================
   PAGE
===================== */
.page,
.blog {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: var(--page-padding);
  transition: opacity 1s ease, transform 0.8s ease;
}

.page {
  max-width: 1200px;
  opacity: 1;
}


.blog {
  margin-top: 8rem;
  max-width: 960px;
  animation: fadeIn 1.4s ease-in-out;
}

/* ===== Blog Items ===== */
.blog> :not(.full-featured):is(p, h2, h3, h4, blockquote, ul, ol, figure, img, svg, button, #signature-pablo, #signature-pablo svg) {
  width: 100%;
  max-width: var(--content-max-width);
  margin-right: auto;
  margin-left: auto;
}

.blog img {
  max-width: 100%;
}

.blog figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.full-featured {
  width: calc(100% + 2 * var(--page-padding));
  margin-left: calc(-1 * var(--page-padding));
  margin-right: calc(-1 * var(--page-padding));
}

.full-featured img {
  width: 100%;
  height: auto;
  display: block;
}

figcaption {
  padding: .5em 1rem;
  text-align: center;
  color: var(--text-light);
  font-family: Space Mono, monospace, sans-serif;
  font-size: clamp(0.75rem, 1.2vw, .7rem);
  line-height: 1.4;
}

main ul li,
main ol li {
  position: relative;
}

main ul li::before {
  content: "*";
  position: absolute;
  left: -1rem;
  top: 3px;
  color: var(--text-light);
}

main ol li {
  list-style: decimal;
}

hr {
  border: none;
  height: 1px;
  background: var(--bg);
  position: relative;
  margin: 4rem 0;
}

hr.dividerhome {
  margin-top: 0;
}

hr::after {
  content: "* * *";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  padding: 0 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-light);
}

.page:first-of-type {
  margin-top: 100vh;
}

.page.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .page {
    width: 94vw;
  }
}

/* =====================
   CONTENT
===================== */
.wrap {
  width: 100%;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  margin-bottom: 160px;
}

.column {
  flex: 1 1 300px;
  min-width: 280px;
}

.column img,
figure img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.column:hover img,
figure:hover img {
  transform: perspective(500px) rotateY(2deg);
}

.column.benefits {
  display: flex;
  flex-direction: column;
}

@media (max-width: 959px) {
  .column {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .section.reverse {
    flex-direction: column;
  }

  /* Responsive: reverse benefits under illustration */
  .section.reverse .column.illustration {
    order: 0;
    /* first */
  }

  .section.reverse .column.benefits {
    order: 1;
    /* after illustration */
  }
}

.label {
  border-top: 1px solid #160D16;
  padding-top: 0.5rem;
}


/* =====================
   TYPOGRAPHY
===================== */

h1,
h2,
h3,
h4 {
  font-family: var(--fontserif);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0;
}

h2,
h3,
h4,
h5,
h6,
p,
article li {
  margin: 0 0 1.5rem 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.2;
  text-align: center;

}

h1 span {
  color: #d2a76e;
  display: block;
}

.blog h1 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  margin-bottom: 4rem;

}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.3;
}

h5 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.4;
  font-weight: 600;
}

h6 {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


ul,
ol {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.65;
  margin: 0 0 1.25rem 0;
  padding-left: 1.5rem;
}

ul li,
ol li {
  margin-bottom: 0.5rem;
}

ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

p,
article li {
  font-size: 1rem;
  line-height: 1.65;
}


.welcome,
.subtitle,
.subscribe {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--fontmono);
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
  line-height: 2;
}

.subtitle {
  text-align: center;
}

.subscribe {
  margin-top: 1.25rem;

}

.blog h2,
.blog h3,
.blog h4,
.blog h5,
.blog h6 {
  margin-top: 4rem;
}

.blog blockquote p {
  font-size: 1.1rem;
  padding: 0 2rem;
}

/* =====================
   Inicio Lottie
===================== */

.blog #signature-pablo {
  height: 120px;
  margin: 4rem auto 0;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
}

.blog #signature-pablo svg {
  width: auto !important;
  height: 100% !important;
  margin: 0;
}

/* =====================
   Fin Lottie
===================== */


.signature {
  margin-top: 2rem;

}

.signature span {
  font-style: italic;
  display: block;

}

/* =====================
   CONTACT
===================== */

.container-contact {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  text-align: center;

}

.container-contact blockquote {
  padding: 2rem 0;
  margin: 0;
}

@media (max-width: 799px) {

  .container-contact blockquote {
    padding: 2rem;
  }
}

.cite {
  margin-bottom: 0;
}

.form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
}

input {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: .2rem;
  min-height: 3rem;
  padding: 0 1em 0 2.5rem;
  font-family: var(--fontsans);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  background-color: #fff;
  opacity: .8;
  -webkit-appearance: none;
  appearance: none;
}

/* Placeholder ALL browsers */
input::placeholder,
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder {
  font-family: var(--fontsans);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 1;
}

/* Focus + active + valid = identical typography */
input:focus,
input:active,
input:valid {
  font-family: var(--fontsans);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 1;
}

input:focus {
  outline: 2px solid var(--link);
  outline-offset: 2px;
}

/* Placeholder on focus (Safari) - keep same typography */
input:focus::placeholder,
input:focus::-webkit-input-placeholder {
  font-family: var(--fontsans);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
}

/* iOS / Chrome autofill override - keep same typography */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  font-family: var(--fontsans);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
  transition: background-color 9999s ease-in-out 0s;
}

/* Prevent Safari zoom on focus */
@supports (-webkit-touch-callout: none) {
  input {
    font-size: 16px;
  }

  /* Keep all other states at 16px on iOS too */
  input::placeholder,
  input:focus,
  input:focus::placeholder,
  input:-webkit-autofill {
    font-size: 16px;
  }
}

button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: .2rem;
  background: var(--link);
  color: rgba(255, 255, 255, 0.9);
  min-height: 3rem;
  padding: 0 .5rem;
  text-align: center;
  font-family: var(--fontsans);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.5;
  width: 48px;
  cursor: pointer;
  letter-spacing: .05rem;
  text-transform: uppercase;
  transition: background-color 0.2s;
}

button:hover {
  background-color: var(--link);
  animation: .4s ease-in-out infinite alternate bounce;
}

/* =====================
   Banner Section
===================== */
.feat-container {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 1280px;
  margin: 4rem auto;
  color: var(--text-light);
  background:
    radial-gradient(60% 40% at 50% 100%, #ec4d9f80 0%, #ec4d9f00 100%),
    repeating-linear-gradient(180deg,
      rgba(255, 255, 255, 0.03) 0px,
      /* very subtle */
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 4px),
    var(--bgfooter);
  background-size:
    auto,
    100% 4px;

}

/* Header Section */
.feat-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem;
}


.feat-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feat-icon {
  width: 80px;
  height: 80px;
  background: var(--bgfooter);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon img {
  width: 80px;
  height: auto;
  display: block;
}

.feat-header-text {

  text-align: left;
}

.feat-header-text h3 {
  margin: 0 0 .4rem;
  color: rgba(255, 255, 255, 0.8);
}


.feat-header-text h3 a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 400;
}

.feat-header-text p {
  font-family: var(--fontmono);
  font-size: .8rem;
  text-transform: uppercase;
  margin: 0;
}

.button-primary {
  margin: 0;
  position: relative;
}

.feat-button {
  display: inline-block;
  /* importante para transform */
  padding: 16px 40px;
  background: var(--link);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: .2rem;
  font-family: var(--fontsans);
  text-decoration: none;
  font-size: .8rem;
  text-transform: uppercase;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feat-button:hover {
  color: #fff;
  transform: scale(1.02);
}

.container-contact blockquote {
  max-width: var(--content-max-width);

}


/* Responsive Design */
@media (max-width: 799px) {
  .feat-banner {
    flex-direction: column;
    gap: 2rem;
  }

  .feat-header-left {
    flex-direction: column;
    gap: 1rem;

  }

  .feat-header-text {
    text-align: center;
  }

  .feat-icon {
    width: 60px;
    height: 60px;
  }

  .feat-icon img {
    width: 60px;
    height: auto;
    display: block;
  }

}

/* =====================
   NEWSLETTER
===================== */

.newsletter {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.newsletter fieldset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem;
}

.newsletter legend {
  font-family: var(--fontsans);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 0 .5rem;
}

.user-infos {
  display: flex;
  width: 100%;
  align-items: flex-end;
}

.user-info {
  padding-right: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.user-info.button {
  padding-right: 0
}

.user-info label {
  font-weight: 500;
  font-size: 0.9rem;
}

.user-info input,
.user-info button {
  width: 100%;
}

/* Input wrapper - AÑADE position: relative */
.input-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

/* Base input styles */
.user-info input[type=text],
.user-info input[type=email] {
  width: 100%;
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: #fff;
  padding-left: 2.5rem;
  /* space for icon */
}

.user-info input:focus {
  outline: solid 1px var(--link);
  outline-offset: 2px;
}


.input-wrapper .input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--link);
  /* Cambiar de fill a color */
  pointer-events: none;
  z-index: 1;
  transition: color 0.3s ease;
  /* Cambiar de fill a color */
}

.input-wrapper .input-icon path {
  fill: currentColor;
}


.input-wrapper:has(input:focus) .input-icon,
.input-wrapper:has(input:active) .input-icon {
  color: var(--linkhover);
  /* Cambiar de fill a color */
}

.user-infos {
  flex-wrap: wrap;
}

.user-info.legal-check {
  flex: 1 1 100%;
  padding: 1rem 0 0;
  padding-right: 0;
}

.user-info.legal-check p {
  font-size: .8rem;
  margin-bottom: 0
}

.user-info.legal-check p a {
  color: rgba(255, 255, 255, 0.8);
}

/* Error */

.newsletter-error:not([hidden]) {
  width: 80%;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0 auto 2rem;
  padding: .5rem;
  color: #fff;
  background: rgba(255, 255, 255, .4);
  animation: .3s fade-in;

}

.newsletter-error:not([hidden]) svg {
  margin-right: .3rem;
  fill: currentColor
}


/* Mobile */
@media (max-width: 959px) {
  .user-infos {
    gap: 2rem;
    flex-direction: column;
    align-items: stretch;
  }

  .user-info {
    padding-right: 0;
  }

  .user-info.legal-check p {
    text-align: center;
  }
}

/* Success state */
.newsletter.is-success {
  text-align: center;
  padding: 2rem;
  width: 60%;
}

.newsletter-success-icon {
  margin: 0 auto 1rem;
}

.newsletter.is-success h2 {
  margin: 1rem 0 0.5rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 1);
}

.newsletter-text {
  margin-top: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-text a {
  color: rgba(255, 255, 255, 1);
}

.newsletter-success-icon {
  margin: auto;
  display: block;
}

.newsletter-success-icon path {
  animation: .5s .8s both successIcon;
}

.newsletter.is-success>.newsletter-success-icon {
  animation-delay: 800;
}

.newsletter.is-success>h2 {
  animation: .4s .2s both fade-in-up;
}

.newsletter.is-success>p {
  animation: .4s .4s both fade-in-up;
}

.newsletter.is-success>.newsletter-text {
  animation: .4s .6s both fade-in-up;
}


/* =====================
   FOOTER
===================== */
.footer {
  position: relative;
  z-index: 2;
  margin-top: 8rem;
  background-color: var(--bgfooter);
  background-image:
    repeating-linear-gradient(0deg,
      transparent, transparent 2px,
      rgba(0, 0, 0, 0.04) 2px, rgba(0, 0, 0, 0.04) 4px),
    repeating-linear-gradient(90deg,
      transparent, transparent 3px,
      rgba(0, 0, 0, 0.025) 3px, rgba(0, 0, 0, 0.025) 6px),
    repeating-linear-gradient(47deg,
      transparent, transparent 8px,
      rgba(0, 0, 0, 0.025) 8px, rgba(0, 0, 0, 0.025) 9px),
    repeating-linear-gradient(-47deg,
      transparent, transparent 8px,
      rgba(0, 0, 0, 0.015) 8px, rgba(0, 0, 0, 0.015) 9px),
    linear-gradient(180deg,
      #690036 0%, #400021 100%);

  /* Top edge stitch line */
  border-top: 1px solid rgba(255, 100, 140, 0.15);

}

.footer-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav li {
  flex: 1;
  margin: 0;
  line-height: 1;
}

.footer-nav li+li {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.8rem .6rem;
  text-decoration: none;
  color: var(--text-footer);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.footer-nav .link-home a {
  background: url(/img/shelly.svg) no-repeat center / auto 20px;
  height: 100%;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-nav .link-home a:hover {
  filter: brightness(0) invert(1);
}

/* ── current ── */
.footer-nav a.current {
background-color:rgba(255, 255, 255, 0.03);
color: #fff;
}

.footer-nav .link-home a.current {
  filter: brightness(0) invert(1);
}


/* ── hover: apagar los que no tienen hover ni current ── */
.footer-nav:has(a:hover) a:not(:hover) {
  color: rgba(255, 255, 255, 0.3);
}
.footer-nav:has(a:hover) .link-home a:not(:hover) {
  filter: brightness(0) invert(1) opacity(0.3);
}

/* el current no pierde protagonismo al hacer hover en otro */
.footer-nav:has(a:hover) a.current:not(:hover) {
  color: rgba(255, 255, 255, 0.45);
}
.footer-nav:has(a:hover) a.current:not(:hover)::before {
  border-top-color: rgba(255, 255, 255, 0.45);
}
.footer-nav:has(a:hover) .link-home a.current:not(:hover) {
  filter: brightness(0) invert(1) opacity(0.45);
}

@media (max-width: 499px) {
  .footer-nav li {
    flex: 1;
  }
  .footer-nav .link-home {
    flex: 0 0 56px;
  }
}

.contact-email {
  position: relative;
}

.contact-email .tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-email .tooltip.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}


/* =====================
   ANIMATIONS
===================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(1px)
  }

  to {
    transform: translateY(3px)
  }
}

@keyframes scrollHint {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, 12px);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 0.3;
  }
}

@keyframes textureMoving {
  0% {
    background-position: 0 0, 0 0;
  }

  50% {
    background-position: 0 0, 0 2px;
    /* small gentle movement */
  }

  100% {
    background-position: 0 0, 0 0;
  }
}

@keyframes successIcon {
  0% {
    stroke-width: 1px;
    stroke-dasharray: 0 77
  }

  to {
    stroke-width: 8px;
    stroke-dasharray: 77 77
  }
}

/* =====================
   FONT-FACE
===================== */


@font-face {
  font-family: "Canela";
  src: url("fonts/Canela-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("fonts/Space-Mono.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-italic-100-900-cyrillic-ext.woff2")format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-italic-100-900-cyrillic.woff2")format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-italic-100-900-greek-ext.woff2")format("woff2");
  unicode-range: U+1F??;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-italic-100-900-greek.woff2")format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-italic-100-900-vietnamese.woff2")format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-italic-100-900-latin-ext.woff2")format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-italic-100-900-latin.woff2")format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-normal-100-900-cyrillic-ext.woff2")format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-normal-100-900-cyrillic.woff2")format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-normal-100-900-greek-ext.woff2")format("woff2");
  unicode-range: U+1F??;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-normal-100-900-greek.woff2")format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-normal-100-900-vietnamese.woff2")format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-normal-100-900-latin-ext.woff2")format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("fonts/inter-normal-100-900-latin.woff2")format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-display: swap
}