:root {
  --page-width: 720px;
  --avatar-size: clamp(88px, 22vw, 126px);
  --ink: #171a18;
  --copy: #424842;
  --link: #176ddc;
  --line: rgba(9, 24, 47, 0.1);
  --shadow: 0 24px 70px rgba(4, 12, 24, 0.12);
}

* {
  box-sizing: border-box;
}


html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 42%),
    #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  margin: 0;
}

.site-shell {
  background: #ffffff;
  min-height: 100vh;
  width: 100%;
  max-width: var(--page-width);
  overflow-x: hidden;
}


.hero {
  background: #030915;
  position: relative;
  width: 100%;
}

.hero-banner {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.profile-logo {
  aspect-ratio: 1;
  background: #07101f;
  border: clamp(3px, 1.1vw, 3px) solid #ffffff;
  border-radius: 50%;
  bottom: calc(var(--avatar-size) * -0.5);
  box-shadow: 0 20px 45px rgba(4, 10, 20, 0.28);
  display: block;
  height: var(--avatar-size);
  left: clamp(24px, 6vw, 48px);
  object-fit: cover;
  position: absolute;
  width: var(--avatar-size);
}

.content {
  padding: calc((var(--avatar-size) * 0.5) + clamp(54px, 11vw, 82px)) clamp(26px, 6vw, 56px) 34vh;
}

h1 {
  color: var(--ink);
  font-size: clamp(32px, 7.1vw, 52px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 clamp(34px, 7vw, 50px);
  max-width: 620px;
  text-wrap: balance;
}

p {
  color: var(--copy);
  font-size: clamp(17px, 4vw, 23px);
  letter-spacing: 0;
  line-height: 1.45;
  margin: 0 0 26px;
  max-width: 58ch;
}


.inline-link {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  word-break: break-word;
}

.whatsapp-button {
  align-items: center;
  background: linear-gradient(135deg, #050505 0%, #111722 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  display: inline-flex;
  font-size: clamp(16px, 3.7vw, 21px);
  font-weight: 760;
  gap: 10px;
  line-height: 1;
  min-height: 50px;
  padding: 0.82em 1.04em;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.whatsapp-button:hover {
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.27);
  transform: translateY(-1px);
}

.whatsapp-button:focus-visible {
  outline: 3px solid #55a9ff;
  outline-offset: 4px;
}

@media (min-width: 721px) {
  body {
    background:
      radial-gradient(circle at 50% 0, rgba(38, 108, 220, 0.12), transparent 34rem),
      #eef2f7;
    display: flex;
    justify-content: center;
  }

  .site-shell {
    box-shadow: var(--shadow);
  }

  .content {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 420px) {
  .content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .profile-logo {
    left: 24px;
  }
}
