:root{
  --color-bg-primary:#FAF7F2;
  --color-brand-pink:#FF90E8;
  --color-brand-blue:#23A6F0;
  --color-text-primary:#000000;
  --color-surface-card:#FFFFFF;
  --color-border-black:#000000;
  --color-decor-yellow:#FFEB3B;
  --color-decor-green:#00D084;

  --font-heading:"Bebas Neue","Arial Black",sans-serif;
  --font-body:"Montserrat",Arial,sans-serif;

  --text-xxl:2.5rem;
  --text-xl:2rem;
  --text-lg:1.5rem;
  --text-md:1.125rem;
  --text-base:1rem;
  --text-sm:0.875rem;

  --space-1:0.25rem;
  --space-2:0.5rem;
  --space-3:1rem;
  --space-4:1.5rem;
  --space-5:2rem;
  --space-6:3rem;

  --radius-sharp:0px;
  --radius-md:16px;
  --radius-lg:32px;

  --border:2px solid var(--color-border-black);

  --shadow-offset:4px 4px 0 rgba(0,0,0,0.3);

  --container-max:1200px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html,body{
  height:100%;
}

body{
  font-family:var(--font-body);
  font-size:var(--text-base);
  line-height:1.6;
  color:var(--color-text-primary);
  background:var(--color-bg-primary);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img,video{
  max-width:100%;
  height:auto;
  display:block;
}

svg{
  display:block;
}

button,input,select,textarea{
  font:inherit;
  color:inherit;
  background:none;
  border:none;
}

button{
  cursor:pointer;
}

a{
  color:inherit;
  text-decoration:none;
}

ul,ol{
  list-style:none;
}

h1,h2,h3,h4,h5,h6{
  font-family:var(--font-heading);
  text-transform:uppercase;
  line-height:1.1;
  letter-spacing:0.02em;
  margin-block-end:var(--space-3);
}

h1{font-size:var(--text-xxl);}
h2{font-size:var(--text-xl);}
h3{font-size:var(--text-lg);}
h4{font-size:var(--text-md);}
h5{font-size:var(--text-base);}
h6{font-size:var(--text-sm);}

p{
  margin-block-end:var(--space-3);
}

ul,ol{
  margin-block-end:var(--space-3);
  padding-inline-start:1.2em;
}

li{
  margin-block-end:var(--space-2);
}

blockquote{
  margin-block-end:var(--space-3);
  padding:var(--space-3);
  border:var(--border);
  background:var(--color-surface-card);
  box-shadow:var(--shadow-offset);
}

hr{
  border:none;
  border-top:var(--border);
  margin-block:var(--space-4);
}

:focus-visible{
  outline:2px solid var(--color-brand-blue);
  outline-offset:2px;
}

.container{
  width:100%;
  max-width:var(--container-max);
  margin-inline:auto;
  padding-inline:var(--space-3);
}

.section{
  padding-block:var(--space-6);
}

.stack > * + *{
  margin-top:var(--space-3);
}

.stack-lg > * + *{
  margin-top:var(--space-5);
}

.cluster{
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-3);
  align-items:center;
}

.grid{
  display:grid;
  gap:var(--space-4);
}

.grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.grid-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

@media (max-width:900px){
  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }
}

.card{
  background:var(--color-surface-card);
  border:var(--border);
  border-radius:var(--radius-md);
  padding:var(--space-4);
  box-shadow:var(--shadow-offset);
  position:relative;
}

.card > *:last-child{
  margin-bottom:0;
}

.panel{
  background:var(--color-surface-card);
  border:var(--border);
  border-radius:var(--radius-lg);
  padding:var(--space-5);
  box-shadow:var(--shadow-offset);
  position:relative;
}

.panel > *:last-child{
  margin-bottom:0;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 var(--space-4);
  font-family:var(--font-heading);
  text-transform:uppercase;
  border:var(--border);
  border-radius:var(--radius-md);
  background:var(--color-brand-pink);
  box-shadow:var(--shadow-offset);
  transition:all 0.15s ease;
}

.button-blue{
  background:var(--color-brand-blue);
}

.button:hover,
.button:focus-visible{
  background:var(--color-bg-primary);
}

.sticker{
  display:inline-block;
  padding:var(--space-2) var(--space-3);
  background:var(--color-brand-pink);
  border:var(--border);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-offset);
  font-family:var(--font-heading);
  text-transform:uppercase;
}

.sticker-yellow{
  background:var(--color-decor-yellow);
}

.surface-outline{
  border:var(--border);
  box-shadow:var(--shadow-offset);
}

.shape-circle{
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--color-brand-blue);
  border:var(--border);
}

.shape-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--color-decor-yellow);
  border:var(--border);
}

.shape-wave{
  width:60px;
  height:12px;
  background:var(--color-decor-green);
  border:var(--border);
  border-radius:var(--radius-lg);
}

.shape-zigzag{
  width:60px;
  height:12px;
  background:var(--color-brand-pink);
  border:var(--border);
  clip-path:polygon(0 100%,10% 0,20% 100%,30% 0,40% 100%,50% 0,60% 100%,70% 0,80% 100%,90% 0,100% 100%);
}

.no-overflow{
  overflow-x:hidden;
}

.full-width{
  width:100%;
}

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

@media (max-width:600px){
  .section{
    padding-block:var(--space-5);
  }
}