:root {
  --blue: #0b2d72;
  --blue-action: #374dab;
  --blue-soft: rgba(55, 77, 171, 0.08);
  --orange: #f97316;
  --orange-brand: #f58220;
  --orange-soft: rgba(245, 130, 32, 0.08);
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --page: #f7f7f7;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  color: var(--blue);
  background: var(--page);
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("../img/link-bio-background.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: max(390px, 100vw) auto;
  opacity: 0.29;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  min-height: 987px;
  background: transparent;
}

.content {
  position: relative;
  z-index: 1;
  min-height: 987px;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 56px 24px 20px;
  text-align: center;
}

.logo-box {
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  padding: 4px;
  border: 2px solid rgba(107, 114, 128, 0.14);
  border-radius: 999px;
  background: #fff;
}

.logo-lockup {
  width: 100.03px;
  height: 38.65px;
  display: block;
}

.brand-subtitle,
.handle,
.section-title,
.cta-title,
.cta-subtitle,
.card-title,
.card-copy,
.link-title,
.link-copy,
.footer {
  margin: 0;
}

.brand-text {
  display: grid;
  width: 100%;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
}

.handle {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}

.cta-wrap {
  padding: 0 24px 24px;
}

.cta {
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.08);
  font: inherit;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta:hover,
.cta:focus-visible,
.product-card:hover,
.product-card:focus-visible,
.link-item:hover,
.link-item:focus-visible {
  transform: translateY(-1px);
}

.cta:focus-visible,
.product-card:focus-visible,
.link-item:focus-visible {
  outline: 3px solid rgba(245, 130, 32, 0.35);
  outline-offset: 3px;
}

.cta-title {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.cta-subtitle {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}

.cta-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: block;
}

.cta-icon img {
  width: 44px;
  height: 44px;
  display: block;
}

.products {
  padding: 0 24px 24px;
}

.section-title {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.27;
  font-weight: 700;
  letter-spacing: 0.22px;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.product-card {
  min-height: 182px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-soft);
}

.product-icon img {
  width: 20px;
  height: 20px;
}

.accent {
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--orange-brand);
}

.card-text {
  display: grid;
  gap: 4px;
}

.card-title {
  font-size: 16px;
  line-height: 1.22;
  font-weight: 700;
}

.card-copy {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
}

.product-action {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange-brand);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
}

.product-action img {
  width: 4px;
  height: 7px;
  display: block;
}

.links {
  padding: 0 24px 24px;
}

.link-item {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: transform 160ms ease;
}

.link-left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.link-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
}

.link-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.brand-icon img {
  width: 10px;
  height: 22px;
}

.whatsapp-icon,
.linkedin-icon {
  background: transparent;
}

.whatsapp-icon img,
.linkedin-icon img {
  width: 32px;
  height: 32px;
}

.verified-icon img {
  width: 16px;
  height: 13.18px;
}

.link-text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.link-title {
  font-size: 15px;
  line-height: 1.22;
  font-weight: 600;
}

.link-copy {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.23;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chevron {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: block;
}

.chevron img {
  width: 20px;
  height: 20px;
  display: block;
}

.footer {
  padding: 0 24px 40px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
  text-align: center;
}

.home-indicator {
  display: none;
}

@media (min-width: 720px) {
  body {
    align-items: center;
  }
}
