:root {
  --color-background: #191d2b;
  --color-primary: #27ae60;
  --color-surface: rgba(255, 255, 255, 0.02);
  --color-text: #f5f5f5;
  --color-text-muted: #c7c9d3;
  --color-shadow: rgba(0, 0, 0, 0.3);
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --max-width: 1100px;
  --radius-lg: 18px;
  --transition-base: 200ms ease;
}

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

body {
  min-height: 100vh;
  background: var(--color-background);
  color: var(--color-text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: radial-gradient(circle at top left, rgba(39, 174, 96, 0.25), transparent 55%), var(--color-background);
}

.hero {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__shape {
  position: absolute;
  inset: 8%;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 35px rgba(39, 174, 96, 0.3));
  transform: skewX(-6deg);
}

.hero__image {
  position: relative;
  z-index: 1;
  width: min(420px, 90%);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 35px var(--color-shadow);
  background: var(--color-surface);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter var(--transition-base);
}

.hero__image img:hover {
  filter: grayscale(0%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding-inline: var(--space-4);
}

.hero__eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__title {
  font-size: clamp(2.2rem, 2vw + 1.8rem, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__lead {
  max-width: 560px;
  color: var(--color-text-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #0f0f0f;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 12px 24px rgba(39, 174, 96, 0.35);
}

.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  color: inherit;
  font-size: 1.1rem;
}

.button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(39, 174, 96, 0.45);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

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

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    padding-inline: 0;
    align-items: center;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__visual {
    order: -1;
  }

  .hero__shape {
    inset: 5%;
    transform: skewX(-4deg);
  }
}

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

  .hero__image {
    width: min(320px, 100%);
  }

  .hero__actions {
    width: 100%;
    justify-content: center;
  }

  .button {
    width: 100%;
    justify-content: center;
  }
}

