:root {
  color-scheme: light;
  --ink: #123238;
  --muted: #63777a;
  --paper: #f7fbf8;
  --white: #ffffff;
  --teal: #258f8e;
  --teal-dark: #176d70;
  --green: #7f9d42;
  --green-dark: #5f792b;
  --line: rgba(23, 109, 112, 0.16);
  --shadow: 0 24px 60px rgba(18, 50, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(37, 143, 142, 0.18), transparent 34%),
    linear-gradient(160deg, #ffffff 0%, var(--paper) 44%, #edf4ef 100%);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
}

.bio-shell {
  width: min(100%, 440px);
  padding: 28px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.profile {
  text-align: center;
  padding: 0 8px 18px;
}

.logo {
  display: block;
  width: min(72vw, 300px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(1.65rem, 7vw, 2.25rem);
  line-height: 1.25;
  color: var(--ink);
}

.intro {
  margin: 12px auto 0;
  max-width: 31ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.links {
  display: grid;
  gap: 12px;
}

.link-button {
  min-height: 74px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(18, 50, 56, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(37, 143, 142, 0.34);
  box-shadow: 0 16px 34px rgba(18, 50, 56, 0.12);
  outline: none;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 143, 142, 0.14), rgba(127, 157, 66, 0.16));
}

.icon svg {
  width: 27px;
  height: 27px;
  fill: var(--teal-dark);
}

.link-button strong,
.link-button small {
  display: block;
}

.link-button strong {
  font-size: 1.03rem;
  line-height: 1.35;
}

.link-button small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.whatsapp .icon {
  background: rgba(31, 156, 88, 0.12);
}

.whatsapp .icon svg {
  fill: #1f9c58;
}

.service .icon svg {
  fill: var(--green-dark);
}

.website .icon svg {
  fill: var(--teal-dark);
}

.sales .icon svg {
  fill: #8a6b16;
}

.email .icon svg {
  fill: #4f6670;
}

footer {
  margin-top: 18px;
  padding: 14px 8px 2px;
  text-align: center;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 380px) {
  body {
    padding: 14px;
  }

  .bio-shell {
    padding: 22px 12px 14px;
    border-radius: 22px;
  }

  .link-button {
    grid-template-columns: 46px 1fr;
    gap: 10px;
    padding: 11px;
  }

  .icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}
