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

:root {
  --purple: #4c2f7a;
  --cream: #f3ede1;
  --black: #1a1a1a;
  --max-width: 680px;
}

html { font-size: 18px; }

body {
  background-color: var(--cream);
  color: var(--black);
  font-family: 'Lora', Georgia, serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─────────────────────────────────────────────── */

.hero {
  padding: 14vh 2rem 5vh;
  text-align: center;
}

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 7.5vw, 4.8rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.hero__rule {
  width: 110px;
  height: 1px;
  background: rgba(76, 47, 122, 0.35);
  margin: 0 auto 1.6rem;
  border: none;
}

.hero__subtitle {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  max-width: 480px;
  margin: 0 auto 1.6rem;
  line-height: 1.75;
  opacity: 0.75;
}

.hero__byline {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.45;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.hero__byline:hover {
  opacity: 0.75;
}

/* ─── DIVIDER ───────────────────────────────────────────── */

.divider {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.divider hr {
  border: none;
  border-top: 1px solid rgba(76, 47, 122, 0.14);
}

/* ─── WHY IT MATTERS ────────────────────────────────────── */

.why {
  padding: 5vh 2rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 2.4rem;
  display: block;
  text-align: center;
}

.why__body {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--black);
}

.why__body p {
  margin-bottom: 1.25rem;
}

.why__body p:last-child {
  margin-bottom: 0;
}

/* ─── ANIMATED LINES ────────────────────────────────────── */

.animated-lines {
  max-width: var(--max-width);
  margin: 1.25rem auto 1.25rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.anim-line {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--black);
  display: flex;
  align-items: baseline;
  gap: 0.6em;
  padding: 0.15rem 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-line::before {
  content: '—';
  flex-shrink: 0;
  opacity: 0.35;
  color: var(--purple);
}

/* ─── CONCLUSION ────────────────────────────────────────── */

.conclusion {
  padding: 0 2rem 8vh;
  max-width: var(--max-width);
  margin: 0 auto;
}

.conclusion__text {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--black);
  font-weight: 400;
}

.conclusion__text .line-1,
.conclusion__text .line-2 {
  display: block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.conclusion__text .line-1 {
  margin-bottom: 1.25rem;
}

.conclusion__text .line-2 {
  font-weight: 500;
}

.conclusion__text .line-1.visible,
.conclusion__text .line-2.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── AREAS ─────────────────────────────────────────────── */

.areas {
  padding: 2vh 2rem 4vh;
  max-width: var(--max-width);
  margin: 0 auto;
}

.areas__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 2rem;
  text-align: center;
}

.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid rgba(76, 47, 122, 0.18);
  background: rgba(76, 47, 122, 0.18);
}

.area-block {
  background-color: var(--cream);
  padding: 1.8rem 1.6rem;
  cursor: default;
  transition: background-color 0.3s ease;
  overflow: hidden;
  position: relative;
}

.area-block:hover {
  background-color: var(--purple);
}

.area-block__number {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--purple);
  opacity: 0.45;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.area-block:hover .area-block__number {
  color: var(--cream);
  opacity: 0.45;
}

.area-block__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple);
  line-height: 1.35;
  margin-bottom: 0.9rem;
  transition: color 0.3s ease;
}

.area-block:hover .area-block__title {
  color: var(--cream);
}

.area-block__desc {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--black);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s, color 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.area-block:hover .area-block__desc {
  opacity: 0.85;
  transform: translateY(0);
  max-height: 6rem;
  color: var(--cream);
}

/* ─── LINKEDIN ──────────────────────────────────────────── */

.linkedin-wrap {
  padding: 3vh 2rem 10vh;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.coming-soon {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--black);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.linkedin-link:hover {
  opacity: 0.7;
}

.linkedin-link__label {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple);
}

/* ─── FOOTER ─────────────────────────────────────────────── */

.footer {
  border-top: 1px solid rgba(76, 47, 122, 0.1);
  padding: 2rem 2rem;
  text-align: center;
}

.footer__domain {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.3;
}

.footer__name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--purple);
  opacity: 0.55;
  margin-top: 0.35rem;
}

/* ─── REVEAL ────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 600px) {
  html { font-size: 17px; }

  .hero { padding: 10vh 1.5rem 8vh; }

  .why,
  .conclusion,
  .areas,
  .animated-lines,
  .linkedin-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }

  .areas__grid {
    grid-template-columns: 1fr;
  }

  .area-block__desc {
    opacity: 0.75;
    transform: none;
    max-height: none;
    margin-top: 0.5rem;
  }
}
