
/* ==========================================
   FONTS
========================================== */

@font-face {
  font-family: 'ACID';
  src: url('../fonts/acidtm.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}



/* ==========================================
   RESET
========================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  border: none;
  background: none;
}

/* ==========================================
   ROOT
========================================== */

:root {

  --font-heading: 'ACID', sans-serif;
  --font-body: 'Inter Tight', sans-serif;

  --bg: #efefef;
  --text: #000;
  
   --container: 1200px;
}

/* ==========================================
   BODY
========================================== */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

.page {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);

  font-family: var(--font-body);

  min-height: 100vh;
}

/* ==========================================
   PAGE
========================================== */

.page {
  width: 100%;
}

.hero {
  width: 100%;
  max-width: var(--container);

  margin: 0 auto;

  padding:
    60px
    40px
    120px;
}

/* ==========================================
   LOGO
========================================== */

.logo-wrap {
  display: flex;
  justify-content: center;

  margin-bottom: 60px;
}

.logo {
  width: 100%;
  max-width: 380px;
  
  filter:
        drop-shadow(0 10px 20px rgba(0,0,0,.08));

    animation: floatBadge 6s ease-in-out infinite
	
}
  
@keyframes floatBadge {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0) ;
    }
}

/* ==========================================
   CONTENT
========================================== */

.content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

h1 {
	max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4rem;
  letter-spacing: 0.03em;
  word-spacing: 0.15em;
}

.tagline{
  font-family: var(--font-heading);
  font-size: clamp(4rem, 4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
     margin-bottom: clamp(120px, 12vw, 180px);
}

.mobile-title {
  display: none;
}

.desktop-title {
  display: block;
}

.tagline-mobile {
    display: none;
}

.tagline-desktop {
    display: block;
}

/* ==========================================
   TAGLINE BRUSH BANNER
========================================== */

.tagline-banner {
  position: relative;

  width: 100%;
  min-height: 300px;

  margin: 100px auto 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

.tagline-banner::before {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 144%;
  height: 300px;

  transform: translate(-50%, -50%) rotate(2deg);

  background-image: url("../assets/brush-black.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

  z-index: 1;
}

.tagline-banner span {
  position: relative;
  z-index: 2;

  font-family: var(--font-heading);
  font-size: clamp(2rem, 9vw, 4.4rem);
  line-height: 1;

  color: #fff;

  text-align: center;
  text-transform: uppercase;

  letter-spacing: 0.03em;
  white-space: nowrap;

}
/* ==========================================
   SIGNUP
========================================== */

.signup-block {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.signup-block h2{
	
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;	
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  word-spacing: 0.15em;
  margin-top: clamp(140px, 14vw, 240px);
  margin-bottom: 10px;

}

.signup-form {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 2px solid #000;
  padding-bottom: 12px;
  border-bottom: 2px solid #000;
  transition: .25s ease;
}

.signup-form:focus-within {

    border-bottom: 2px solid #ff0000;
}

.signup-form input {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25rem;
  color: #000;
}

.signup-form input::placeholder {
  color: #444;
}

.signup-form input:focus {

    outline: none;
    box-shadow: none;
	border: none;
    outline: none;
    box-shadow: none;
}

.signup-form input {

    border: none;
    outline: none;
    box-shadow: none;
}

.signup-form button {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  font-weight: 700;

  transition: var(--transition);
}

.signup-form button:hover {
  opacity: 0.6;
}

.signup-disclaimer {

    margin-top: 18px;

    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;

    color: #666;

    line-height: 1.5;
}

.form-message {
  margin-top: 25px;

  font-size: 1rem;
  font-weight: 600;
}

/* ==========================================
   FOOTER
========================================== */

.footer {

  max-width: var(--container);

  margin: 0 auto;

  padding:
    40px
    40px
    50px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;
  font-family: var(--font-body);
  font-weight: 400;  
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.socials a {

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #000;
    border-radius: 50%;

    transition: .25s ease;
}

.socials a:hover {

    background: #000;
    color: #fff;

    transform: translateY(-3px);
}

.footer .socials,
.footer .privacy{
  font-weight: 700;
}

.hidden-field {
  display: none;
}

/* ==========================================
   COOKIE BANNER
========================================== */

.cookie-banner {

    position: fixed;

    left: 20px;
    right: 20px;
    bottom: 20px;

    max-width: 500px;

    margin: 0 auto;

    background: #000;
    color: #fff;

    padding: 18px 20px;

    border-radius: 16px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    z-index: 9999;
}

.cookie-banner p {

    font-size: .9rem;
    line-height: 1.4;
}

.cookie-actions {

    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-actions button {

    background: #fff;
    color: #000;

    padding: 10px 16px;

    border-radius: 999px;

    cursor: pointer;

    font-weight: 700;
}

.cookie-actions a {

    color: #fff;

    font-size: .9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 520px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  z-index: 9999;
}

.cookie-banner p {
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-actions button {
  background: #fff;
  color: #000;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  
  position: relative;
  z-index: 10000;
  cursor: pointer;
}

.cookie-actions a {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}

/* ==========================================
   PRIVACY PAGE
========================================== */

.privacy-page .logo {
  max-width: 240px;
}

.privacy-content {
  max-width: 850px;
  text-align: center;
}

.privacy-content h1 {
  margin-bottom: 70px;
}

.privacy-text {
  font-family: var(--font-body);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.privacy-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 34px;
}

.privacy-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 70px 0 24px;
}

.privacy-text a {
  font-weight: 700;
  text-decoration: underline;
}

.privacy-date {
  margin-top: 80px;
  color: #666;
}