:root {
  --green-950: #082719;
  --green-900: #0b3522;
  --green-800: #0f492f;
  --green-700: #17613f;
  --green-600: #238054;
  --green-500: #34a86f;
  --mint-100: #dff5e9;
  --mint-50: #eef9f3;
  --paper: #0d3123;
  --ink: #f4fff8;
  --muted: #c6ddd1;
  --line: rgba(223, 245, 233, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  background: #072216;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid #f4bf3f;
  outline-offset: 4px;
}

.link-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 54px 20px 40px;
  background: #072216;
}

.link-page::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(223, 245, 233, 0.065) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 34%);
}

.shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.shape-one {
  top: -130px;
  left: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(34, 128, 84, 0.12);
}

.shape-two {
  top: 170px;
  right: -120px;
  width: 270px;
  height: 270px;
  background: rgba(94, 205, 145, 0.1);
  filter: blur(2px);
}

.shape-three {
  top: 620px;
  left: -100px;
  width: 190px;
  height: 190px;
  background: rgba(244, 191, 63, 0.08);
}

.link-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  margin: 0 auto;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-wrap {
  position: relative;
  padding: 4px;
  border: 1px solid rgba(17, 91, 57, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(14, 65, 42, 0.11);
}

.logo-wrap > img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
}

.logo-wrap > span {
  position: absolute;
  right: 1px;
  bottom: 8px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 3px solid #f0f8f3;
  border-radius: 50%;
  background: var(--green-600);
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.handle {
  margin: 15px 0 5px;
  color: #77d6a5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.profile h1 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.bio {
  max-width: 440px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
  border-color 180ms ease;
}

.social-links a img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.social-links a:hover {
  transform: translateY(-2px);
  opacity: 0.72;
}

.featured {
  position: relative;
  overflow: hidden;
  margin-top: 35px;
  padding: 16px;
  border-radius: 27px;
  background:
    radial-gradient(circle at 90% 10%, rgba(100, 216, 157, 0.2), transparent 34%),
    linear-gradient(145deg, #0d3c27, #0b2e20);
  box-shadow: 0 24px 58px rgba(10, 53, 33, 0.2);
}

.featured::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.featured-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3c250;
  color: #392b08;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.featured-image {
  display: grid;
  width: 240px;
  aspect-ratio: 1;
  place-items: center;
  margin: 5px 0 -8px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.29));
  object-fit: contain;
  transform: rotate(-1.5deg);
}

.featured-copy {
  padding: 8px 13px 8px 0;
}

.featured-copy > span {
  color: #84d9ae;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-copy h2 {
  margin: 9px 0 8px;
  color: white;
  font-size: 23px;
  font-weight: 790;
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.featured-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.55;
}

.featured-copy a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  margin-top: 15px;
  padding: 0 15px;
  border-radius: 10px;
  background: white;
  color: var(--green-900);
  font-size: 11px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.featured-copy a:hover {
  transform: translateY(-2px);
  background: #ddf6e9;
}

.featured-copy a span {
  font-size: 18px;
}

.links-section {
  margin-top: 36px;
}

.links-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}

.links-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.links-heading > span {
  color: #b9d4c6;
  font-size: 9px;
  font-weight: 700;
}

.product-links {
  display: grid;
  gap: 10px;
}

.product-link {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 15px;
  min-height: 84px;
  padding: 9px 12px 9px 9px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 8px 22px rgba(11, 64, 39, 0.045);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-link:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 104, 65, 0.25);
  box-shadow: 0 14px 30px rgba(11, 64, 39, 0.09);
}

.product-link > img {
  width: 66px;
  height: 66px;
  border-radius: 11px;
  object-fit: cover;
}

.product-name {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.product-name small {
  color: #75d6a4;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-name strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: -0.017em;
  line-height: 1.25;
}

.arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--green-700);
  font-size: 17px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.product-link:hover .arrow,
.whatsapp-card:hover .arrow {
  transform: translateX(2px);
  background: #ccefdc;
}

.whatsapp-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  background: #d9f7e7;
  color: var(--green-950);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.whatsapp-card:hover {
  transform: translateY(-2px);
  background: #cbf1dd;
}

.whatsapp-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #26a967;
}

.whatsapp-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.whatsapp-card > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.whatsapp-card small {
  color: var(--green-600);
  font-size: 8px;
  font-weight: 700;
}

.whatsapp-card strong {
  font-size: 12px;
  font-weight: 820;
}

.whatsapp-card .arrow {
  background: rgba(255, 255, 255, 0.65);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0 4px;
  color: #b7d0c3;
}

footer img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: contain;
  opacity: 0.72;
}

footer p {
  margin: 0;
  font-size: 9px;
  font-weight: 650;
}

@media (max-width: 620px) {
  .link-page {
    padding: 36px 14px 28px;
  }

  .logo-wrap > img {
    width: 88px;
    height: 88px;
  }

  .profile h1 {
    font-size: 25px;
  }

  .bio {
    max-width: 350px;
    font-size: 13px;
  }

  .featured {
    padding: 13px;
    border-radius: 23px;
  }

  .featured-layout {
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 13px;
    margin-top: 7px;
  }

  .featured-image {
    width: 138px;
    margin: 2px 0 -3px;
  }

  .featured-image img {
    border-radius: 14px;
  }

  .featured-copy {
    padding: 5px 2px 5px 0;
  }

  .featured-copy > span {
    font-size: 7px;
  }

  .featured-copy h2 {
    margin: 6px 0 6px;
    font-size: 16px;
    line-height: 1.13;
  }

  .featured-copy p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 9px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .featured-copy a {
    min-height: 37px;
    margin-top: 9px;
    padding: 0 11px;
    font-size: 9px;
  }

  .featured-copy a span {
    font-size: 15px;
  }

  .product-link {
    grid-template-columns: 59px minmax(0, 1fr) 32px;
    gap: 12px;
    min-height: 77px;
    padding: 9px 10px 9px 9px;
    border-radius: 15px;
  }

  .product-link > img {
    width: 59px;
    height: 59px;
    border-radius: 10px;
  }

  .product-name strong {
    font-size: 11.5px;
  }

  .arrow {
    width: 31px;
    height: 31px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .featured-layout {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 10px;
  }

  .featured-image img {
    width: 100%;
  }

  .featured-image {
    width: 118px;
  }

  .featured-copy h2 {
    font-size: 14px;
  }

  .featured-copy p {
    -webkit-line-clamp: 2;
  }

  .product-name strong {
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
