:root {
  --bg: #e9ebec;
  --text: #0a0b16;
  --accent: #00b1b1;
  --button-bg: #fc6f2e;
  --block-bg: #b6f733;
  --logo-color: #e91e63;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
}

.hero {
  width: 100%;
  max-width: 1440px;
  min-height: 900px;
  margin: 0 auto;
  padding: 48px;
  position: relative;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  letter-spacing: -0.02em;
}

/* Headline + button group */
.content {
  margin-top: 166px;
  max-width: 880px;
}

.headline-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: normal;
}

.highlight {
  color: var(--accent);
}

.subtext {
  font-size: 18px;
  line-height: 1.4;
}

/* Button */
.cta {
  margin-top: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--button-bg);
  color: var(--text);
  border: 2px solid var(--text);
  border-radius: 4px;
  padding: 8px 120px;
  height: 80px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--text);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.cta:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--text);
}

.cta:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--text);
}

.cta-arrow {
  width: 24px;
  height: 24px;
}

/* Green blocks on the right */
.blocks {
  position: absolute;
  top: 134px;
  right: 48px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.block {
  width: 100%;
  height: 100px;
  background: var(--block-bg);
}